comparison src/xfns.c @ 26980:f0d5e95ccce9

(Fx_show_tip): Gcpro `timeout' too.
author Dave Love <fx@gnu.org>
date Wed, 22 Dec 1999 22:58:15 +0000
parents 06f887a1c834
children 3995eec4287f
comparison
equal deleted inserted replaced
26979:3a11eb80861e 26980:f0d5e95ccce9
9754 struct buffer *old_buffer; 9754 struct buffer *old_buffer;
9755 struct text_pos pos; 9755 struct text_pos pos;
9756 int i, width, height; 9756 int i, width, height;
9757 int root_x, root_y, win_x, win_y; 9757 int root_x, root_y, win_x, win_y;
9758 unsigned pmask; 9758 unsigned pmask;
9759 struct gcpro gcpro1, gcpro2, gcpro3; 9759 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
9760 int old_windows_or_buffers_changed = windows_or_buffers_changed; 9760 int old_windows_or_buffers_changed = windows_or_buffers_changed;
9761 int count = specpdl_ptr - specpdl; 9761 int count = specpdl_ptr - specpdl;
9762 9762
9763 specbind (Qinhibit_redisplay, Qt); 9763 specbind (Qinhibit_redisplay, Qt);
9764 9764
9765 GCPRO3 (string, parms, frame); 9765 GCPRO4 (string, parms, frame, timeout);
9766 9766
9767 CHECK_STRING (string, 0); 9767 CHECK_STRING (string, 0);
9768 f = check_x_frame (frame); 9768 f = check_x_frame (frame);
9769 if (NILP (timeout)) 9769 if (NILP (timeout))
9770 timeout = make_number (5); 9770 timeout = make_number (5);