aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/terminal.el
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1995-02-28 06:24:39 +0000
committerKarl Heuer <[email protected]>1995-02-28 06:24:39 +0000
commitc480b1f738fdd1b89785bfa6cff72400dbb08b6c (patch)
treec99e7edb39eeff2bfe2750354804b90c6ba8ce13 /lisp/terminal.el
parente0867e9965371a73981b76fd036e6f5b93ebf78c (diff)
(te-escape): Use current-prefix-arg, not prefix-arg.
Diffstat (limited to 'lisp/terminal.el')
-rw-r--r--lisp/terminal.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/terminal.el b/lisp/terminal.el
index a6cd3f13ea..04ed04ba81 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))