gawk-diffs
[Top][All Lists]
Advanced

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

[SCM] gawk branch, feature/cpp-compile, updated. gawk-4.1.0-4537-g83f97e


From: Arnold Robbins
Subject: [SCM] gawk branch, feature/cpp-compile, updated. gawk-4.1.0-4537-g83f97ef
Date: Thu, 26 Aug 2021 15:02:16 -0400 (EDT)

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, feature/cpp-compile has been updated
       via  83f97ef04ea161e13095b1da913ac31b02a348a3 (commit)
       via  340b2837d42b956dbf9d34f9a66c674bb62ca377 (commit)
       via  585a9456283db7169ea53a328824e55deb998d8f (commit)
       via  59e758a8ee45b58c9a765a6ceed4da3775d78952 (commit)
       via  bcc0594e9b64c89b56e8ea6891c0a9f8b97c57d1 (commit)
      from  4076aefedfec7dc1402ffee26ef2c5edf2275aed (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=83f97ef04ea161e13095b1da913ac31b02a348a3

commit 83f97ef04ea161e13095b1da913ac31b02a348a3
Merge: 4076aef 340b283
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Thu Aug 26 22:01:42 2021 +0300

    Merge branch 'master' into feature/cpp-compile

diff --cc builtin.c
index c9b7a00,087f1ab..c54bb00
--- a/builtin.c
+++ b/builtin.c
@@@ -2925,11 -2931,9 +2925,9 @@@ do_sub(int nargs, unsigned int flags
  
        /* do the search early to avoid work on non-match */
        if (research(rp, target->stptr, 0, target->stlen, RE_NEED_START) == -1 
||
 -                      RESTART(rp, target->stptr) > target->stlen)
 +                      (size_t)RESTART(rp, target->stptr) > target->stlen)
                goto done;
  
-       target->flags |= STRING;
- 
        text = target->stptr;
        textlen = target->stlen;
  

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

Summary of changes:
 ChangeLog           |   16 +
 builtin.c           |   36 +-
 configure           |    3 +
 configure.ac        |    3 +
 doc/ChangeLog       |    7 +
 doc/gawk.info       | 1040 ++++++++++++++++++++++++++-------------------------
 doc/gawk.texi       |   21 +-
 doc/gawktexi.in     |   21 +-
 pc/Makefile.tst     |    7 +-
 support/ChangeLog   |    5 +
 support/Makefile.am |    2 +
 test/ChangeLog      |    5 +
 test/Makefile.am    |    4 +-
 test/Makefile.in    |    9 +-
 test/Maketests      |    5 +
 test/regexsub.awk   |   48 +++
 test/regexsub.ok    |   30 ++
 17 files changed, 741 insertions(+), 521 deletions(-)
 create mode 100644 test/regexsub.awk
 create mode 100644 test/regexsub.ok


hooks/post-receive
-- 
gawk



reply via email to

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