diff options
author | Glenn Morris <rgm@gnu.org> | 2008-09-20 19:48:38 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-09-20 19:48:38 +0000 |
commit | 14c8159c899f33e0fcccc5e48ec79fe3fe89f169 (patch) | |
tree | 741e1a5a9e9b473ea4e829fed7b9dc248a7313b3 /lisp/savehist.el | |
parent | 926558fb3b7c5fe6b4c116e9e1baa4281af75f21 (diff) | |
download | emacs-14c8159c899f33e0fcccc5e48ec79fe3fe89f169.tar.gz |
Comments.
Diffstat (limited to 'lisp/savehist.el')
-rw-r--r-- | lisp/savehist.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/savehist.el b/lisp/savehist.el index 65dc6d025c1..c1c9a3db8fa 100644 --- a/lisp/savehist.el +++ b/lisp/savehist.el @@ -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)) |