From: Chong Yidong Date: Thu, 16 Sep 2010 22:47:21 +0000 (-0400) Subject: Define obsolete alias x-cut-buffer-or-selection-value. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~47^2~117^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=117c96c7690aadf654567207e5734b7ce63609b0;p=emacs.git 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. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 525d7ffc6b0..7c2fbb87d97 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-09-16 Chong Yidong + * 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 diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index b19e0f854d9..1950bef19be 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el @@ -1344,6 +1344,9 @@ The value nil is the same as this list: (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)