diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-12 13:45:33 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-12 13:45:33 +0200 |
commit | e573fb4635697c3194c660fd2d3ba66fa439d9f6 (patch) | |
tree | 5f078075bd4c3fc465ad0793198022c9b1ff8c5f /doc/it | |
parent | d2bd8c645f8511288f93e244d5411ebc0166e9cd (diff) | |
parent | a1e5ff3b8d65544d8819d70f598893d6056725e3 (diff) | |
download | egawk-e573fb4635697c3194c660fd2d3ba66fa439d9f6.tar.gz egawk-e573fb4635697c3194c660fd2d3ba66fa439d9f6.tar.bz2 egawk-e573fb4635697c3194c660fd2d3ba66fa439d9f6.zip |
Merge branch 'gawk-4.2-stable'
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/ChangeLog | 7 | ||||
-rw-r--r-- | doc/it/gawktexi.in | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/doc/it/ChangeLog b/doc/it/ChangeLog index 7cfe6a07..06cd560c 100644 --- a/doc/it/ChangeLog +++ b/doc/it/ChangeLog @@ -1,3 +1,10 @@ +2018-01-12 Arnold D. Robbins <arnold@skeeve.com> + + * gawktexi.in: Remove incorrect '*' on some declarations of + ext_id in sample extension code. Thanks to Panos Papadopoulos + <panos1962@gmail.com> for the report. + * texinfo.tex: Updated from GNULIB. + 2017-12-07 Antonio Giovanni Colombo <azc100@gmail.com> * gawk.1: New file. (Italian translation of the man page.) diff --git a/doc/it/gawktexi.in b/doc/it/gawktexi.in index c3cd68f3..3621678f 100644 --- a/doc/it/gawktexi.in +++ b/doc/it/gawktexi.in @@ -36718,7 +36718,7 @@ Tabella dei simboli: #include "gawkapi.h" static const gawk_api_t *api; /* per far funzionare le macro di utilit@`a */ -static awk_ext_id_t *ext_id; +static awk_ext_id_t ext_id; static const char *ext_version = "testarray extension: version 1.0"; int plugin_is_GPL_compatible; @@ -37532,7 +37532,7 @@ per usare le macro dell'API e il codice predefinito static const gawk_api_t *api; /* per consentire il funzionamento delle macro di utilit@`a */ -static awk_ext_id_t *ext_id; +static awk_ext_id_t ext_id; static awk_bool_t init_filefuncs(void); static awk_bool_t (*init_func)(void) = init_filefuncs; static const char *ext_version = "filefuncs extension: version 1.0"; |