aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong <[email protected]>2010-09-16 18:47:21 -0400
committerChong Yidong <[email protected]>2010-09-16 18:47:21 -0400
commit117c96c7690aadf654567207e5734b7ce63609b0 (patch)
tree3816c5115ff518545e2cbdd324c489c3950f3020
parentdff0fdc364fc834651dff8ca794cd2c982bd8fa5 (diff)
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.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/term/x-win.el3
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 525d7ffc6b..7c2fbb87d9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
2010-09-16 Chong Yidong <[email protected]>
+ * 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 <[email protected]>
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index b19e0f854d..1950bef19b 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)