diff options
| author | Richard M. Stallman | 1998-07-12 05:58:47 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-07-12 05:58:47 +0000 |
| commit | 14915c37c2c440b356a95aaf3bc5b4612bf8c875 (patch) | |
| tree | 1000f275c9e35de9d55c17467fb1c517957e50b3 | |
| parent | bb2c867843d7fefe401416be48a456bee57ecc43 (diff) | |
| download | emacs-14915c37c2c440b356a95aaf3bc5b4612bf8c875.tar.gz emacs-14915c37c2c440b356a95aaf3bc5b4612bf8c875.zip | |
(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]." | |||
| 745 | (set-process-coding-system proc decoding encoding))) | 745 | (set-process-coding-system proc decoding encoding))) |
| 746 | (force-mode-line-update)) | 746 | (force-mode-line-update)) |
| 747 | 747 | ||
| 748 | (defun set-clipboard-coding-system (coding-system) | 748 | (defun set-selection-coding-system (coding-system) |
| 749 | "Make CODING-SYSTEM used for communicating with other X clients . | 749 | "Make CODING-SYSTEM used for communicating with other X clients . |
| 750 | When sending or receiving text via cut_buffer, selection, and clipboard, | 750 | When sending or receiving text via cut_buffer, selection, and clipboard, |
| 751 | the text is encoded or decoded by CODING-SYSTEM." | 751 | the text is encoded or decoded by CODING-SYSTEM." |
| 752 | (check-coding-system coding-system) | 752 | (check-coding-system coding-system) |
| 753 | (setq clipboard-coding-system coding-system)) | 753 | (setq selection-coding-system coding-system)) |
| 754 | 754 | ||
| 755 | (defun set-coding-priority (arg) | 755 | (defun set-coding-priority (arg) |
| 756 | "Set priority of coding categories according to LIST. | 756 | "Set priority of coding categories according to LIST. |