diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2014-07-25 14:51:29 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-07-25 14:51:29 -0700 |
commit | a072c708aaa91e61fa148b1a69884a40a5d8f9fb (patch) | |
tree | d3fd8cae8b09804c07ba80422b14ce89da458157 /src/xdisp.c | |
parent | 77109fa849e67b8efab9454002cc10249d0b22da (diff) | |
download | emacs-a072c708aaa91e61fa148b1a69884a40a5d8f9fb.tar.gz |
* dispextern.h, xdisp.c (hourglass_shown_p, hourglass_atimer):
Now static.
Diffstat (limited to 'src/xdisp.c')
-rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; #ifdef HAVE_WINDOW_SYSTEM /* Non-zero means an hourglass cursor is currently shown. */ -bool hourglass_shown_p; +static bool hourglass_shown_p; /* If non-null, an asynchronous timer that, when it expires, displays an hourglass cursor on all frames. */ -struct atimer *hourglass_atimer; +static struct atimer *hourglass_atimer; #endif /* HAVE_WINDOW_SYSTEM */ |