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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
df6c90d8
Commit
df6c90d8
authored
Feb 21, 2001
by
Gerd Moellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use display_hourglass_p, start_hourglass, cancel_hourglass instead of
the old names.
parent
526a058f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
13 deletions
+13
-13
src/eval.c
src/eval.c
+5
-5
src/fns.c
src/fns.c
+3
-3
src/lread.c
src/lread.c
+5
-5
No files found.
src/eval.c
View file @
df6c90d8
...
...
@@ -241,8 +241,8 @@ call_debugger (arg)
max_specpdl_size
=
specpdl_size
+
40
;
#ifdef HAVE_X_WINDOWS
if
(
display_
busy_cursor
_p
)
cancel_
busy_cursor
();
if
(
display_
hourglass
_p
)
cancel_
hourglass
();
#endif
debug_on_next_call
=
0
;
...
...
@@ -1366,7 +1366,7 @@ See also the function `condition-case'.")
Lisp_Object
debugger_value
;
Lisp_Object
string
;
Lisp_Object
real_error_symbol
;
extern
int
display_
busy_cursor
_p
;
extern
int
display_
hourglass
_p
;
struct
backtrace
*
bp
;
immediate_quit
=
handling_signal
=
0
;
...
...
@@ -1381,8 +1381,8 @@ See also the function `condition-case'.")
real_error_symbol
=
error_symbol
;
#ifdef HAVE_X_WINDOWS
if
(
display_
busy_cursor
_p
)
cancel_
busy_cursor
();
if
(
display_
hourglass
_p
)
cancel_
hourglass
();
#endif
/* This hook is used by edebug. */
...
...
src/fns.c
View file @
df6c90d8
/* Random utility Lisp functions.
Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 98, 99, 2000
Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 98, 99, 2000
, 2001
Free Software Foundation, Inc.
This file is part of GNU Emacs.
...
...
@@ -2811,8 +2811,8 @@ is nil and `use-dialog-box' is non-nil.")
GCPRO2 (prompt, xprompt);
#ifdef HAVE_X_WINDOWS
if (display_
busy_cursor
_p)
cancel_
busy_cursor
();
if (display_
hourglass
_p)
cancel_
hourglass
();
#endif
while (1)
...
...
src/lread.c
View file @
df6c90d8
/* Lisp parsing and input streams.
Copyright (C) 1985, 86, 87, 88, 89, 93, 94, 95, 97, 98, 99, 2000
Copyright (C) 1985, 86, 87, 88, 89, 93, 94, 95, 97, 98, 99, 2000
, 2001
Free Software Foundation, Inc.
This file is part of GNU Emacs.
...
...
@@ -427,8 +427,8 @@ read_filtered_event (no_switch_frame, ascii_required, error_nonascii,
register Lisp_Object val, delayed_switch_frame;
#ifdef HAVE_WINDOW_SYSTEM
if (display_
busy_cursor
_p)
cancel_
busy_cursor
();
if (display_
hourglass
_p)
cancel_
hourglass
();
#endif
delayed_switch_frame = Qnil;
...
...
@@ -489,8 +489,8 @@ read_filtered_event (no_switch_frame, ascii_required, error_nonascii,
unread_switch_frame = delayed_switch_frame;
#ifdef HAVE_WINDOW_SYSTEM
if (display_
busy_cursor
_p)
start_
busy_cursor
();
if (display_
hourglass
_p)
start_
hourglass
();
#endif
return val;
}
...
...
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