]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fx_show_tip): Gcpro `timeout' too.
authorDave Love <fx@gnu.org>
Wed, 22 Dec 1999 22:58:15 +0000 (22:58 +0000)
committerDave Love <fx@gnu.org>
Wed, 22 Dec 1999 22:58:15 +0000 (22:58 +0000)
src/xfns.c

index 33489df994ec5c512a8744e0727c5ba521e633e4..e8cfe4d5c5d1981746ef3df768c86b256e1b7e03 100644 (file)
@@ -9756,13 +9756,13 @@ TIMEOUT nil means use the default timeout of 5 seconds.")
   int i, width, height;
   int root_x, root_y, win_x, win_y;
   unsigned pmask;
-  struct gcpro gcpro1, gcpro2, gcpro3;
+  struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
   int old_windows_or_buffers_changed = windows_or_buffers_changed;
   int count = specpdl_ptr - specpdl;
   
   specbind (Qinhibit_redisplay, Qt);
 
-  GCPRO3 (string, parms, frame);
+  GCPRO4 (string, parms, frame, timeout);
 
   CHECK_STRING (string, 0);
   f = check_x_frame (frame);