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
95bf6435
Commit
95bf6435
authored
Feb 17, 1995
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(desktop-internal-v2s): Don't use format to eliminate text properties.
parent
fb11ccf6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lisp/desktop.el
lisp/desktop.el
+4
-2
No files found.
lisp/desktop.el
View file @
95bf6435
...
...
@@ -221,8 +221,10 @@ QUOTE may be `may' (value may be quoted),
((
or
(
numberp
val
)
(
null
val
)
(
eq
t
val
))
(
cons
'may
(
prin1-to-string
val
)))
((
stringp
val
)
;; Get rid of text properties because we cannot read them
(
cons
'may
(
prin1-to-string
(
format
"%s"
val
))))
(
let
((
copy
(
copy-sequence
val
)))
(
set-text-properties
0
(
length
copy
)
nil
copy
)
;; Get rid of text properties because we cannot read them
(
cons
'may
(
prin1-to-string
copy
))))
((
symbolp
val
)
(
cons
'must
(
prin1-to-string
val
)))
((
vectorp
val
)
...
...
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