diff options
| author | Karl Heuer | 1995-02-28 06:24:39 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-02-28 06:24:39 +0000 |
| commit | c480b1f738fdd1b89785bfa6cff72400dbb08b6c (patch) | |
| tree | c99e7edb39eeff2bfe2750354804b90c6ba8ce13 | |
| parent | e0867e9965371a73981b76fd036e6f5b93ebf78c (diff) | |
| download | emacs-c480b1f738fdd1b89785bfa6cff72400dbb08b6c.tar.gz emacs-c480b1f738fdd1b89785bfa6cff72400dbb08b6c.zip | |
(te-escape): Use current-prefix-arg, not prefix-arg.
| -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.") | |||
| 175 | (use-global-map terminal-escape-map) | 175 | (use-global-map terminal-escape-map) |
| 176 | (use-local-map terminal-escape-map) | 176 | (use-local-map terminal-escape-map) |
| 177 | (setq s (read-key-sequence | 177 | (setq s (read-key-sequence |
| 178 | (if prefix-arg | 178 | (if current-prefix-arg |
| 179 | (format "Emacs Terminal escape> %d " | 179 | (format "Emacs Terminal escape> %d " |
| 180 | (prefix-numeric-value prefix-arg)) | 180 | (prefix-numeric-value current-prefix-arg)) |
| 181 | "Emacs Terminal escape> ")))) | 181 | "Emacs Terminal escape> ")))) |
| 182 | (use-global-map global) | 182 | (use-global-map global) |
| 183 | (use-local-map local)) | 183 | (use-local-map local)) |