summaryrefslogtreecommitdiff
path: root/lisp/terminal.el
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-08-04 04:15:43 +0000
committerJim Blandy <jimb@redhat.com>1992-08-04 04:15:43 +0000
commitc4ea28b3e90c54717a64729ed29d18736a76c6a7 (patch)
treece3d5522aecb19af9cfcd78d2edfe4cdf40d39e0 /lisp/terminal.el
parentd822e0eedf0ca4c60681b94b0f810370f8e603d4 (diff)
downloademacs-c4ea28b3e90c54717a64729ed29d18736a76c6a7.tar.gz
entered into RCS
Diffstat (limited to 'lisp/terminal.el')
-rw-r--r--lisp/terminal.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/terminal.el b/lisp/terminal.el
index e8909927c3d..35d5022aaf6 100644
--- a/lisp/terminal.el
+++ b/lisp/terminal.el
@@ -70,7 +70,7 @@ performance.")
(if terminal-map
nil
(let ((map (make-keymap)))
- (fillarray map 'te-pass-through)
+ (fillarray (car (cdr map)) 'te-pass-through)
;(define-key map "\C-l"
; '(lambda () (interactive) (te-pass-through) (redraw-display)))
(setq terminal-map map)))
@@ -80,7 +80,7 @@ performance.")
nil
(let ((map (make-keymap)))
;(fillarray map 'te-escape-extended-command-unread)
- (fillarray map 'undefined)
+ (fillarray (car (cdr map)) 'undefined)
(let ((s "0"))
(while (<= (aref s 0) ?9)
(define-key map s 'digit-argument)
@@ -127,7 +127,7 @@ performance.")
(if terminal-more-break-map
nil
(let ((map (make-keymap)))
- (fillarray map 'te-more-break-unread)
+ (fillarray (car (cdr map)) 'te-more-break-unread)
(define-key map (char-to-string help-char) 'te-more-break-help)
(define-key map " " 'te-more-break-resume)
(define-key map "\C-l" 'redraw-display)