]> git.eshelyaron.com Git - emacs.git/commitdiff
Comments.
authorGlenn Morris <rgm@gnu.org>
Sat, 20 Sep 2008 19:48:38 +0000 (19:48 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 20 Sep 2008 19:48:38 +0000 (19:48 +0000)
lisp/savehist.el

index 65dc6d025c1fbc14f1bcac30cb7358df8bb24050..c1c9a3db8fae36a5cc65dd285e461e10bf465b99 100644 (file)
@@ -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))