aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog36
-rw-r--r--doc/ChangeLog10
-rw-r--r--test/ChangeLog6
3 files changed, 32 insertions, 20 deletions
diff --git a/ChangeLog b/ChangeLog
index 93b91427..c406b133 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,10 @@
Nnull_string directly. Fixes core dump reported by
ruyk <Lonely.ruyk@mail.ru>.
+ Unrelated:
+
+ * ChangeLog: Cleanup spurious extra whitespace.
+
2016-01-02 Arnold D. Robbins <arnold@skeeve.com>
* dfa.c (add_utf8_anychar): Minor change in declaration of
@@ -51,7 +55,7 @@
is false. Fixes a problem reported by Hanno Boeck <hanno@hboeck.de>.
Unrelated:
-
+
* dfa.c: Sync with GNU grep.
2015-10-16 Arnold D. Robbins <arnold@skeeve.com>
@@ -302,7 +306,7 @@
add check that time_t is > 0 --- means we're assigning a negative value
to an unsigned time_t. Thanks again to Glaudiston Gomes da Silva
<glaudistong@gmail.com>.
-
+
If localtime() or gmtime() return NULL, return a null string.
Thanks to Andrew Schorr.
@@ -945,7 +949,7 @@
* builtin.c (format_tree): Don't need to check return value of
wctombr for -2. Thanks to Eli Zaretskii for pointing this out.
-
+
Unrelated:
* gawkapi.h: Fix doc for API get_record - errcode needs to
@@ -2292,7 +2296,7 @@
* awk.h (SRCFILE): New field fini_func.
* ext.c (load_ext): Takes an additional argument to look up and
- save the clean up routine in SRCFILE struct.
+ save the clean up routine in SRCFILE struct.
(INIT_FUNC, FINI_FUNC): Defines for default init and fini routine
names.
(do_ext): Use default for the name of the init or fini routine if
@@ -2307,8 +2311,8 @@
Unrelated:
- * interpret.h (Op_arrayfor_init): Use assoc_length for array size.
-
+ * interpret.h (Op_arrayfor_init): Use assoc_length for array size.
+
2012-04-19 John Haque <j.eh@mchsi.com>
Enhanced array interface to support transparent implementation
@@ -2334,7 +2338,7 @@
(null_array_func): Add length and store routine entries.
* str_array.c (str_array_func): Same.
* cint_array.c (cint_array_func): Same.
- * int_array.c (int_array_func): Same.
+ * int_array.c (int_array_func): Same.
* eval.c (optypetab): Add Op_subscript_assign.
* profile.c (pprint): Add case Op_subscript_assign.
* interpret.h (set_array, set_idx): New variables to keep track
@@ -3517,7 +3521,7 @@
* main.c: Change --arbitrary-precision to --bignum.
2012-04-02 John Haque <j.eh@mchsi.com>
-
+
Add support for arbitrary-precision arithmetic.
* mpfr.c: New file.
@@ -3548,7 +3552,7 @@
* eval.c (register_exec_hook): New function to manage interpreter hooks.
(num_exec_hook, pre_execute, post_execute): New and adjusted definitions.
(h_interpret): Renamed from debug_interpret.
- (init_interpret): Changed to use the new name.
+ (init_interpret): Changed to use the new name.
(flags2str): New entries for MPFN and MPZN.
(cmp_nodes): Reworked to use seperate routine for numeric comparisons.
(set_IGNORECASE, set_BINMODE, set_LINT, update_NR, update_FNR,
@@ -3694,7 +3698,7 @@
2012-01-13 Arnold D. Robbins <arnold@skeeve.com>
- * dfa.c [is_valid_unibtye_character]: Fix from GNU grep to
+ * dfa.c [is_valid_unibtye_character]: Fix from GNU grep to
bug reported by me from Scott Deifik for DJGPP.
2012-01-03 Arnold D. Robbins <arnold@skeeve.com>
@@ -4038,7 +4042,7 @@
(do_traditional, do_posix, do_intervals, do_intl,
do_non_decimal_data, do_profiling, do_dump_vars,
do_tidy_mem, do_sandbox, do_lint,
- do_lint_old): Defined as macros.
+ do_lint_old): Defined as macros.
* main.c: Remove definitions of the do_XX variables. Add
do_flags definition.
* debug.c (execute_code, do_eval, parse_condition): Save
@@ -4070,7 +4074,7 @@
(Node_ahash, NUMIND): Nuked.
* eval.c (r_interpret): Adjust cases Op_subscript,
Op_subscript_lhs, Op_store_var and Op_arrayfor_incr.
- * node.c (dupnode, unref): Removed code related to Node_ahash.
+ * node.c (dupnode, unref): Removed code related to Node_ahash.
* str_array.c: New file to handle array with string indices.
* int_array.c: New file to handle array with integer indices.
* cint_array.c: New file. Special handling of arrays with
@@ -4123,7 +4127,7 @@
cases Op_K_getline, Op_after_beginfile, Op_after_endfile,
Op_newfile and Op_K_exit.
* io.c (after_beginfile): When skipping a file using nextfile,
- return zero in case there was an error opening the file.
+ return zero in case there was an error opening the file.
(has_endfile): Nuke global variable.
(inrec): Add a second argument to pass errno to the calling
routine.
@@ -4204,7 +4208,7 @@
2011-07-15 John Haque <j.eh@mchsi.com>
* awk.h (Op_sub_builtin): New opcode.
- (GSUB, GENSUB, AFTER_ASSIGN, LITERAL): New flags for
+ (GSUB, GENSUB, AFTER_ASSIGN, LITERAL): New flags for
Op_sub_builtin.
* awkgram.y (struct tokentab): Change opcode to Op_sub_builtin
for sub, gsub and gensub.
@@ -4212,7 +4216,7 @@
* builtin.c (do_sub, do_gsub, do_gensub): Nuke.
(sub_common): Renamed to do_sub. Relocate gensub argument
handling code from do_gensub to here; Simplify the code a
- little bit.
+ little bit.
* eval.c (r_interpret): Handle Op_sub_builtin. Avoid field
re-splitting or $0 rebuilding if (g)sub target string is
a field and no substitutions were done.
@@ -4235,7 +4239,7 @@
2011-07-15 Arnold D. Robbins <arnold@skeeve.com>
* awk.h: Typo fix: "loner" --> longer. Thanks to Nelson Beebe.
- * builtin.c (efwrite): Fix flushing test back to what it was
+ * builtin.c (efwrite): Fix flushing test back to what it was
in 3.1.8. Thanks to Strefil <strefil@yandex.ru> for the problem
report.
* configure.ac: Bump version to 4.0.0a for stable branch.
diff --git a/doc/ChangeLog b/doc/ChangeLog
index b0eb67ed..43594dd6 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,7 @@
+2016-01-14 Arnold D. Robbins <arnold@skeeve.com>
+
+ * ChangeLog: Remove spurious whitespace.
+
2016-01-13 Arnold D. Robbins <arnold@skeeve.com>
* gawktexi.in (Array Sorting Functions): Add an example of
@@ -87,7 +91,7 @@
2015-06-13 Arnold D. Robbins <arnold@skeeve.com>
* gawktexi.in: Comment out exercise 10.3, since the answer
- is included in the text. Thanks to Antonio Colombo
+ is included in the text. Thanks to Antonio Colombo
for pointing this out.
2015-06-12 Arnold D. Robbins <arnold@skeeve.com>
@@ -610,7 +614,7 @@
2014-05-29 Arnold D. Robbins <arnold@skeeve.com>
- * gawktexi.in: Remove some obsolete bits, fix up some other
+ * gawktexi.in: Remove some obsolete bits, fix up some other
minor stuff.
2014-05-27 Arnold D. Robbins <arnold@skeeve.com>
@@ -1342,7 +1346,7 @@
* gawk.texi, gawk.1: Replace references to dlload with dl_load.
But much more work needs to be done on the docs.
-
+
2012-05-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
* gawk.texi, gawk.1: Document new -i option, and describe new default
diff --git a/test/ChangeLog b/test/ChangeLog
index 10e942b8..56edb8f2 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -3,6 +3,10 @@
* Makefile.am (aryprm9): New test.
* aryprm9.awk, aryprm9.ok: New files.
+ Unrelated:
+
+ * ChangeLog: Remove spurious whitespace.
+
2015-12-27 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (profile8): New test.
@@ -74,7 +78,7 @@
2015-05-21 Arnold D. Robbins <arnold@skeeve.com>
- * fts.awk: Really remove atime from the output.
+ * fts.awk: Really remove atime from the output.
This avoids spurious failures on heavily loaded systems.
* Makefile.am: Add list of needed locales to "inadequate locale