View | Details | Raw Unified | Return to bug 119096
Collapse All | Expand All

(-)src/vas4/vas_io.c (-1 / +3 lines)
Lines 41-46 Link Here
41
#include <stdio.h>
41
#include <stdio.h>
42
#include <fcntl.h>
42
#include <fcntl.h>
43
43
44
#define HAVE_XOPEN
45
44
#if defined(HAVE_XOPEN)
46
#if defined(HAVE_XOPEN)
45
#  include <termios.h>
47
#  include <termios.h>
46
48
Lines 149-155 Link Here
149
	vtty.c_iflag |= IGNBRK|IGNPAR;
151
	vtty.c_iflag |= IGNBRK|IGNPAR;
150
152
151
	vtty.c_oflag &= ~(OPOST|ONLCR|OCRNL);    /* Turn off all post-processing */
153
	vtty.c_oflag &= ~(OPOST|ONLCR|OCRNL);    /* Turn off all post-processing */
152
	vtty.c_oflag |= TAB3;		/* output tab expansion ON */
154
	vtty.c_oflag |= OXTABS;		/* output tab expansion ON */
153
	vtty.c_cc[VMIN] = 1;
155
	vtty.c_cc[VMIN] = 1;
154
	vtty.c_cc[VTIME] = 0;
156
	vtty.c_cc[VTIME] = 0;

Return to bug 119096