aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1999-12-20 10:51:59 +0000
committerDave Love1999-12-20 10:51:59 +0000
commita744a2ec4d7db4ceea7bd4e1476b0d71ed3af1c2 (patch)
treeae81e5da31f278fde65a860356f0cab899e8f4f6
parentd43f85c277b14cbdf60578f505d243bca64d9225 (diff)
downloademacs-a744a2ec4d7db4ceea7bd4e1476b0d71ed3af1c2.tar.gz
emacs-a744a2ec4d7db4ceea7bd4e1476b0d71ed3af1c2.zip
(Fx_show_tip): Add missing UNGCPRO.
-rw-r--r--src/ChangeLog4
-rw-r--r--src/xfns.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ecbcb8a0322..7997957492d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
11999-12-20 Dave Love <fx@gnu.org>
2
3 * xfns.c (Fx_show_tip): Add missing UNGCPRO.
4
11999-12-19 Gerd Moellmann <gerd@gnu.org> 51999-12-19 Gerd Moellmann <gerd@gnu.org>
2 6
3 * eval.c (debugger_may_continue): New variable. 7 * eval.c (debugger_may_continue): New variable.
diff --git a/src/xfns.c b/src/xfns.c
index d88e69c405f..2f06de41ff4 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -9869,7 +9869,8 @@ TIMEOUT nil means use the default timeout of 5 seconds.")
9869 /* Let the tip disappear after timeout seconds. */ 9869 /* Let the tip disappear after timeout seconds. */
9870 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil, 9870 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
9871 intern ("x-hide-tip")); 9871 intern ("x-hide-tip"));
9872 9872
9873 UNGCPRO;
9873 return unbind_to (count, Qnil); 9874 return unbind_to (count, Qnil);
9874} 9875}
9875 9876