Update FIXES and version in main.c.
This commit is contained in:
parent
cc9e9b68d1
commit
6535bd6c35
7
FIXES
7
FIXES
@ -25,6 +25,13 @@ THIS SOFTWARE.
|
|||||||
This file lists all bug fixes, changes, etc., made since the AWK book
|
This file lists all bug fixes, changes, etc., made since the AWK book
|
||||||
was sent to the printers in August, 1987.
|
was sent to the printers in August, 1987.
|
||||||
|
|
||||||
|
December 8, 2020:
|
||||||
|
Merge PR #98: Disallow hex data. Allow only +nan, -nan,
|
||||||
|
+inf, -inf (case independent) to give NaN and infinity values.
|
||||||
|
Improve things so that string to double conversion is only
|
||||||
|
done once, yielding something of a speedup. This obviate
|
||||||
|
PR #95. Thanks to Arnold Robbins.
|
||||||
|
|
||||||
December 3, 2020:
|
December 3, 2020:
|
||||||
Fix to argument parsing to avoid printing spurious newlines.
|
Fix to argument parsing to avoid printing spurious newlines.
|
||||||
Thanks to Todd Miller. Merges PR #97.
|
Thanks to Todd Miller. Merges PR #97.
|
||||||
|
2
main.c
2
main.c
@ -22,7 +22,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|||||||
THIS SOFTWARE.
|
THIS SOFTWARE.
|
||||||
****************************************************************/
|
****************************************************************/
|
||||||
|
|
||||||
const char *version = "version 20201203";
|
const char *version = "version 20201208";
|
||||||
|
|
||||||
#define DEBUG
|
#define DEBUG
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user