summaryrefslogtreecommitdiff
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorNoah Friedman <friedman@splode.com>2002-09-29 18:38:23 +0000
committerNoah Friedman <friedman@splode.com>2002-09-29 18:38:23 +0000
commit580f6aa50b37fa5230557e75b7009a951b302281 (patch)
tree9a2adc4ee91731ec18a993c9b7f640adeb9ad978 /lisp/subr.el
parent7058ef349c4da23db18a7fd4c740d13d9ecbdb8b (diff)
downloademacs-580f6aa50b37fa5230557e75b7009a951b302281.tar.gz
(read-key): Use read-key-auxiliary-map, not read-key-aux-map.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 8c7212e5ef1..17d47e2d1b1 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1071,7 +1071,7 @@ Legitimate radix values are 8, 10 and 16."
"Read a key from the keyboard.
Contrary to `read-event' this will not return a raw event but will
obey `function-key-map' and `key-translation-map' instead."
- (let ((overriding-terminal-local-map read-key-aux-map))
+ (let ((overriding-terminal-local-map read-key-auxiliary-map))
(aref (read-key-sequence prompt nil t) 0)))
(defun read-quoted-char (&optional prompt)