From: Nick Roberts Date: Thu, 5 Aug 2010 05:18:55 +0000 (+1200) Subject: Fix compilation error. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~49^2~66 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3d15fe78eb01bbdae62666b2b7d8c13da92ac05f;p=emacs.git Fix compilation error. --- 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) s.main.c_lflag |= ICANON; /* Enable line editing and eof processing */ s.main.c_cc[VEOF] = 'D'&037; /* Control-D */ -#ifdef 0 /* These settins only apply to non-ICANON mode. */ +#if 0 /* These settings only apply to non-ICANON mode. */ s.main.c_cc[VMIN] = 1; s.main.c_cc[VTIME] = 0; #endif