+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)
;; ----------------------------------------------------------------------------
(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)))