Mercurial > emacs
changeset 110381:df57f787c0a4
Define obsolete alias x-cut-buffer-or-selection-value.
* term/x-win.el (x-cut-buffer-or-selection-value): Define as
obsolete alias for x-selection-value.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Thu, 16 Sep 2010 18:47:21 -0400 |
parents | f25651f73f70 |
children | 987c8fd5107f |
files | lisp/ChangeLog lisp/term/x-win.el |
diffstat | 2 files changed, 6 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Thu Sep 16 18:32:54 2010 -0400 +++ b/lisp/ChangeLog Thu Sep 16 18:47:21 2010 -0400 @@ -1,5 +1,8 @@ 2010-09-16 Chong Yidong <cyd@stupidchicken.com> + * term/x-win.el (x-cut-buffer-or-selection-value): Define as + obsolete alias for x-selection-value. + * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge. 2010-09-16 Michael Albinus <michael.albinus@gmx.de>
--- a/lisp/term/x-win.el Thu Sep 16 18:32:54 2010 -0400 +++ b/lisp/term/x-win.el Thu Sep 16 18:47:21 2010 -0400 @@ -1344,6 +1344,9 @@ (or clip-text primary-text) ))) +(define-obsolete-function-alias 'x-cut-buffer-or-selection-value + 'x-selection-value "24.1") + ;; Arrange for the kill and yank functions to set and check the clipboard. (setq interprogram-cut-function 'x-select-text) (setq interprogram-paste-function 'x-selection-value)