[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-287
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-2879-ga1e5ff3 |
Date: |
Fri, 12 Jan 2018 06:42:47 -0500 (EST) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, gawk-4.2-stable has been updated
via a1e5ff3b8d65544d8819d70f598893d6056725e3 (commit)
from 22815f51f61940f330026c2b0a293996958a942a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=a1e5ff3b8d65544d8819d70f598893d6056725e3
commit a1e5ff3b8d65544d8819d70f598893d6056725e3
Author: Arnold D. Robbins <address@hidden>
Date: Fri Jan 12 13:42:23 2018 +0200
Further cleanup of awk_ext_id_t variables.
diff --git a/ChangeLog b/ChangeLog
index c601536..4a1be06 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-01-12 Arnold D. Robbins <address@hidden>
+
+ * gawkapi.h: Remove extraneous '*' on parameters of
+ type awk_ext_id. Thanks to Andrew Schorr for the report.
+
2018-01-11 Arnold D. Robbins <address@hidden>
* compile, config.guess, config.rpath, config.sub,
diff --git a/doc/it/ChangeLog b/doc/it/ChangeLog
index d38f986..7eb32f6 100644
--- a/doc/it/ChangeLog
+++ b/doc/it/ChangeLog
@@ -1,3 +1,10 @@
+2018-01-12 Arnold D. Robbins <address@hidden>
+
+ * gawktexi.in: Remove incorrect '*' on some declarations of
+ ext_id in sample extension code. Thanks to Panos Papadopoulos
+ <address@hidden> for the report.
+ * texinfo.tex: Updated from GNULIB.
+
2017-12-07 Antonio Giovanni Colombo <address@hidden>
* gawk.1: New file. (Italian translation of the man page.)
diff --git a/doc/it/gawktexi.in b/doc/it/gawktexi.in
index aa99d61..d29cdf0 100644
--- a/doc/it/gawktexi.in
+++ b/doc/it/gawktexi.in
@@ -36713,7 +36713,7 @@ Tabella dei simboli:
#include "gawkapi.h"
static const gawk_api_t *api; /* per far funzionare le macro di
address@hidden */
-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;
@@ -37484,7 +37484,7 @@ per usare le macro dell'API e il codice predefinito
static const gawk_api_t *api; /* per consentire il funzionamento
delle macro di address@hidden */
-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";
diff --git a/gawkapi.h b/gawkapi.h
index 7f57457..240bffe 100644
--- a/gawkapi.h
+++ b/gawkapi.h
@@ -947,7 +947,7 @@ typedef struct gawk_api {
static inline awk_value_t *
r_make_string_type(const gawk_api_t *api, /* needed for emalloc */
- awk_ext_id_t *ext_id, /* ditto */
+ awk_ext_id_t ext_id, /* ditto */
const char *string,
size_t length,
awk_bool_t duplicate,
@@ -977,7 +977,7 @@ r_make_string_type(const gawk_api_t *api, /* needed for
emalloc */
static inline awk_value_t *
r_make_string(const gawk_api_t *api, /* needed for emalloc */
- awk_ext_id_t *ext_id, /* ditto */
+ awk_ext_id_t ext_id, /* ditto */
const char *string,
size_t length,
awk_bool_t duplicate,
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
doc/it/ChangeLog | 7 +++++++
doc/it/gawktexi.in | 4 ++--
gawkapi.h | 4 ++--
4 files changed, 16 insertions(+), 4 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-2879-ga1e5ff3,
Arnold Robbins <=