diff options
author | Karoly Lorentey <lorentey@elte.hu> | 2005-06-27 03:19:27 +0000 |
---|---|---|
committer | Karoly Lorentey <lorentey@elte.hu> | 2005-06-27 03:19:27 +0000 |
commit | ff2fc632a5f3a53ab1ad59388d18182656399c40 (patch) | |
tree | 1ad1a650e9a2785246f761832fc083cd3e401579 /lisp/term/sun.el | |
parent | 2a42d44084e05d60f28a51609aa7c12fb547fffe (diff) | |
download | emacs-ff2fc632a5f3a53ab1ad59388d18182656399c40.tar.gz |
Use terminal-local-value to access function-key-map in terminal packages.
* lisp/term/AT386.el: Wrap function-key-map accesses in (set-)terminal-local-value.
* lisp/term/internal.el: Ditto.
* lisp/term/iris-ansi.el: Ditto.
* lisp/term/lk201.el: Ditto.
* lisp/term/mac-win.el: Ditto.
* lisp/term/news.el: Ditto.
* lisp/term/rxvt.el: Ditto.
* lisp/term/sun.el: Ditto.
* lisp/term/tvi970.el: Ditto.
* lisp/term/wyse50.el: Ditto.
* lisp/term/x-win.el: Ditto.
* lisp/term/xterm.el: Ditto.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-366
Diffstat (limited to 'lisp/term/sun.el')
-rw-r--r-- | lisp/term/sun.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/term/sun.el b/lisp/term/sun.el index 238bb2f7212..a08d7072da0 100644 --- a/lisp/term/sun.el +++ b/lisp/term/sun.el @@ -93,7 +93,7 @@ ;; (defvar sun-raw-prefix (make-sparse-keymap)) -(define-key function-key-map "\e[" sun-raw-prefix) +(define-key (terminal-local-value 'function-key-map nil) "\e[" sun-raw-prefix) (define-key sun-raw-prefix "210z" [r3]) (define-key sun-raw-prefix "213z" [r6]) |