1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(kkc-mode-map): Bind all control keys to kkc-non-kkc-command.

This commit is contained in:
Richard M. Stallman 1997-09-15 05:08:48 +00:00
parent 17b76fbd4c
commit 749992b811

View file

@ -71,9 +71,6 @@ This string is shown at mode line when users are in KKC mode.")
(defvar kkc-mode-map
(let ((map (make-keymap))
(i 0))
(while (< i ? )
(define-key map (char-to-string i) 'undefined)
(setq i (1+ i)))
(while (< i 128)
(define-key map (char-to-string i) 'kkc-non-kkc-command)
(setq i (1+ i)))