]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fx_show_tip): Add missing UNGCPRO.
authorDave Love <fx@gnu.org>
Mon, 20 Dec 1999 10:51:59 +0000 (10:51 +0000)
committerDave Love <fx@gnu.org>
Mon, 20 Dec 1999 10:51:59 +0000 (10:51 +0000)
src/ChangeLog
src/xfns.c

index ecbcb8a03228ef190802f13cb46d4c81c3d4e149..7997957492da1bebb33a8f830a6990aecc03a8c9 100644 (file)
@@ -1,3 +1,7 @@
+1999-12-20  Dave Love  <fx@gnu.org>
+
+       * xfns.c (Fx_show_tip): Add missing UNGCPRO.
+
 1999-12-19  Gerd Moellmann  <gerd@gnu.org>
 
        * eval.c (debugger_may_continue): New variable.
index d88e69c405fb12a0809712e12ebee85573cdae22..2f06de41ff4930b369f370972ea1483d3223458f 100644 (file)
@@ -9869,7 +9869,8 @@ TIMEOUT nil means use the default timeout of 5 seconds.")
   /* Let the tip disappear after timeout seconds.  */
   tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
                     intern ("x-hide-tip"));
-  
+
+  UNGCPRO;
   return unbind_to (count, Qnil);
 }