diff options
| author | Richard M. Stallman <rms@gnu.org> | 1998-07-12 05:58:47 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1998-07-12 05:58:47 +0000 |
| commit | 14915c37c2c440b356a95aaf3bc5b4612bf8c875 (patch) | |
| tree | 1000f275c9e35de9d55c17467fb1c517957e50b3 | |
| parent | bb2c867843d7fefe401416be48a456bee57ecc43 (diff) | |
| download | emacs-14915c37c2c440b356a95aaf3bc5b4612bf8c875.tar.gz | |
(set-selection-coding-system): Renamed from set-clipboard-coding-system.
Set the variable's new name, selection-coding-system.
| -rw-r--r-- | lisp/international/mule.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index f5267eb1cca..140402e0459 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -745,12 +745,12 @@ For a list of possible values of CODING-SYSTEM, use \\[list-coding-systems]." (set-process-coding-system proc decoding encoding))) (force-mode-line-update)) -(defun set-clipboard-coding-system (coding-system) +(defun set-selection-coding-system (coding-system) "Make CODING-SYSTEM used for communicating with other X clients . When sending or receiving text via cut_buffer, selection, and clipboard, the text is encoded or decoded by CODING-SYSTEM." (check-coding-system coding-system) - (setq clipboard-coding-system coding-system)) + (setq selection-coding-system coding-system)) (defun set-coding-priority (arg) "Set priority of coding categories according to LIST. |
