diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/dispextern.h | 6 | ||||
| -rw-r--r-- | src/xdisp.c | 4 |
3 files changed, 8 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8ef82e125f5..bd75180fb55 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-07-25 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * dispextern.h, xdisp.c (hourglass_shown_p, hourglass_atimer): | ||
| 4 | Now static. | ||
| 5 | |||
| 1 | 2014-07-26 Dmitry Antipov <dmantipov@yandex.ru> | 6 | 2014-07-26 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 7 | ||
| 3 | * atimer.c (set_alarm) [HAVE_ITIMERSPEC]: Use TIMER_ABSTIME | 8 | * atimer.c (set_alarm) [HAVE_ITIMERSPEC]: Use TIMER_ABSTIME |
diff --git a/src/dispextern.h b/src/dispextern.h index a8cf9c7ee59..400de336965 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -1719,7 +1719,7 @@ struct face | |||
| 1719 | #ifdef HAVE_XFT | 1719 | #ifdef HAVE_XFT |
| 1720 | /* Extra member that a font-driver uses privately. */ | 1720 | /* Extra member that a font-driver uses privately. */ |
| 1721 | void *extra; | 1721 | void *extra; |
| 1722 | #endif | 1722 | #endif |
| 1723 | }; | 1723 | }; |
| 1724 | 1724 | ||
| 1725 | 1725 | ||
| @@ -3397,10 +3397,6 @@ extern frame_parm_handler x_frame_parm_handlers[]; | |||
| 3397 | 3397 | ||
| 3398 | extern void start_hourglass (void); | 3398 | extern void start_hourglass (void); |
| 3399 | extern void cancel_hourglass (void); | 3399 | extern void cancel_hourglass (void); |
| 3400 | extern bool hourglass_shown_p; | ||
| 3401 | /* If non-null, an asynchronous timer that, when it expires, displays | ||
| 3402 | an hourglass cursor on all frames. */ | ||
| 3403 | extern struct atimer *hourglass_atimer; | ||
| 3404 | 3400 | ||
| 3405 | /* Returns the background color of IMG, calculating one heuristically if | 3401 | /* Returns the background color of IMG, calculating one heuristically if |
| 3406 | necessary. If non-zero, XIMG is an existing XImage object to use for | 3402 | necessary. If non-zero, XIMG is an existing XImage object to use for |
diff --git a/src/xdisp.c b/src/xdisp.c index b1de8ba0438..cf027a2b72e 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -816,11 +816,11 @@ Lisp_Object previous_help_echo_string; | |||
| 816 | #ifdef HAVE_WINDOW_SYSTEM | 816 | #ifdef HAVE_WINDOW_SYSTEM |
| 817 | 817 | ||
| 818 | /* Non-zero means an hourglass cursor is currently shown. */ | 818 | /* Non-zero means an hourglass cursor is currently shown. */ |
| 819 | bool hourglass_shown_p; | 819 | static bool hourglass_shown_p; |
| 820 | 820 | ||
| 821 | /* If non-null, an asynchronous timer that, when it expires, displays | 821 | /* If non-null, an asynchronous timer that, when it expires, displays |
| 822 | an hourglass cursor on all frames. */ | 822 | an hourglass cursor on all frames. */ |
| 823 | struct atimer *hourglass_atimer; | 823 | static struct atimer *hourglass_atimer; |
| 824 | 824 | ||
| 825 | #endif /* HAVE_WINDOW_SYSTEM */ | 825 | #endif /* HAVE_WINDOW_SYSTEM */ |
| 826 | 826 | ||