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
08d4877e
Commit
08d4877e
authored
Sep 02, 2010
by
Jan D
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* simple.el (kill-new): Call interprogram-cut-function with only one argument.
parent
30641319
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/simple.el
lisp/simple.el
+1
-1
No files found.
lisp/ChangeLog
View file @
08d4877e
2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
* simple.el (kill-new): Call interprogram-cut-function with only
one argument.
* term.el (term-mouse-paste): Don't call x-get-cutbuffer.
Remove cut buffer from error message.
...
...
lisp/simple.el
View file @
08d4877e
...
...
@@ -3047,7 +3047,7 @@ argument should still be a \"useful\" string for such uses."
(setcdr (nthcdr (1- kill-ring-max) kill-ring) nil))))
(setq kill-ring-yank-pointer kill-ring)
(if interprogram-cut-function
(funcall interprogram-cut-function string
(not replace)
)))
(funcall interprogram-cut-function string)))
(defun kill-append (string before-p &optional yank-handler)
"
Append
STRING
to
the
end
of
the
latest
kill
in
the
kill
ring.
...
...
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