aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/w32fns.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4f67b365237..c29a091cfcf 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12000-12-20 Jason Rumney <jasonr@gnu.org>
2
3 * w32fns.c (syms_of_w32fns): Initialize and staticpro tip_frame.
4
12000-12-19 Eli Zaretskii <eliz@is.elta.co.il> 52000-12-19 Eli Zaretskii <eliz@is.elta.co.il>
2 6
3 * fns.c (Frequire): Doc fix. 7 * 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.");
13826 defsubr (&Sx_show_tip); 13826 defsubr (&Sx_show_tip);
13827 defsubr (&Sx_hide_tip); 13827 defsubr (&Sx_hide_tip);
13828#endif 13828#endif
13829 staticpro (&tip_timer);
13830 tip_timer = Qnil; 13829 tip_timer = Qnil;
13830 staticpro (&tip_timer);
13831 tip_frame = Qnil;
13832 staticpro (&tip_frame);
13831 13833
13832 defsubr (&Sx_file_dialog); 13834 defsubr (&Sx_file_dialog);
13833} 13835}