diff options
| author | Dave Love | 1999-12-22 22:58:15 +0000 |
|---|---|---|
| committer | Dave Love | 1999-12-22 22:58:15 +0000 |
| commit | 393f2d147c686c43c167ab004be4fe747ffdd107 (patch) | |
| tree | 39997224c6697171346b175225f31fec126c36eb | |
| parent | 28d7281dc701dd03bcda8b0470ec596520e5d6c5 (diff) | |
| download | emacs-393f2d147c686c43c167ab004be4fe747ffdd107.tar.gz emacs-393f2d147c686c43c167ab004be4fe747ffdd107.zip | |
(Fx_show_tip): Gcpro `timeout' too.
| -rw-r--r-- | src/xfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xfns.c b/src/xfns.c index 33489df994e..e8cfe4d5c5d 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -9756,13 +9756,13 @@ TIMEOUT nil means use the default timeout of 5 seconds.") | |||
| 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); |