diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-07-19 19:45:21 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-07-19 19:45:21 +0300 |
commit | 1d62718f4b4abaa030ff3b34723fc62c7c231f78 (patch) | |
tree | 593bffe93c8c4e6af6efc2c86420f6500f0542b6 | |
parent | 654019bde25f87c7954641610298299a68d267e4 (diff) | |
parent | 44a30c40ecc28040f44944d2152919c643274ed4 (diff) | |
download | egawk-1d62718f4b4abaa030ff3b34723fc62c7c231f78.tar.gz egawk-1d62718f4b4abaa030ff3b34723fc62c7c231f78.tar.bz2 egawk-1d62718f4b4abaa030ff3b34723fc62c7c231f78.zip |
Merge branch 'gawk-5.1-stable'
-rw-r--r-- | ChangeLog | 19 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | gawkapi.h | 2 | ||||
-rw-r--r-- | mpfr.c | 2 |
4 files changed, 22 insertions, 3 deletions
@@ -1,3 +1,22 @@ +2020-07-19 Arnold D. Robbins <arnold@skeeve.com> + + * NEWS: Fix title on leading set of changes. Thanks to + Marcus <marcuscruse@ya.ru> for the report. + + Unrelated: Bump minor API version since semantics have changed. + + * gawkapi.h (api_minor_version): Increase to 1. + + Unrelated: Fix a spelling error in a comment. + + * mpfr.c (force_mpnum): Fix a typo. + +2020-07-17 Arnold D. Robbins <arnold@skeeve.com> + + * gawkapi.h (gawk_api_minor_version): Increase, since the + MPFR/MPZ stuff changed some. Remains source and binary + compatible, but semantics are different. + 2020-07-15 Arnold D. Robbins <arnold@skeeve.com> Finish cleaning up MPFR valgrind issues. @@ -4,7 +4,7 @@ are permitted in any medium without royalty provided the copyright notice and this notice are preserved. -Changes from 5.0.1 to 5.0.2 +Changes from 5.1.0 to 5.1.1 --------------------------- 1. Infrastructure upgrades: Bison 3.6.3. @@ -297,7 +297,7 @@ typedef struct awk_two_way_processor { } awk_two_way_processor_t; #define gawk_api_major_version 3 -#define gawk_api_minor_version 0 +#define gawk_api_minor_version 1 /* Current version of the API. */ enum { @@ -296,7 +296,7 @@ force_mpnum(NODE *n, int do_nondec, int use_locale) /* * Maybe "+" or "-" was the field. mpg_strtoui * won't check for that and set errno, so we have - * to check manuall. + * to check manually. */ if (*cp1 == '\0') { *cpend = save; |