From: Dave Love Date: Mon, 20 Dec 1999 10:51:59 +0000 (+0000) Subject: (Fx_show_tip): Add missing UNGCPRO. X-Git-Tag: emacs-pretest-21.0.90~5662 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a744a2ec4d7db4ceea7bd4e1476b0d71ed3af1c2;p=emacs.git (Fx_show_tip): Add missing UNGCPRO. --- diff --git a/src/ChangeLog b/src/ChangeLog index ecbcb8a0322..7997957492d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +1999-12-20 Dave Love + + * xfns.c (Fx_show_tip): Add missing UNGCPRO. + 1999-12-19 Gerd Moellmann * 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.") /* 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); }