mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-22 07:09:54 +00:00
(read-from-whole-string): Add call to `ignore'.
This commit is contained in:
parent
f7583fb625
commit
7f1422bc46
@ -384,7 +384,8 @@ Signal an error if the entire string was not used."
|
||||
(let* ((read-data (read-from-string str))
|
||||
(more-left
|
||||
(condition-case nil
|
||||
(progn (read-from-string (substring str (cdr read-data)))
|
||||
;; The call to `ignore' suppresses a warning.
|
||||
(progn (ignore (read-from-string (substring str (cdr read-data))))
|
||||
t)
|
||||
(end-of-file nil))))
|
||||
(if more-left
|
||||
|
Loading…
Reference in New Issue
Block a user