]> git.eshelyaron.com Git - emacs.git/commitdiff
(temp_echo_area_glyphs): Use quit_char, not C-g.
authorKarl Heuer <kwzh@gnu.org>
Mon, 7 Mar 1994 18:47:49 +0000 (18:47 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 7 Mar 1994 18:47:49 +0000 (18:47 +0000)
src/minibuf.c

index cec7e2061957543fe8131ad883be2d3e7e494525..82747af86bba4a466c67059accacd6cce434d696 100644 (file)
@@ -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;
 }