comparison src/fns.c @ 1194:e0a970069f9e

Doc fix.
author Jim Blandy <jimb@redhat.com>
date Tue, 22 Sep 1992 04:32:26 +0000
parents e1329d41271d
children 7381accd610d
comparison
equal deleted inserted replaced
1193:e1329d41271d 1194:e0a970069f9e
1112 cursor_in_echo_area = ocech; 1112 cursor_in_echo_area = ocech;
1113 /* Accept a C-g or C-] (abort-recursive-edit) as quit requests. */ 1113 /* Accept a C-g or C-] (abort-recursive-edit) as quit requests. */
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);
1120 if (ans == 'y' || ans == ' ') 1123 if (ans == 'y' || ans == ' ')
1121 { ans = 'y'; break; } 1124 { ans = 'y'; break; }