From: Karl Heuer Date: Mon, 7 Mar 1994 18:47:49 +0000 (+0000) Subject: (temp_echo_area_glyphs): Use quit_char, not C-g. X-Git-Tag: emacs-19.34~9619 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a4e71d81b93c0fc57a45725c7677dbbd4bc77016;p=emacs.git (temp_echo_area_glyphs): Use quit_char, not C-g. --- 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; }