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-1885-g279a0d6
Date: Fri, 1 Jul 2016 07:18:26 +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  279a0d6476c4d403e1038a01d04c4b0cf2fd2f75 (commit)
       via  606836b7783dc5c75b8ff1d5dbc4374c3ca787e0 (commit)
       via  b11d9d80ffce53cfdaebb076ea67420884fba6ab (commit)
      from  d8de6a38b2e4f2481a3c72477495f7a2b79da743 (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=279a0d6476c4d403e1038a01d04c4b0cf2fd2f75

commit 279a0d6476c4d403e1038a01d04c4b0cf2fd2f75
Merge: d8de6a3 606836b
Author: Arnold D. Robbins <address@hidden>
Date:   Fri Jul 1 10:18:17 2016 +0300

    Merge branch 'master' into feature/fixtype

diff --cc ChangeLog
index 56558a7,fa98ee4..e68b1be
--- a/ChangeLog
+++ b/ChangeLog
@@@ -14,88 -14,10 +14,90 @@@
        Unrelated:
  
        * symbol.c (get_symbols): Add FUNCTAB and SYMTAB to the list
-       for the -d option. Thanks to Hermann Peifer for the report.
+       for the -d option.
+       * awkgram.y (dump_vars): Allow "-" to mean print to stdout.
+       Thanks to Hermann Peifer for the reports.
  
 +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.

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

Summary of changes:
 ChangeLog |    4 +++-
 NEWS      |    2 ++
 awkgram.c |    4 +++-
 awkgram.y |    4 +++-
 4 files changed, 11 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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