From: Jason Rumney Date: Wed, 20 Dec 2000 10:21:02 +0000 (+0000) Subject: (syms_of_w32fns): Initialize and staticpro tip_frame. X-Git-Tag: emacs-pretest-21.0.95~390 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=57fa27745dc89af7d4db759bcb5c0cb10a0faa13;p=emacs.git (syms_of_w32fns): Initialize and staticpro tip_frame. --- diff --git a/src/ChangeLog b/src/ChangeLog index 4f67b365237..c29a091cfcf 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2000-12-20 Jason Rumney + + * w32fns.c (syms_of_w32fns): Initialize and staticpro tip_frame. + 2000-12-19 Eli Zaretskii * fns.c (Frequire): Doc fix. diff --git a/src/w32fns.c b/src/w32fns.c index 7e316a5841a..7e22b084ff8 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -13826,8 +13826,10 @@ versions of Windows) characters."); defsubr (&Sx_show_tip); defsubr (&Sx_hide_tip); #endif - staticpro (&tip_timer); tip_timer = Qnil; + staticpro (&tip_timer); + tip_frame = Qnil; + staticpro (&tip_frame); defsubr (&Sx_file_dialog); }