Comments.
This commit is contained in:
parent
926558fb3b
commit
14c8159c89
1 changed files with 2 additions and 2 deletions
|
@ -318,7 +318,7 @@ If AUTO-SAVE is non-nil, compare the saved contents to the one last saved,
|
|||
(dolist (elt value)
|
||||
(let ((start (point)))
|
||||
(insert " ")
|
||||
;; Print and try to read the element we just printed.
|
||||
;; Try to print and then to read an element.
|
||||
(condition-case nil
|
||||
(progn
|
||||
(prin1 elt (current-buffer))
|
||||
|
@ -326,7 +326,7 @@ If AUTO-SAVE is non-nil, compare the saved contents to the one last saved,
|
|||
(goto-char start)
|
||||
(read (current-buffer))))
|
||||
(error
|
||||
;; If reading it gets an error, comment it out.
|
||||
;; If writing or reading gave an error, comment it out.
|
||||
(goto-char start)
|
||||
(insert "\n")
|
||||
(while (not (eobp))
|
||||
|
|
Loading…
Add table
Reference in a new issue