diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-07-03 21:00:06 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-07-03 21:00:06 +0300 |
commit | dbcc874f3199814a2c8e8e2d022acaaa662a8ed3 (patch) | |
tree | d992e618d557a3d089d5354fbfbba693ba97aaf8 | |
parent | 2b66d88934d49362f1423149d6ae9919660b6704 (diff) | |
parent | 3726632fb30bdbd08f5e030a65d8f4bfb29a79d6 (diff) | |
download | egawk-dbcc874f3199814a2c8e8e2d022acaaa662a8ed3.tar.gz egawk-dbcc874f3199814a2c8e8e2d022acaaa662a8ed3.tar.bz2 egawk-dbcc874f3199814a2c8e8e2d022acaaa662a8ed3.zip |
Merge branch 'master' into feature/fix-comments
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | gawkapi.c | 2 | ||||
-rw-r--r-- | gawkapi.h | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2017-07-03 Arnold D. Robbins <arnold@skeeve.com> + + * gawkapi.h, gawkapi.c: Typo fixes in comments. + 2017-06-25 Andrew J. Schorr <aschorr@telemetry-investments.com> * gawkmisc.c (xmalloc): Remove function now in support/xalloc.h. @@ -267,7 +267,7 @@ api_register_input_parser(awk_ext_id_t id, awk_input_parser_t *input_parser) register_input_parser(input_parser); } -/* api_register_output_wrapper --- egister an output wrapper, for writing files / two-way pipes */ +/* api_register_output_wrapper --- register an output wrapper, for writing files / two-way pipes */ static void api_register_output_wrapper(awk_ext_id_t id, awk_output_wrapper_t *output_wrapper) @@ -590,7 +590,7 @@ typedef struct gawk_api { /* * Lookup a variable, fill in value. No messing with the value * returned. - * Returns false if the variable doesn't exist* or if the wrong type + * Returns false if the variable doesn't exist or if the wrong type * was requested. In the latter case, vaule->val_type will have * the real type, as described above. * |