]> git.eshelyaron.com Git - emacs.git/commitdiff
(child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
authorDan Nicolaescu <dann@ics.uci.edu>
Tue, 23 Jun 2009 07:09:58 +0000 (07:09 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Tue, 23 Jun 2009 07:09:58 +0000 (07:09 +0000)
conditional, it is always defined on AIX.

src/ChangeLog
src/sysdep.c

index 1c7e15979f9fa5dac461bc9116516ddba2eeab53..680b72bc42447d096e245821d588eee4d410949b 100644 (file)
@@ -1,3 +1,8 @@
+2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
+       conditional, it is always defined on AIX.
+
 2009-06-23  Miles Bader  <miles@gnu.org>
 
        * window.c (Vrecenter_redisplay): New variable.
index 221febd0d7abb31d000a5ac1e56e1fcce60e1958..028e6e40957fdb9306e7156bf828b3f0cbd9751e 100644 (file)
@@ -578,12 +578,6 @@ child_setup_tty (out)
   /* rms: Formerly it set s.main.c_cc[VINTR] to 0377 here
      unconditionally.  Then a SIGNALS_VIA_CHARACTERS conditional
      would force it to 0377.  That looks like duplicated code.  */
-#ifndef SIGNALS_VIA_CHARACTERS
-  /* QUIT and INTR work better as signals, so disable character forms */
-  s.main.c_cc[VQUIT] = CDISABLE;
-  s.main.c_cc[VINTR] = CDISABLE;
-  s.main.c_lflag &= ~ISIG;
-#endif /* no TIOCGPGRP or no TIOCGLTC or no TIOCGETC */
   s.main.c_cc[VEOL] = CDISABLE;
   s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */
 #endif /* AIX */