diff options
author | Jim Blandy <jimb@redhat.com> | 1992-08-04 04:15:43 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-08-04 04:15:43 +0000 |
commit | e8a57935cbb4ccde7f621eeeca22141e5a5327b4 (patch) | |
tree | cb90c678fa9e79cf41c1b6a22d62b620aaf0e07f /lisp/terminal.el | |
parent | 0b030df78b499fde5f8dd3f20dd24a2e002fe4ee (diff) | |
download | emacs-e8a57935cbb4ccde7f621eeeca22141e5a5327b4.tar.gz |
entered into RCS
Diffstat (limited to 'lisp/terminal.el')
-rw-r--r-- | lisp/terminal.el | 6 |
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) |