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
e7c765c3
Commit
e7c765c3
authored
Apr 19, 2002
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(insert-register): Use insert-for-yank.
(describe-register-1): Discard text props in yank-excluded-properties.
parent
afa0467f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
lisp/register.el
lisp/register.el
+4
-1
No files found.
lisp/register.el
View file @
e7c765c3
...
...
@@ -230,6 +230,9 @@ The Lisp value REGISTER is a character."
(
princ
(
car
val
))))
((
stringp
val
)
(
setq
val
(
remove-list-of-text-properties
0
(
length
val
)
yank-excluded-properties
val
))
(
if
verbose
(
progn
(
princ
"the text:\n"
)
...
...
@@ -253,7 +256,7 @@ Interactively, second arg is non-nil if prefix arg is supplied."
((
consp
val
)
(
insert-rectangle
val
))
((
stringp
val
)
(
insert
val
))
(
insert
-for-yank
val
))
((
numberp
val
)
(
princ
val
(
current-buffer
)))
((
and
(
markerp
val
)
(
marker-position
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