stderr device number in the manual

Q&A's, tips, howto's
Locked
steloflute
Posts: 13
Joined: Tue Nov 06, 2012 4:02 pm
Contact:

stderr device number in the manual

Post by steloflute »

In the manual ( http://www.newlisp.org/downloads/newlis ... tml#device ), stderr is not mentioned.
I think 2 is the stderr.

Test code (test.lsp):

Code: Select all

(write-line 2 "stderr")
(println "stdout")
(exit)

Code: Select all

newlisp test.lsp > out.txt
Then, "stderr" is printed to the screen. "stdout" is printed to the file.

Would you please change the manual like so:
int-io-handle is an I/O device number, which is set to 0 (zero) for the default STD I/O pair of handles, 0 for stdin and 1 for stdout.
=>
int-io-handle is an I/O device number, which is set to 0 (zero) for the default STD I/O pair of handles, 0 for stdin, 1 for stdout and 2 for stderr.

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Re: stderr device number in the manual

Post by Lutz »


Locked