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
f1bed6d8
Commit
f1bed6d8
authored
Sep 11, 1992
by
Richard M. Stallman
Browse files
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
parent
95be70ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
src/keyboard.c
src/keyboard.c
+6
-0
No files found.
src/keyboard.c
View file @
f1bed6d8
...
...
@@ -799,7 +799,13 @@ command_loop_1 ()
if
(
minibuf_level
&&
echo_area_glyphs
)
{
/* Bind inhibit-quit to t so that C-g gets read in
rather than quitting back to the minibuffer. */
int
count
=
specpdl_ptr
-
specpdl
;
specbind
(
Qinhibit_quit
,
Qt
);
Fsit_for
(
make_number
(
2
),
Qnil
,
Qnil
);
unbind_to
(
count
);
echo_area_glyphs
=
0
;
no_direct
=
1
;
if
(
!
NILP
(
Vquit_flag
))
...
...
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