home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / lucid / help-lucid-emacs / text0422.txt < prev    next >
Encoding:
Text File  |  1993-07-14  |  668 b   |  22 lines

  1. Per Abrahamsen wrote:
  2. > How do you rebind 8-bit characters in Lucid Emacs 19.4?
  3. > The `obvious' solution
  4. >     (define-key global-map [248] 'self-insert-command) 
  5.  
  6. I would hardly consider [248] more obvious than
  7.  
  8.     (define-key global-map [oslash] 'self-insert-command)
  9.  
  10. (Note that this method hides the underlying character representation.)
  11. However, you don't need to do this; it's already done.  If your keyboard
  12. generates the XK_oslash keysym, it is already self-inserting.  (If you're
  13. expecting the Meta key to insert ISO chars instead of behaving as a Meta
  14. key, you're expecting something unreasonable.)  See xmodmap(1) and
  15. lisp/x11/x-compose.el.
  16.  
  17.     -- Jamie
  18.  
  19.