Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
60ff536c
Commit
60ff536c
authored
Dec 23, 2011
by
Juanma Barranquero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lisp/desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
parent
db7ab02f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/desktop.el
lisp/desktop.el
+2
-2
No files found.
lisp/ChangeLog
View file @
60ff536c
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)
...
...
lisp/desktop.el
View file @
60ff536c
...
...
@@ -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' (value
s
must be quoted), or nil (value m
ay
not be quoted)."
`must' (value must be quoted), or nil (value m
ust
not be quoted)."
(
cond
((
or
(
numberp
value
)
(
null
value
)
(
eq
t
value
)
(
keywordp
value
))
(
cons
'may
(
prin1-to-string
value
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment