comparison lisp/x11/x-compose.el @ 80:1ce6082ce73f r20-0b90

Import from CVS: tag r20-0b90
author cvs
date Mon, 13 Aug 2007 09:06:37 +0200
parents 131b0175ea99
children 8619ce7e4c50
comparison
equal deleted inserted replaced
79:5b0a5bbffab6 80:1ce6082ce73f
48 ;;; can, for example, turn the right "Meta" key into a "Compose" key with 48 ;;; can, for example, turn the right "Meta" key into a "Compose" key with
49 ;;; this command: 49 ;;; this command:
50 ;;; 50 ;;;
51 ;;; xmodmap -e "remove mod1 = Meta_R" -e "keysym Meta_R = Multi_key" 51 ;;; xmodmap -e "remove mod1 = Meta_R" -e "keysym Meta_R = Multi_key"
52 ;;; 52 ;;;
53 ;;; Multi_key is the name that X (and emacs) know the "Compose" key by. 53 ;;; Multi-key is the name that X (and emacs) know the "Compose" key by.
54 ;;; The "remove..." command is necessary because the "Compose" key must not 54 ;;; The "remove..." command is necessary because the "Compose" key must not
55 ;;; have any modifier bits associated with it. This exact command may not 55 ;;; have any modifier bits associated with it. This exact command may not
56 ;;; work, depending on what system and keyboard you are using. If it 56 ;;; work, depending on what system and keyboard you are using. If it
57 ;;; doesn't, you'll have to read the man page for xmodmap. You might want 57 ;;; doesn't, you'll have to read the man page for xmodmap. You might want
58 ;;; to get the "xkeycaps" program from the host export.lcs.mit.edu in the 58 ;;; to get the "xkeycaps" program from the host export.lcs.mit.edu in the
99 99
100 ;; The "Compose" key: 100 ;; The "Compose" key:
101 ;; (keysym is lower case because we downcase everything in the Symbol font...) 101 ;; (keysym is lower case because we downcase everything in the Symbol font...)
102 ;; 102 ;;
103 ;;;this doesn't work yet###autoload 103 ;;;this doesn't work yet###autoload
104 (define-key global-map [multi_key] 'compose-key) 104 (define-key global-map [multi-key] 'compose-key)
105 105
106 ;; The "Dead" keys: 106 ;; The "Dead" keys:
107 ;; 107 ;;
108 (define-key global-map [acute] compose-acute-map) 108 (define-key global-map [acute] compose-acute-map)
109 (define-key global-map [cedilla] compose-cedilla-map) 109 (define-key global-map [cedilla] compose-cedilla-map)