]> Zhao Yanbai Git Server - minix.git/commitdiff
changed default INTR key to ^C instead of DEL
authorBen Gras <ben@minix3.org>
Fri, 12 Aug 2005 09:40:16 +0000 (09:40 +0000)
committerBen Gras <ben@minix3.org>
Fri, 12 Aug 2005 09:40:16 +0000 (09:40 +0000)
etc/ast/.profile
include/termios.h

index 80c15e3c888d9cc007c52da2131f9a3d8cf5c6bd..490b26d320aa70333f2f524e61d07a0663aede94 100644 (file)
@@ -1,7 +1,7 @@
 # Login shell profile.
 
-# Erase character, erase line, and interrupt keys.
-stty sane erase '^H' kill '^U' intr '^?'
+# Erase character and erase line interrupt keys
+stty sane erase '^H' kill '^U'
 
 # Check terminal type.
 case $TERM in
index f2e01743e7e81bc09792f74657bd6812c39cebbe..c5baf3c03d0e6e053868e2b734df6e817c94b3db 100755 (executable)
@@ -177,7 +177,7 @@ _PROTOTYPE( int tcsetattr, \
 #define TEOF_DEF       '\4'    /* ^D */
 #define TEOL_DEF       _POSIX_VDISABLE
 #define TERASE_DEF     '\10'   /* ^H */
-#define TINTR_DEF      '\177'  /* ^? */
+#define TINTR_DEF      '\3'    /* ^C */
 #define TKILL_DEF      '\25'   /* ^U */
 #define TMIN_DEF       1
 #define TQUIT_DEF      '\34'   /* ^\ */