From: Kenichi Handa Date: Wed, 28 May 1997 03:35:34 +0000 (+0000) Subject: (encoded-kbd-mode): Fix typo in doc-string. X-Git-Tag: emacs-20.1~1961 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=77e94796fdaf34ab3f6c124ff021d5e7bac77959;p=emacs.git (encoded-kbd-mode): Fix typo in doc-string. (encoded-kbd-set-coding-system): Deleted. --- diff --git a/lisp/international/encoded-kb.el b/lisp/international/encoded-kb.el index 346ed2e80f0..b63a7a39f63 100644 --- a/lisp/international/encoded-kb.el +++ b/lisp/international/encoded-kb.el @@ -227,7 +227,7 @@ The following key sequence may cause multilingual text insertion." ;;;###autoload (defun encoded-kbd-mode (&optional arg) "Toggle Encoded-kbd minor mode. -With arg, turn Keyboard-kbd mode on in and only if arg is positive. +With arg, turn Keyboard-kbd mode on if and only if arg is positive. When in Encoded-kbd mode, a text sent from a terminal keyboard is accepted as a multilingual text encoded in a coding system @@ -284,18 +284,4 @@ set by the command `encoded-kbd-set-coding-system'" (setq current-input-method nil)) (force-mode-line-update)) -;;;###autoload -(defun encoded-kbd-set-coding-system (coding-system) - "Activate Encoded-kbd mode appropriately for a terminal using CODING-SYSTEM. -If you specify nil for CODING-SYSTEM, Encoded-kbd mode is toggled off." - (interactive "zCoding system: ") - (if window-system - (error "Should run emacs on an ordinary terminal")) - (if (check-coding-system coding-system) - (progn - (set-keyboard-coding-system coding-system) - (encoded-kbd-mode 1)) - (set-keyboard-coding-system nil) - (encoded-kbd-mode 0))) - ;;; encoded-kb.el ends here