returned by this-single-command-raw-keys before appending it to
unread-command-event.
+2002-09-08 Kim F. Storm <storm@cua.dk>
+
+ * subr.el (read-quoted-char): Apply listify-key-sequence to vector
+ returned by this-single-command-raw-keys before appending it to
+ unread-command-event.
+
2002-09-07 Colin Walters <walters@debian.org>
* progmodes/compile.el (compile-internal): Add optional argument
(if inhibit-quit (setq quit-flag nil)))
(cond ((null char))
((not (integerp char))
- (setq unread-command-events (this-single-command-raw-keys)
+ (setq unread-command-events (listify-key-sequence (this-single-command-raw-keys))
done t))
((/= (logand char ?\M-\^@) 0)
;; Turn a meta-character into a character with the 0200 bit set.
((and (not first) (eq char ?\C-m))
(setq done t))
((not first)
- (setq unread-command-events (this-single-command-raw-keys)
+ (setq unread-command-events (listify-key-sequence (this-single-command-raw-keys))
done t))
(t (setq code char
done t)))