diff options
| author | Kenichi Handa | 1997-05-12 06:56:19 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-05-12 06:56:19 +0000 |
| commit | c3016c969ca0bd0a4feb30ce66645f4accd0dcb0 (patch) | |
| tree | db610cab8256c79454f446ae93c295eb8ac689b8 | |
| parent | 9395eb7cf662da57912c74dac4dfd09b4cd411a1 (diff) | |
| download | emacs-c3016c969ca0bd0a4feb30ce66645f4accd0dcb0.tar.gz emacs-c3016c969ca0bd0a4feb30ce66645f4accd0dcb0.zip | |
(encoded-kbd-mode): Doc-string modified.
(encoded-kbd-select-terminal): The function deleted.
(encoded-kbd-set-coding-system): New function.
| -rw-r--r-- | lisp/international/encoded-kb.el | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/lisp/international/encoded-kb.el b/lisp/international/encoded-kb.el index 474625c361e..346ed2e80f0 100644 --- a/lisp/international/encoded-kb.el +++ b/lisp/international/encoded-kb.el | |||
| @@ -231,7 +231,7 @@ With arg, turn Keyboard-kbd mode on in and only if arg is positive. | |||
| 231 | 231 | ||
| 232 | When in Encoded-kbd mode, a text sent from a terminal keyboard | 232 | When in Encoded-kbd mode, a text sent from a terminal keyboard |
| 233 | is accepted as a multilingual text encoded in a coding system | 233 | is accepted as a multilingual text encoded in a coding system |
| 234 | set by the command `set-keyboard-coding-system'" | 234 | set by the command `encoded-kbd-set-coding-system'" |
| 235 | (interactive "P") | 235 | (interactive "P") |
| 236 | (setq encoded-kbd-mode | 236 | (setq encoded-kbd-mode |
| 237 | (if (null arg) (null encoded-kbd-mode) | 237 | (if (null arg) (null encoded-kbd-mode) |
| @@ -285,14 +285,17 @@ set by the command `set-keyboard-coding-system'" | |||
| 285 | (force-mode-line-update)) | 285 | (force-mode-line-update)) |
| 286 | 286 | ||
| 287 | ;;;###autoload | 287 | ;;;###autoload |
| 288 | (defun encoded-kbd-select-terminal (terminal coding-system) | 288 | (defun encoded-kbd-set-coding-system (coding-system) |
| 289 | "Activate Encoded-Kbd mode appropriately for TERMINAL using CODING-SYSTEM." | 289 | "Activate Encoded-kbd mode appropriately for a terminal using CODING-SYSTEM. |
| 290 | (interactive "STerminal name: \nzcoding-system: ") | 290 | If you specify nil for CODING-SYSTEM, Encoded-kbd mode is toggled off." |
| 291 | (interactive "zCoding system: ") | ||
| 291 | (if window-system | 292 | (if window-system |
| 292 | (error "Should run emacs on an ordinary terminal")) | 293 | (error "Should run emacs on an ordinary terminal")) |
| 293 | (set-terminal-coding-system coding-system) | 294 | (if (check-coding-system coding-system) |
| 294 | (set-keyboard-coding-system coding-system) | 295 | (progn |
| 295 | (setq current-input-method-title terminal) | 296 | (set-keyboard-coding-system coding-system) |
| 296 | (encoded-kbd-mode t)) | 297 | (encoded-kbd-mode 1)) |
| 298 | (set-keyboard-coding-system nil) | ||
| 299 | (encoded-kbd-mode 0))) | ||
| 297 | 300 | ||
| 298 | ;;; encoded-kb.el ends here | 301 | ;;; encoded-kb.el ends here |