From: Erik Naggum Date: Tue, 17 Sep 1996 16:26:44 +0000 (+0000) Subject: (syms_of_keyboard): Initialize and staticpro internal_last_event_frame and X-Git-Tag: emacs-20.1~3715 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fe4123646b70f5cdd8dcf5c1ed3a2e1faccab4fe;p=emacs.git (syms_of_keyboard): Initialize and staticpro internal_last_event_frame and read_key_sequence_cmd. --- 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);