Lynn David Newton writes:
(define-key global-map "\C-z" ctl-z-map)
C-z is one of the keybindings that varies depending on whether the
console is a TTY or a GUI windowing system. In 21.4 this was done by
manipulating global-map, I think, but in 21.5 it is done by shadowing
global-map with entries in global-window-system-map and global-tty-map.
(define-key global-window-system-map "\C-z" nil)
should work for you.
(let (result)
(map-keymap (lambda (x y) (push (list x y) result)) global-window-system-map)
result)
will tell you the others. (I think there are four all together by
default.)
For a complete description of how key and mouse events are processed,
C-h f key-binding.
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta