diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-03-04 04:38:06 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-03-04 04:38:06 +0000 |
commit | acc8cdd2122a8575526d8e06f586b63c4b600e80 (patch) | |
tree | ff3397d6c33d38cdaf7e003bcfa6ce6f2f0d9fa4 /lisp/term | |
parent | 251f623e8e6855659c5c1cac4d69d5ec0ada784f (diff) | |
download | emacs-acc8cdd2122a8575526d8e06f586b63c4b600e80.tar.gz |
(system-key-alist): Fix the code value for `remove'.
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/x-win.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index 1c1b8926822..edbf3cbb005 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el @@ -522,8 +522,8 @@ This returns ARGS with the arguments that have been processed removed." (65395 . deletechar) (65396 . backtab) (65397 . kp-backtab) - ;; This is used on some system or other. - (0 . remove) + ;; This is used by DEC's X server. + (65280 . remove) ;; These are for Sun. (392976 . f35) (392977 . f36) |