gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5443-g93333bd8


From: Arnold Robbins
Subject: [SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5443-g93333bd8
Date: Mon, 25 Dec 2023 15:31:52 -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-5.3-stable has been updated
       via  93333bd8d23a7c87f1980310afd5274c33311c36 (commit)
      from  e9a78cb00374c49d3f2fd26fbe04fc05895b5ea7 (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=93333bd8d23a7c87f1980310afd5274c33311c36

commit 93333bd8d23a7c87f1980310afd5274c33311c36
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Mon Dec 25 22:31:30 2023 +0200

    Fix a compiler warning.

diff --git a/ChangeLog b/ChangeLog
index 25d46f4e..77537418 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2023-12-25         Arnold D. Robbins     <arnold@skeeve.com>
+
+       * debug.c (serialize_list): Fix a compiler warning about
+       an unused variable.
+
 2024-12-25         Andrew J. Schorr      <aschorr@telemetry-investments.com>
 
        * io.c (get_read_timeout): Make gawk match the doc and have
diff --git a/debug.c b/debug.c
index fc53d4e9..8c5bee6c 100644
--- a/debug.c
+++ b/debug.c
@@ -4513,7 +4513,7 @@ serialize_list(int type)
        int cnum = 0;
        struct condition *cndn = NULL;
        void *ptr, *end_ptr;
-#ifdef HAVE_LIBREADLINE
+#if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
        HIST_ENTRY *h = NULL;
 #endif
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog | 5 +++++
 debug.c   | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]