Mercurial > hg > xemacs-beta
comparison src/sysdep.c @ 175:2d532a89d707 r20-3b14
Import from CVS: tag r20-3b14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:50:14 +0200 |
parents | 0132846995bd |
children | 9ad43877534d |
comparison
equal
deleted
inserted
replaced
174:bb3568571b84 | 175:2d532a89d707 |
---|---|
453 s.main.c_cc[VMIN] = 1; /* minimum number of characters to accept */ | 453 s.main.c_cc[VMIN] = 1; /* minimum number of characters to accept */ |
454 s.main.c_cc[VTIME] = 0; /* wait forever for at least 1 character */ | 454 s.main.c_cc[VTIME] = 0; /* wait forever for at least 1 character */ |
455 #endif /* 0 */ | 455 #endif /* 0 */ |
456 | 456 |
457 s.main.c_lflag |= ICANON; /* Enable erase/kill and eof processing */ | 457 s.main.c_lflag |= ICANON; /* Enable erase/kill and eof processing */ |
458 s.main.c_cc[VEOF] = 04; /* insure that EOF is Control-D */ | 458 s.main.c_cc[VEOF] = 04; /* ensure that EOF is Control-D */ |
459 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */ | 459 s.main.c_cc[VERASE] = CDISABLE; /* disable erase processing */ |
460 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */ | 460 s.main.c_cc[VKILL] = CDISABLE; /* disable kill processing */ |
461 | 461 |
462 #ifdef HPUX | 462 #ifdef HPUX |
463 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */ | 463 s.main.c_cflag = (s.main.c_cflag & ~CBAUD) | B9600; /* baud rate sanity */ |