diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-02-28 06:24:39 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-02-28 06:24:39 +0000 |
commit | c480b1f738fdd1b89785bfa6cff72400dbb08b6c (patch) | |
tree | c99e7edb39eeff2bfe2750354804b90c6ba8ce13 /lisp/terminal.el | |
parent | e0867e9965371a73981b76fd036e6f5b93ebf78c (diff) | |
download | emacs-c480b1f738fdd1b89785bfa6cff72400dbb08b6c.tar.gz |
(te-escape): Use current-prefix-arg, not prefix-arg.
Diffstat (limited to 'lisp/terminal.el')
-rw-r--r-- | lisp/terminal.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/terminal.el b/lisp/terminal.el index a6cd3f13eac..04ed04ba811 100644 --- a/lisp/terminal.el +++ b/lisp/terminal.el @@ -175,9 +175,9 @@ performance.") (use-global-map terminal-escape-map) (use-local-map terminal-escape-map) (setq s (read-key-sequence - (if prefix-arg + (if current-prefix-arg (format "Emacs Terminal escape> %d " - (prefix-numeric-value prefix-arg)) + (prefix-numeric-value current-prefix-arg)) "Emacs Terminal escape> ")))) (use-global-map global) (use-local-map local)) |