aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-09-22 04:32:26 +0000
committerJim Blandy1992-09-22 04:32:26 +0000
commit20aa96aad872452737d9d661906e57411dd1c78f (patch)
tree2f8cb0a9ea0df076f1904d03e5a7d01a330bfb5b /src
parent088880f13a9593d90693648d1eb3cf902c9a81fa (diff)
downloademacs-20aa96aad872452737d9d661906e57411dd1c78f.tar.gz
emacs-20aa96aad872452737d9d661906e57411dd1c78f.zip
Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fns.c b/src/fns.c
index 2527f268aae..0bcf414179b 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1114,6 +1114,9 @@ Also accepts Space to mean yes, or Delete to mean no.")
1114 if (ans == 7 || ans == '\035') 1114 if (ans == 7 || ans == '\035')
1115 Vquit_flag = Qt; 1115 Vquit_flag = Qt;
1116 QUIT; 1116 QUIT;
1117
1118 /* If we don't clear this, then the next call to read_char will
1119 return quit_char again, and we'll enter an infinite loop. */
1117 Vquit_flag = Qnil; 1120 Vquit_flag = Qnil;
1118 if (ans >= 0) 1121 if (ans >= 0)
1119 ans = DOWNCASE (ans); 1122 ans = DOWNCASE (ans);