From: Juanma Barranquero Date: Fri, 23 Dec 2011 00:44:27 +0000 (+0100) Subject: lisp/desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353). X-Git-Tag: emacs-pretest-24.0.93~123 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=60ff536cc3ed1f53a6fd2d453894beca63888a72;p=emacs.git lisp/desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353). --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2967979eff6..834244dcc72 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-12-23 Juanma Barranquero + + * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353). + 2011-12-22 Juri Linkov * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185) diff --git a/lisp/desktop.el b/lisp/desktop.el index 8a61bec0eea..34a51eb51dc 100644 --- a/lisp/desktop.el +++ b/lisp/desktop.el @@ -702,9 +702,9 @@ is nil, ask the user where to save the desktop." ;; ---------------------------------------------------------------------------- (defun desktop-internal-v2s (value) "Convert VALUE to a pair (QUOTE . TXT); (eval (read TXT)) gives VALUE. -TXT is a string that when read and evaluated yields value. +TXT is a string that when read and evaluated yields VALUE. QUOTE may be `may' (value may be quoted), -`must' (values must be quoted), or nil (value may not be quoted)." +`must' (value must be quoted), or nil (value must not be quoted)." (cond ((or (numberp value) (null value) (eq t value) (keywordp value)) (cons 'may (prin1-to-string value)))