diff src/sysdep.c @ 2828:a25c824ed558

[xemacs-hg @ 2005-06-26 18:04:49 by aidan] Rename the ascii-character property, support more keysyms.
author aidan
date Sun, 26 Jun 2005 18:05:05 +0000
parents e20ee26d2313
children 5eb04c84c7ae
line wrap: on
line diff
--- a/src/sysdep.c	Sat Jun 25 21:51:12 2005 +0000
+++ b/src/sysdep.c	Sun Jun 26 18:05:05 2005 +0000
@@ -1602,7 +1602,7 @@
   if (CONSOLE_TTY_DATA (con)->controlling_terminal)
     {
       tty.main.c_cc[VINTR] = /* C-g (usually) gives SIGINT */
-	event_to_character (CONSOLE_QUIT_EVENT (con), 0, 1, 0);
+	event_to_character (CONSOLE_QUIT_EVENT (con), 0, 1);
       /* Set up C-g for both SIGQUIT and SIGINT.
 	 We don't know which we will get, but we handle both alike
 	 so which one it really gives us does not matter.  */
@@ -1696,7 +1696,7 @@
   /* Note: if not using CBREAK mode, it makes no difference how we
      set this */
   tty.tchars = new_tchars;
-  tty.tchars.t_intrc = event_to_character (CONSOLE_QUIT_EVENT (con), 0, 1, 0);
+  tty.tchars.t_intrc = event_to_character (CONSOLE_QUIT_EVENT (con), 0, 1);
   if (TTY_FLAGS (con).flow_control)
     {
       tty.tchars.t_startc = '\021';