diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-02-08 20:01:32 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-02-08 20:01:32 +0200 |
commit | 7f9f66525d7d82816eba352efdf58497373a47bf (patch) | |
tree | 114c8f7d46aa478599e7a3a3e00cce4316dfd78b /doc/gawk.info | |
parent | 0e38201f5879cc91c90876b2b9b219a308e3a2d2 (diff) | |
download | egawk-7f9f66525d7d82816eba352efdf58497373a47bf.tar.gz egawk-7f9f66525d7d82816eba352efdf58497373a47bf.tar.bz2 egawk-7f9f66525d7d82816eba352efdf58497373a47bf.zip |
Use "NONFATAL" for nonfatal I/O.
Diffstat (limited to 'doc/gawk.info')
-rw-r--r-- | doc/gawk.info | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/gawk.info b/doc/gawk.info index d83370e8..118c814a 100644 --- a/doc/gawk.info +++ b/doc/gawk.info @@ -7226,10 +7226,10 @@ error message of your choosing before exiting. You can do this in one of two ways: * For all output files, by assigning any value to - `PROCINFO["nonfatal"]'. + `PROCINFO["NONFATAL"]'. * On a per-file basis, by assigning any value to `PROCINFO[FILENAME, - "nonfatal"]'. Here, FILENAME is the name of the file to which you + "NONFATAL"]'. Here, FILENAME is the name of the file to which you wish output to be nonfatal. Once you have enabled nonfatal output, you must check `ERRNO' after @@ -7239,7 +7239,7 @@ attempting the output. For example: $ gawk ' > BEGIN { - > PROCINFO["nonfatal"] = 1 + > PROCINFO["NONFATAL"] = 1 > ERRNO = 0 > print "hi" > "/no/such/file" > if (ERRNO) { @@ -7253,9 +7253,9 @@ attempting the output. For example: program code detect the problem and handle it. This mechanism works also for standard output and standard error. -For standard output, you may use `PROCINFO["-", "nonfatal"]' or -`PROCINFO["/dev/stdout", "nonfatal"]'. For standard error, use -`PROCINFO["/dev/stderr", "nonfatal"]'. +For standard output, you may use `PROCINFO["-", "NONFATAL"]' or +`PROCINFO["/dev/stdout", "NONFATAL"]'. For standard error, use +`PROCINFO["/dev/stderr", "NONFATAL"]'. File: gawk.info, Node: Output Summary, Next: Output Exercises, Prev: Nonfatal, Up: Printing |