summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorErik Naggum <erik@naggum.no>1996-09-17 16:26:44 +0000
committerErik Naggum <erik@naggum.no>1996-09-17 16:26:44 +0000
commitffad0eb0a6472981440359c46054e471c1893e2f (patch)
tree2726d70f7c335026645847bf106e7f4992e51c82 /src
parent896a07946419bfbc75ed87660f6205398c989366 (diff)
downloademacs-ffad0eb0a6472981440359c46054e471c1893e2f.tar.gz
(syms_of_keyboard): Initialize and staticpro internal_last_event_frame and
read_key_sequence_cmd.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index da9d29609cb..a145406e375 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -7925,6 +7925,12 @@ syms_of_keyboard ()
unread_switch_frame = Qnil;
staticpro (&unread_switch_frame);
+ internal_last_event_frame = Qnil;
+ staticpro (&internal_last_event_frame);
+
+ read_key_sequence_cmd = Qnil;
+ staticpro (&read_key_sequence_cmd);
+
defsubr (&Sevent_convert_list);
defsubr (&Sread_key_sequence);
defsubr (&Srecursive_edit);