summaryrefslogtreecommitdiff
path: root/lisp/term/news.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2007-10-22 15:17:36 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2007-10-22 15:17:36 +0000
commit12e32f5242e219e5a9c9ca730fe1f10bf49707b2 (patch)
tree28c890eee784f209103ddafbb4cfd8dfbe35f9f3 /lisp/term/news.el
parente4a7fe73afc5ba89b49bebf8ae0b515e02640ea7 (diff)
downloademacs-12e32f5242e219e5a9c9ca730fe1f10bf49707b2.tar.gz
* term/news.el (terminal-init-news):
* term/lk201.el (terminal-init-lk201): * term/iris-ansi.el (terminal-init-iris-ansi): Use input-decode-map.
Diffstat (limited to 'lisp/term/news.el')
-rw-r--r--lisp/term/news.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/term/news.el b/lisp/term/news.el
index 514f363314d..0ce303d2265 100644
--- a/lisp/term/news.el
+++ b/lisp/term/news.el
@@ -32,7 +32,7 @@
(defun terminal-init-news ()
"Terminal initialization function for news."
;; The terminal initialization should already have set up some keys
- (let ((news-fkey-prefix (lookup-key local-function-key-map "\eO")))
+ (let ((news-fkey-prefix (lookup-key input-decode-map "\eO")))
(if (not (keymapp news-fkey-prefix))
(error "What? Your news termcap/terminfo has no keycaps in it"))
@@ -71,5 +71,5 @@
(define-key news-fkey-prefix "x" [kp-8])
))
-;;; arch-tag: bfe141a0-623b-4b42-b753-5d9353776c5e
+;; arch-tag: bfe141a0-623b-4b42-b753-5d9353776c5e
;;; news.el ends here