diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-06-23 17:53:27 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-06-23 17:53:27 +0000 |
commit | 0a8fc05dd5f7d49832cfb28d1c569e89b6ec9859 (patch) | |
tree | 56a45903bf36b1bfd2f7fc672199f1f906ca0ef3 /lisp/term | |
parent | b647cd3fd066110b9efb77c66b0dd304eb7ca504 (diff) | |
download | emacs-0a8fc05dd5f7d49832cfb28d1c569e89b6ec9859.tar.gz |
(terminal-init-xterm): Fix previous change.
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/xterm.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/term/xterm.el b/lisp/term/xterm.el index 1761ab35d3f..9cc4c6b45d6 100644 --- a/lisp/term/xterm.el +++ b/lisp/term/xterm.el @@ -391,7 +391,7 @@ (substitute-key-definition [f59] [A-f11] local-function-key-map) (substitute-key-definition [f60] [A-f12] local-function-key-map) - (let ((map (make-sparse-keymap))) + (let ((map (copy-keymap xterm-function-map))) ;; Use inheritance to let the main keymap override those defaults. ;; This way we don't override terminfo-derived settings or settings |