comparison lisp/international/quail.el @ 29073:b46c4dc8c51a

(quail-simple-translation-keymap): Map 128..255 to quail-self-insert-command. (quail-keyboard-layout-alist): Add definition for "pc102-de".
author Kenichi Handa <handa@m17n.org>
date Mon, 22 May 2000 04:40:49 +0000
parents 2851f83ea432
children 1fad86b8adfc
comparison
equal deleted inserted replaced
29072:153d3f511546 29073:b46c4dc8c51a
275 (define-key map (char-to-string i) 'quail-other-command) 275 (define-key map (char-to-string i) 'quail-other-command)
276 (setq i (1+ i))) 276 (setq i (1+ i)))
277 (while (< i 127) 277 (while (< i 127)
278 (define-key map (char-to-string i) 'quail-self-insert-command) 278 (define-key map (char-to-string i) 'quail-self-insert-command)
279 (setq i (1+ i))) 279 (setq i (1+ i)))
280 (setq i 128)
281 (while (< i 256)
282 (define-key map (vector i) 'quail-self-insert-command)
283 (setq i (1+ i)))
280 (define-key map "\177" 'quail-delete-last-char) 284 (define-key map "\177" 'quail-delete-last-char)
281 (define-key map [delete] 'quail-delete-last-char) 285 (define-key map [delete] 'quail-delete-last-char)
282 (define-key map [backspace] 'quail-delete-last-char) 286 (define-key map [backspace] 'quail-delete-last-char)
283 ;;(let ((meta-map (make-sparse-keymap))) 287 ;;(let ((meta-map (make-sparse-keymap)))
284 ;;(define-key map (char-to-string meta-prefix-char) meta-map) 288 ;;(define-key map (char-to-string meta-prefix-char) meta-map)
568 1!2\"3\2474$5%6&7/8(9)0=\337?'`#^ \ 572 1!2\"3\2474$5%6&7/8(9)0=\337?'`#^ \
569 qQwWeErRtTzZuUiIoOpP\374\334+* \ 573 qQwWeErRtTzZuUiIoOpP\374\334+* \
570 aAsSdDfFgGhHjJkKlL\366\326\344\304~| \ 574 aAsSdDfFgGhHjJkKlL\366\326\344\304~| \
571 <>yYxXcCvVbBnNmM,;.:-_ \ 575 <>yYxXcCvVbBnNmM,;.:-_ \
572 ") 576 ")
577
578 '("pc102-de" . "\
579 \
580 ^\2601!2\"3\2474$5%6&7/8(9)0=\337?\264`#' \
581 qQwWeErRtTzZuUiIoOpP\374\334+* \
582 aAsSdDfFgGhHjJkKlL\366\326\344\304 \
583 <>yYxXcCvVbBnNmM,;.:-_ \
584 ")
585
573 (cons "standard" quail-keyboard-layout-standard)) 586 (cons "standard" quail-keyboard-layout-standard))
574 "Alist of keyboard names and corresponding layout strings. 587 "Alist of keyboard names and corresponding layout strings.
575 See the documentation of `quail-keyboard-layout' for the format of 588 See the documentation of `quail-keyboard-layout' for the format of
576 the layout string.") 589 the layout string.")
577 590