diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-07-03 20:59:44 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-07-03 20:59:44 +0300 |
commit | bde1a08e3d349092ddd69e6eedf967350353111c (patch) | |
tree | 014cccc6d7b3c6f6f72a6d57694a9c8354375974 | |
parent | 3db154790f993438c5dc5d3428fb8b0a4c69288c (diff) | |
parent | 3726632fb30bdbd08f5e030a65d8f4bfb29a79d6 (diff) | |
download | egawk-bde1a08e3d349092ddd69e6eedf967350353111c.tar.gz egawk-bde1a08e3d349092ddd69e6eedf967350353111c.tar.bz2 egawk-bde1a08e3d349092ddd69e6eedf967350353111c.zip |
Merge branch 'master' into feature/api-mpfr
-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-26 Arnold D. Robbins <arnold@skeeve.com> * configure.ac: Turn a tab into a space in AC_DEFINE(SUPPLY_INTDIV). @@ -304,7 +304,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) @@ -608,7 +608,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. * |