diff src/minibuf.c @ 6233:1e90a9197a2a

(temp_echo_area_glyphs): Use quit_char, not C-g.
author Karl Heuer <kwzh@gnu.org>
date Mon, 07 Mar 1994 18:47:49 +0000
parents 993ca5adfcd1
children 46e46e523620
line wrap: on
line diff
--- 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;
 }