diff options
| author | Chong Yidong | 2010-09-16 18:47:21 -0400 |
|---|---|---|
| committer | Chong Yidong | 2010-09-16 18:47:21 -0400 |
| commit | 117c96c7690aadf654567207e5734b7ce63609b0 (patch) | |
| tree | 3816c5115ff518545e2cbdd324c489c3950f3020 | |
| parent | dff0fdc364fc834651dff8ca794cd2c982bd8fa5 (diff) | |
| download | emacs-117c96c7690aadf654567207e5734b7ce63609b0.tar.gz emacs-117c96c7690aadf654567207e5734b7ce63609b0.zip | |
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/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/term/x-win.el | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 525d7ffc6b0..7c2fbb87d97 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2010-09-16 Chong Yidong <cyd@stupidchicken.com> | 1 | 2010-09-16 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 2 | ||
| 3 | * term/x-win.el (x-cut-buffer-or-selection-value): Define as | ||
| 4 | obsolete alias for x-selection-value. | ||
| 5 | |||
| 3 | * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge. | 6 | * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge. |
| 4 | 7 | ||
| 5 | 2010-09-16 Michael Albinus <michael.albinus@gmx.de> | 8 | 2010-09-16 Michael Albinus <michael.albinus@gmx.de> |
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: | |||
| 1344 | (or clip-text primary-text) | 1344 | (or clip-text primary-text) |
| 1345 | ))) | 1345 | ))) |
| 1346 | 1346 | ||
| 1347 | (define-obsolete-function-alias 'x-cut-buffer-or-selection-value | ||
| 1348 | 'x-selection-value "24.1") | ||
| 1349 | |||
| 1347 | ;; Arrange for the kill and yank functions to set and check the clipboard. | 1350 | ;; Arrange for the kill and yank functions to set and check the clipboard. |
| 1348 | (setq interprogram-cut-function 'x-select-text) | 1351 | (setq interprogram-cut-function 'x-select-text) |
| 1349 | (setq interprogram-paste-function 'x-selection-value) | 1352 | (setq interprogram-paste-function 'x-selection-value) |