aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-12-23 20:45:14 +0000
committerEric Andersen <andersen@codepoet.org>2003-12-23 20:45:14 +0000
commitd10f36fe2e553f804dff96a5b82770fd46be0834 (patch)
tree5ff847bd7162664833145130dadd3a97674a8689 /editors
parent3a5ed56803dae1915d7ad52de26b020bb81b01f5 (diff)
downloadbusybox-d10f36fe2e553f804dff96a5b82770fd46be0834.tar.gz
Match changes made to cmdedit
Diffstat (limited to 'editors')
-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 @@
*/
static const char vi_Version[] =
- "$Id: vi.c,v 1.29 2003/09/15 08:33:36 andersen Exp $";
+ "$Id: vi.c,v 1.30 2003/12/23 20:45:14 andersen Exp $";
/*
* To compile for standalone use:
@@ -2113,10 +2113,8 @@ static void rawmode(void)
term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's
term_vi.c_iflag &= (~IXON & ~ICRNL);
term_vi.c_oflag &= (~ONLCR);
-#ifndef linux
term_vi.c_cc[VMIN] = 1;
term_vi.c_cc[VTIME] = 0;
-#endif
erase_char = term_vi.c_cc[VERASE];
tcsetattr(0, TCSANOW, &term_vi);
}