From 99da6af3908b93ecd87b63cc7507c7c9f980acce Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 22 May 2000 04:40:49 +0000 Subject: [PATCH] (quail-simple-translation-keymap): Map 128..255 to quail-self-insert-command. (quail-keyboard-layout-alist): Add definition for "pc102-de". --- lisp/international/quail.el | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lisp/international/quail.el b/lisp/international/quail.el index 99b20bdd50a..914e0dc0ab1 100644 --- a/lisp/international/quail.el +++ b/lisp/international/quail.el @@ -277,6 +277,10 @@ This map is activated while translation region is active.") (while (< i 127) (define-key map (char-to-string i) 'quail-self-insert-command) (setq i (1+ i))) + (setq i 128) + (while (< i 256) + (define-key map (vector i) 'quail-self-insert-command) + (setq i (1+ i))) (define-key map "\177" 'quail-delete-last-char) (define-key map [delete] 'quail-delete-last-char) (define-key map [backspace] 'quail-delete-last-char) @@ -570,6 +574,15 @@ The command `quail-set-keyboard-layout' usually sets this variable.") aAsSdDfFgGhHjJkKlL\366\326\344\304~| \ <>yYxXcCvVbBnNmM,;.:-_ \ ") + + '("pc102-de" . "\ + \ +^\2601!2\"3\2474$5%6&7/8(9)0=\337?\264`#' \ + qQwWeErRtTzZuUiIoOpP\374\334+* \ + aAsSdDfFgGhHjJkKlL\366\326\344\304 \ +<>yYxXcCvVbBnNmM,;.:-_ \ + ") + (cons "standard" quail-keyboard-layout-standard)) "Alist of keyboard names and corresponding layout strings. See the documentation of `quail-keyboard-layout' for the format of -- 2.39.5