gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, feature/fixtype, updated. gawk-4.1.0-188


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, feature/fixtype, updated. gawk-4.1.0-1882-gd8de6a3
Date: Fri, 1 Jul 2016 07:10:40 +0000 (UTC)

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/fixtype has been updated
       via  d8de6a38b2e4f2481a3c72477495f7a2b79da743 (commit)
       via  ce41ffb80b068139b4e04e3cff1d5dc2ee0ccc78 (commit)
       via  7832eb7eb92baebf12838fd6eae24be58bd6ba27 (commit)
       via  72645295eec48c30ed6a9b9f8bf21b9f53995524 (commit)
      from  a4cbdf37b98a56f688f8e1be96666a6f109c0e38 (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=d8de6a38b2e4f2481a3c72477495f7a2b79da743

commit d8de6a38b2e4f2481a3c72477495f7a2b79da743
Merge: a4cbdf3 ce41ffb
Author: Arnold D. Robbins <address@hidden>
Date:   Fri Jul 1 10:09:25 2016 +0300

    Merge branch 'master' into feature/fixtype

diff --cc ChangeLog
index c125050,bccf740..56558a7
--- a/ChangeLog
+++ b/ChangeLog
@@@ -11,86 -11,11 +11,91 @@@
        * gawkapi.c (api_warning): Fix the comment header.
        (api_lintwarn): Factor out the call to va_end to after the if.
  
+       Unrelated:
+ 
+       * symbol.c (get_symbols): Add FUNCTAB and SYMTAB to the list
+       for the -d option. Thanks to Hermann Peifer for the report.
+ 
 +2016-06-30         Arnold D. Robbins     <address@hidden>
 +
 +      * node.c (r_force_number): Coding style change.
 +
 +2016-06-30         Andrew J. Schorr     <address@hidden>
 +
 +      * awk.h (STFMT_UNUSED): New define indicating that the string
 +      representation does not depend on CONVFMT or OFMT.
 +      (force_string): Use STFMT_UNUSED to improve code clarity.
 +      * array.c (value_info): Fix stfmt logic.
 +      * builtin.c (do_print): Use STFMT_UNUSED to improve code clarity.
 +      * field.c (set_record): Ditto.
 +      * gawkapi.c (api_sym_update_scalar): Ditto.
 +      * int_array.c (is_integer): Check stfmt equals STFMT_UNUSED before
 +      bothering to inspect the string.
 +      * mpfr.c (mpg_format_val): Use STFMT_UNUSED to improve code clarity.
 +      Remove buggy cast to char in stfmt assignment.
 +      * node.c (r_format_val): Ditto.
 +      * str_array.c (str_lookup): Use STFMT_UNUSED to improve code clarity.
 +      * symbol.c (check_param_names): Ditto.
 +
 +2016-06-29         Andrew J. Schorr     <address@hidden>
 +
 +      * node.c (r_force_number): Optimize by trimming leading and trailing
 +      white space before we inspect the string contents.
 +      (get_ieee_magic_val): Must terminate the string with '\0' before
 +      calling strtod.
 +
 +2016-06-27         Andrew J. Schorr     <address@hidden>
 +
 +      * gawkapi.h (awk_string): Add comment about the potential lack of
 +      NUL-termination.
 +
 +2016-06-27         Andrew J. Schorr     <address@hidden>
 +
 +      * awk.h: Add a comment regarding the potential lack of NUL-termination
 +      for Node_val strings.
 +
 +2016-06-27         Andrew J. Schorr     <address@hidden>
 +
 +      * node.c (r_format_val): Do not free stptr unless STRCUR is set.
 +      This is safer than testing for non-NULL stptr, since, for example,
 +      pp_number copies a node and calls r_format_val, but does not bother
 +      to set stptr to NULL beforehand.
 +
 +2016-06-26         Andrew J. Schorr     <address@hidden>
 +
 +      * node.c (r_force_number): When checking for trailing spaces, protect
 +      against running off the end of the string.
 +      * mpfr.c (force_mpnum): Ditto.
 +
 +2016-06-26         Andrew J. Schorr     <address@hidden>
 +
 +      * builtin.c (do_print): There's actually no reason to test whether a
 +      value is a number, since the STRCUR flag and stfmt value contain all
 +      the necessary info, as in awk.h:force_string.
 +
 +2016-06-26         Andrew J. Schorr     <address@hidden>
 +
 +      * builtin.c (do_print): Do not use OFMT to print strnum values. We
 +      accomplish this by calling format_val for a NUMBER only
 +      if there is no string currently available, or if stfmt equals
 +      neither -1 nor OFMTidx.
 +
 +2016-06-26         Arnold D. Robbins     <address@hidden>
 +
 +      * awk.h: Edit some comments. Add others. Minor coding style changes.
 +      * builtin.c (format_tree): Restore a comment.
 +      (do_mktime): Restore saving/restoring of byte after format string.
 +      (do_sub): Coding style. Use %.*s in warning message.
 +      (nondec2awknum): Restore saving/restoring of byte after string value
 +      being converted.
 +      * eval.c: Minor coding style edits.
 +      * int_array.c (is_integer): Fix order of checks for not
 +      updating string value: check length == 0 before testing values.
 +      Coding style edits.
 +      * mpfr.c (do_mpfr_strtonum): Coding style edits.
 +      * node.c (r_force_number): Restore saving/restoring of byte after
 +      string value being converted. Edit comments some.
 +
  2016-06-26         Arnold D. Robbins     <address@hidden>
  
        Repair change of 2015-08-25 to handling of MAYBE_NUM.
diff --cc test/ChangeLog
index f0f346e,74eaae4..d495e57
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@@ -2,22 -2,8 +2,23 @@@
  
        * arrayind1.awk, arrayind1.ok: Comment out prints to stderr to
        avoid buffer flushing on obscure systems.
+       * dumpvars.ok, symtab6.ok, symtab8.ok: Update after code changes.
  
 +2016-06-26         Andrew J. Schorr     <address@hidden>
 +
 +      * strnum2.ok: Fix results, since print for a strnum should not be
 +      affected by OFMT or CONVFMT.
 +
 +2016-06-22         Andrew J. Schorr     <address@hidden>
 +
 +      * strnum2.awk, strnum2.ok: Improve test case to show both OFMT and
 +      CONVFMT conversions.
 +
 +2016-06-20         Andrew J. Schorr     <address@hidden>
 +
 +      * Makefile.am (strnum2): New test.
 +      * strnum2.awk, strnum2.ok: New files.
 +
  2016-06-14         Arnold D. Robbins     <address@hidden>
  
        * Makefile.am (subback): New test.

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

Summary of changes:
 ChangeLog        |    5 +++++
 symbol.c         |    6 +++++-
 test/ChangeLog   |    1 +
 test/dumpvars.ok |    2 ++
 test/symtab6.ok  |    2 ++
 test/symtab8.ok  |    2 ++
 6 files changed, 17 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
gawk



reply via email to

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