lisp/desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 23 Dec 2011 00:44:27 +0000 (01:44 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 23 Dec 2011 00:44:27 +0000 (01:44 +0100)
lisp/ChangeLog
lisp/desktop.el

index 2967979..834244d 100644 (file)
@@ -1,3 +1,7 @@
+2011-12-23  Juanma Barranquero  <lekktu@gmail.com>
+
+       * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
+
 2011-12-22  Juri Linkov  <juri@jurta.org>
 
        * progmodes/grep.el (rgrep): Fix docstring.  (Bug#10185)
index 8a61bec..34a51eb 100644 (file)
@@ -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)))