diff options
| author | Nick Roberts | 2010-08-05 17:18:55 +1200 |
|---|---|---|
| committer | Nick Roberts | 2010-08-05 17:18:55 +1200 |
| commit | 3d15fe78eb01bbdae62666b2b7d8c13da92ac05f (patch) | |
| tree | 0afd8697ea38e82fd3c82cfcfdf44ec0ea79f55f | |
| parent | 9164c0e4b1696d9c944a0292b14f5533c45db512 (diff) | |
| download | emacs-3d15fe78eb01bbdae62666b2b7d8c13da92ac05f.tar.gz emacs-3d15fe78eb01bbdae62666b2b7d8c13da92ac05f.zip | |
Fix compilation error.
| -rw-r--r-- | src/sysdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index 1b2c9324528..d8ae46f19be 100644 --- a/src/sysdep.c +++ b/src/sysdep.c | |||
| @@ -522,7 +522,7 @@ child_setup_tty (int out) | |||
| 522 | 522 | ||
| 523 | s.main.c_lflag |= ICANON; /* Enable line editing and eof processing */ | 523 | s.main.c_lflag |= ICANON; /* Enable line editing and eof processing */ |
| 524 | s.main.c_cc[VEOF] = 'D'&037; /* Control-D */ | 524 | s.main.c_cc[VEOF] = 'D'&037; /* Control-D */ |
| 525 | #ifdef 0 /* These settins only apply to non-ICANON mode. */ | 525 | #if 0 /* These settings only apply to non-ICANON mode. */ |
| 526 | s.main.c_cc[VMIN] = 1; | 526 | s.main.c_cc[VMIN] = 1; |
| 527 | s.main.c_cc[VTIME] = 0; | 527 | s.main.c_cc[VTIME] = 0; |
| 528 | #endif | 528 | #endif |