aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-26 01:19:39 +0000
committerRichard M. Stallman1994-04-26 01:19:39 +0000
commit1ec84625a94c34bfc819b34a5a480c287daca901 (patch)
treedd642a9ebc3f1758d067d4a13309b68ab8d31dce /src
parentba71d84a4b446e2e2c0155e4f58eee5c56ea4d37 (diff)
downloademacs-1ec84625a94c34bfc819b34a5a480c287daca901.tar.gz
emacs-1ec84625a94c34bfc819b34a5a480c287daca901.zip
(read_filtered_event): Use Vunread_command_events.
Diffstat (limited to 'src')
-rw-r--r--src/lread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c
index bf6b1f4a2ba..105e9c5efe0 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -259,7 +259,7 @@ read_filtered_event (no_switch_frame, ascii_required, error_nonascii)
259 { 259 {
260 if (error_nonascii) 260 if (error_nonascii)
261 { 261 {
262 unread_command_events = Fcons (val, Qnil); 262 Vunread_command_events = Fcons (val, Qnil);
263 error ("Non-character input-event"); 263 error ("Non-character input-event");
264 } 264 }
265 else 265 else