Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
44f5a7b2
Commit
44f5a7b2
authored
Jan 21, 2003
by
Kim F. Storm
Browse files
Doc fixes.
parent
374d3fe7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
lisp/simple.el
lisp/simple.el
+5
-2
No files found.
lisp/simple.el
View file @
44f5a7b2
...
...
@@ -1856,7 +1856,7 @@ If the previous command was also a kill command,
the text killed this time appends to the text killed last time
to make one entry in the kill ring.
In
l
isp code, optional third arg YANK-HANDLER specifies the yank-handler
In
L
isp code, optional third arg YANK-HANDLER specifies the yank-handler
text property to be set on the killed text. See `insert-for-yank'."
(
interactive
"r"
)
(
condition-case
nil
...
...
@@ -1965,7 +1965,10 @@ The argument is used for internal purposes; do not supply one."
(
defvar
yank-window-start
nil
)
(
defvar
yank-undo-function
nil
"If non-nil, function used by `yank-pop' to delete last stretch of yanked text."
)
"If non-nil, function used by `yank-pop' to delete last stretch of yanked text.
Function is called with two parameters, START and END corresponding to
the value of the mark and point; it is guaranteed that START <= END.
Normally set from the UNDO element of a yank-handler; see `insert-for-yank'."
)
(
defun
yank-pop
(
arg
)
"Replace just-yanked stretch of killed text with a different stretch.
...
...
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