diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-05-25 01:38:16 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-05-25 01:38:16 +0300 |
commit | 827b8732b5b558c5aa5e6c5d5c1198e49b90b66f (patch) | |
tree | fd00687a7429711153e95322bff3d75103af61a8 /doc/gawk.texi | |
parent | 89fa14e4ef45ac12811546abe03cf48fe997a694 (diff) | |
parent | 44d5655584bfa914c127f177919a7069e6cff841 (diff) | |
download | egawk-827b8732b5b558c5aa5e6c5d5c1198e49b90b66f.tar.gz egawk-827b8732b5b558c5aa5e6c5d5c1198e49b90b66f.tar.bz2 egawk-827b8732b5b558c5aa5e6c5d5c1198e49b90b66f.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index 75deb196..9948b0f1 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -33023,6 +33023,9 @@ that parameter. More's the pity.} @item void fatal(awk_ext_id_t id, const char *format, ...); Print a message and then cause @command{gawk} to exit immediately. +@item void nonfatal(awk_ext_id_t id, const char *format, ...); +Print a nonfatal error message. + @item void warning(awk_ext_id_t id, const char *format, ...); Print a warning message. @@ -33899,7 +33902,7 @@ into @command{gawk}, you have to retrieve the array cookie from the value passed in to @command{sym_update()} before doing anything else with it, like so: @example -awk_value_t value; +awk_value_t val; awk_array_t new_array; new_array = create_array(); @@ -35816,7 +35819,7 @@ output wrappers, and two-way processors) @item -Printing fatal, warning, and ``lint'' warning messages +Printing fatal, nonfatal, warning, and ``lint'' warning messages @item Updating @code{ERRNO}, or unsetting it |