From a4e71d81b93c0fc57a45725c7677dbbd4bc77016 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 7 Mar 1994 18:47:49 +0000 Subject: [PATCH] (temp_echo_area_glyphs): Use quit_char, not C-g. --- src/minibuf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/minibuf.c b/src/minibuf.c index cec7e206195..82747af86bb 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -29,6 +29,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #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 @@ temp_echo_area_glyphs (m) 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; } -- 2.39.5