emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r106722: lisp/desktop.el (desktop-int


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r106722: lisp/desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
Date: Fri, 23 Dec 2011 01:44:27 +0100
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 106722
fixes bug(s): http://debbugs.gnu.org/10353
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Fri 2011-12-23 01:44:27 +0100
message:
  lisp/desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
modified:
  lisp/ChangeLog
  lisp/desktop.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-12-22 22:32:46 +0000
+++ b/lisp/ChangeLog    2011-12-23 00:44:27 +0000
@@ -1,3 +1,7 @@
+2011-12-23  Juanma Barranquero  <address@hidden>
+
+       * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
+
 2011-12-22  Juri Linkov  <address@hidden>
 
        * progmodes/grep.el (rgrep): Fix docstring.  (Bug#10185)

=== modified file 'lisp/desktop.el'
--- a/lisp/desktop.el   2011-11-17 17:40:48 +0000
+++ b/lisp/desktop.el   2011-12-23 00:44:27 +0000
@@ -702,9 +702,9 @@
 ;; ----------------------------------------------------------------------------
 (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)))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]