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
9c7cc04b
Commit
9c7cc04b
authored
Feb 27, 2005
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(describe-register-1): Explicitly handle yank-excluded-properties = t.
parent
1833b7b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lisp/register.el
lisp/register.el
+4
-2
No files found.
lisp/register.el
View file @
9c7cc04b
...
...
@@ -227,8 +227,10 @@ The Lisp value REGISTER is a character."
(
princ
(
car
val
))))
((
stringp
val
)
(
remove-list-of-text-properties
0
(
length
val
)
yank-excluded-properties
val
)
(
if
(
eq
yank-excluded-properties
t
)
(
set-text-properties
0
(
length
val
)
nil
val
)
(
remove-list-of-text-properties
0
(
length
val
)
yank-excluded-properties
val
))
(
if
verbose
(
progn
(
princ
"the text:\n"
)
...
...
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