X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-workers-bounces using -f Date: Wed, 08 May 2002 21:48:06 +0300 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: pavenis AT latnet DOT lv Message-Id: <1225-Wed08May2002214804+0300-eliz@is.elta.co.il> X-Mailer: emacs 21.2.50 (via feedmail 8 I) and Blat ver 1.8.9 CC: djgpp-workers AT delorie DOT com In-reply-to: (message from Andris Pavenis on Wed, 8 May 2002 17:29:18 +0300 (EEST)) Subject: Re: RFA: Ignore DOS end-of-line characters (ctrl-Z) unless -W References: Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > Date: Wed, 8 May 2002 17:29:18 +0300 (EEST) > From: Andris Pavenis > > > > I hope only when the input comes from a file, not from a terminal. > > Had to keep binary node or should rewrite file input in gcc/ccpfiles.c ?? All you need to do is look at what isatty returns before you decide whether to switch to binary mode. Reading from the terminal in binary mode is a bad idea: it prevents you from stopping input with a ^Z, for example. It also disables echoing of the input, so the user types blind. > sh-2.05$ `gcc -print-prog-name=cc1` -v > GNU CPP version 3.1 20020506 (prerelease) (cpplib) (80386, BSD syntax) > ignoring nonexistent directory "c:/djgpp/djgpp/include" > #include "..." search starts here: > #include <...> search starts here: > c:/djgpp/lib/gcc-lib/djgpp/3.1/include > c:/djgpp/include > End of search list. > ^Z > > Execution times (seconds) > TOTAL : 4.78 0.00 4.78 That doesn't look like binary input from the terminal. Are you sure the call to setmode worked?