diff options
author | Miles Bader <miles@gnu.org> | 2007-12-06 09:51:45 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2007-12-06 09:51:45 +0000 |
commit | 0bd508417142ff377f34aec8dcec9438d9175c2c (patch) | |
tree | 4d60fe09e5cebf7d79766b11e9cda8cc1c9dbb9b /lisp/select.el | |
parent | 98fe991da804a42f53f6a5e84cd5eab18a82e181 (diff) | |
parent | 9fb1ba8090da3528de56158a79bd3527d31c7f2f (diff) | |
download | emacs-0bd508417142ff377f34aec8dcec9438d9175c2c.tar.gz |
Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-294
Diffstat (limited to 'lisp/select.el')
-rw-r--r-- | lisp/select.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/select.el b/lisp/select.el index 14e53f75daa..35c103d1c15 100644 --- a/lisp/select.el +++ b/lisp/select.el @@ -166,6 +166,8 @@ prefix argument, it uses the text of the region as the selection value ." ;;; Cut Buffer support +(declare-function x-get-cut-buffer-internal "xselect.c") + (defun x-get-cut-buffer (&optional which-one) "Returns the value of one of the 8 X server cut-buffers. Optional arg WHICH-ONE should be a number from 0 to 7, defaulting to 0. @@ -177,6 +179,9 @@ Cut buffers are considered obsolete; you should use selections instead." which-one) 'CUT_BUFFER0))) +(declare-function x-rotate-cut-buffers-internal "xselect.c") +(declare-function x-store-cut-buffer-internal "xselect.c") + (defun x-set-cut-buffer (string &optional push) "Store STRING into the X server's primary cut buffer. If PUSH is non-nil, also rotate the cut buffers: |