# HG changeset patch # User Kenichi Handa # Date 864790534 0 # Node ID 601f43ce92b525caad5cc590f757632e4de5be69 # Parent 4882d58acf01ebfeb078f3090e0a8448629f5ba8 (encoded-kbd-mode): Fix typo in doc-string. (encoded-kbd-set-coding-system): Deleted. diff -r 4882d58acf01 -r 601f43ce92b5 lisp/international/encoded-kb.el --- a/lisp/international/encoded-kb.el Wed May 28 03:35:33 1997 +0000 +++ b/lisp/international/encoded-kb.el Wed May 28 03:35:34 1997 +0000 @@ -227,7 +227,7 @@ ;;;###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 @@ (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