# HG changeset patch # User Karl Heuer # Date 763066069 0 # Node ID 1e90a9197a2aa47f74eb2398ac5e9b1711c4e138 # Parent d695df82e96ac80fb2ce4c2cd2564993f0c8f52a (temp_echo_area_glyphs): Use quit_char, not C-g. diff -r d695df82e96a -r 1e90a9197a2a src/minibuf.c --- a/src/minibuf.c Mon Mar 07 18:39:11 1994 +0000 +++ b/src/minibuf.c Mon Mar 07 18:47:49 1994 +0000 @@ -29,6 +29,8 @@ #define min(a, b) ((a) < (b) ? (a) : (b)) +extern int quit_char; + /* List of buffers for use as minibuffers. The first element of the list is used for the outermost minibuffer invocation, the next element is used for a recursive minibuffer invocation, etc. @@ -969,7 +971,7 @@ if (!NILP (Vquit_flag)) { Vquit_flag = Qnil; - unread_command_events = Fcons (make_number (Ctl ('g')), Qnil); + unread_command_events = Fcons (make_number (quit_char), Qnil); } Vinhibit_quit = oinhibit; }