Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e1204d39
Commit
e1204d39
authored
Apr 13, 2002
by
Richard M. Stallman
Browse files
(command_loop_1): Don't call start_hourglass
or cancel_hourglass when executing a macro.
parent
59d36066
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
src/keyboard.c
src/keyboard.c
+7
-3
No files found.
src/keyboard.c
View file @
e1204d39
...
...
@@ -1651,7 +1651,8 @@ command_loop_1 ()
/* Here for a command that isn't executed directly */
#ifdef HAVE_X_WINDOWS
if (display_hourglass_p)
if (display_hourglass_p
&& NILP (Vexecuting_macro))
start_hourglass ();
#endif
...
...
@@ -1663,8 +1664,11 @@ command_loop_1 ()
#ifdef HAVE_X_WINDOWS
/* Do not check display_hourglass_p here, because
Fcommand_execute could change it, but we should cancel
hourglass cursor anyway. */
cancel_hourglass ();
hourglass cursor anyway.
But don't cancel the hourglass within a macro
just because a command in the macro finishes. */
if (NILP (Vexecuting_macro))
cancel_hourglass ();
#endif
}
directly_done: ;
...
...
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