aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/vi.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/editors/vi.c b/editors/vi.c
index e01ee1165..35ce172d6 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -19,7 +19,7 @@
19 */ 19 */
20 20
21static const char vi_Version[] = 21static const char vi_Version[] =
22 "$Id: vi.c,v 1.29 2003/09/15 08:33:36 andersen Exp $"; 22 "$Id: vi.c,v 1.30 2003/12/23 20:45:14 andersen Exp $";
23 23
24/* 24/*
25 * To compile for standalone use: 25 * To compile for standalone use:
@@ -2113,10 +2113,8 @@ static void rawmode(void)
2113 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's 2113 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's
2114 term_vi.c_iflag &= (~IXON & ~ICRNL); 2114 term_vi.c_iflag &= (~IXON & ~ICRNL);
2115 term_vi.c_oflag &= (~ONLCR); 2115 term_vi.c_oflag &= (~ONLCR);
2116#ifndef linux
2117 term_vi.c_cc[VMIN] = 1; 2116 term_vi.c_cc[VMIN] = 1;
2118 term_vi.c_cc[VTIME] = 0; 2117 term_vi.c_cc[VTIME] = 0;
2119#endif
2120 erase_char = term_vi.c_cc[VERASE]; 2118 erase_char = term_vi.c_cc[VERASE];
2121 tcsetattr(0, TCSANOW, &term_vi); 2119 tcsetattr(0, TCSANOW, &term_vi);
2122} 2120}