home *** CD-ROM | disk | FTP | other *** search
- Per Abrahamsen wrote:
- >
- > How do you rebind 8-bit characters in Lucid Emacs 19.4?
- >
- > The `obvious' solution
- >
- > (define-key global-map [248] 'self-insert-command)
-
- I would hardly consider [248] more obvious than
-
- (define-key global-map [oslash] 'self-insert-command)
-
- (Note that this method hides the underlying character representation.)
- However, you don't need to do this; it's already done. If your keyboard
- generates the XK_oslash keysym, it is already self-inserting. (If you're
- expecting the Meta key to insert ISO chars instead of behaving as a Meta
- key, you're expecting something unreasonable.) See xmodmap(1) and
- lisp/x11/x-compose.el.
-
- -- Jamie
-
-