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/wyse50.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/wyse50.el')
-rw-r--r-- | lisp/term/wyse50.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/term/wyse50.el b/lisp/term/wyse50.el index edcbe1259fb..ca45c5755eb 100644 --- a/lisp/term/wyse50.el +++ b/lisp/term/wyse50.el @@ -37,9 +37,9 @@ ;;; Code: -(define-key function-key-map "\C-a" (make-keymap)) +(define-key (terminal-local-value 'function-key-map nil) "\C-a" (make-keymap)) (mapcar (function (lambda (key-definition) - (define-key function-key-map + (define-key (terminal-local-value 'function-key-map nil) (car key-definition) (nth 1 key-definition)))) '( ;; These might be set up by termcap and terminfo |