# HG changeset patch # User Kim F. Storm # Date 1031439044 0 # Node ID 3feceef12d3af660a6db34660f3aa87bcf4eea8e # Parent 2ae3c0d6525aa2c4f829174a713d6ff09c48d1cc (read-quoted-char): Apply listify-key-sequence to vector returned by this-single-command-raw-keys before appending it to unread-command-event. diff -r 2ae3c0d6525a -r 3feceef12d3a lisp/subr.el --- a/lisp/subr.el Sat Sep 07 21:31:03 2002 +0000 +++ b/lisp/subr.el Sat Sep 07 22:50:44 2002 +0000 @@ -1092,7 +1092,7 @@ (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. @@ -1109,7 +1109,7 @@ ((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)))