1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-27 15:52:00 -08:00

(Fx_show_tip): Add missing UNGCPRO.

This commit is contained in:
Dave Love 1999-12-20 10:51:59 +00:00
parent d43f85c277
commit a744a2ec4d
2 changed files with 6 additions and 1 deletions

View 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.

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