Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a072c708
Commit
a072c708
authored
Jul 25, 2014
by
Paul Eggert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dispextern.h, xdisp.c (hourglass_shown_p, hourglass_atimer):
Now static.
parent
77109fa8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
7 deletions
+8
-7
src/ChangeLog
src/ChangeLog
+5
-0
src/dispextern.h
src/dispextern.h
+1
-5
src/xdisp.c
src/xdisp.c
+2
-2
No files found.
src/ChangeLog
View file @
a072c708
2014-07-25 Paul Eggert <eggert@cs.ucla.edu>
* dispextern.h, xdisp.c (hourglass_shown_p, hourglass_atimer):
Now static.
2014-07-26 Dmitry Antipov <dmantipov@yandex.ru>
* atimer.c (set_alarm) [HAVE_ITIMERSPEC]: Use TIMER_ABSTIME
...
...
src/dispextern.h
View file @
a072c708
...
...
@@ -1719,7 +1719,7 @@ struct face
#ifdef HAVE_XFT
/* Extra member that a font-driver uses privately. */
void
*
extra
;
#endif
#endif
};
...
...
@@ -3397,10 +3397,6 @@ extern frame_parm_handler x_frame_parm_handlers[];
extern
void
start_hourglass
(
void
);
extern
void
cancel_hourglass
(
void
);
extern
bool
hourglass_shown_p
;
/* If non-null, an asynchronous timer that, when it expires, displays
an hourglass cursor on all frames. */
extern
struct
atimer
*
hourglass_atimer
;
/* Returns the background color of IMG, calculating one heuristically if
necessary. If non-zero, XIMG is an existing XImage object to use for
...
...
src/xdisp.c
View file @
a072c708
...
...
@@ -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 */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment