aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorMartin Rudalics <[email protected]>2008-09-28 08:43:50 +0000
committerMartin Rudalics <[email protected]>2008-09-28 08:43:50 +0000
commitc41bd0ec431e1b15b5f800b2ca302cc27f2208f5 (patch)
treeba795010428082f7cbfde9cd87495ed4411c14ba /lisp/subr.el
parentc73ae4aedf8b59b90acd8c5f9e4da837161cc91e (diff)
(read-quoted-char): Call char-resolve-modifiers
instead of char-resolve-modifers.
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 2ce6b234e6..d62b38b00d 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1742,7 +1742,7 @@ any other non-digit terminates the character code and is then used as input."))
;; bound to some prefix in function-key-map or key-translation-map.
(setq translated
(if (integerp char)
- (char-resolve-modifers char)
+ (char-resolve-modifiers char)
char))
(let ((translation (lookup-key local-function-key-map (vector char))))
(if (arrayp translation)