(syms_of_w32fns): Initialize and staticpro tip_frame.

This commit is contained in:
Jason Rumney 2000-12-20 10:21:02 +00:00
parent 7f90b826d2
commit 57fa27745d
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2000-12-20 Jason Rumney <jasonr@gnu.org>
* w32fns.c (syms_of_w32fns): Initialize and staticpro tip_frame.
2000-12-19 Eli Zaretskii <eliz@is.elta.co.il>
* fns.c (Frequire): Doc fix.

View file

@ -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);
}