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 | d27a37bde40b122ddaac3bdebe7fb943366ac204 (patch) | |
tree | a5da590dfd0ee9c59486578a391818034ebec7ac /lisp/terminal.el | |
parent | a50cd9eb6857e9ff03bf92b2aa6827973110c585 (diff) | |
download | emacs-d27a37bde40b122ddaac3bdebe7fb943366ac204.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)) |