diff options
| author | Warner Losh <imp@FreeBSD.org> | 2025-08-18 17:52:21 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2025-08-18 17:52:21 +0000 |
| commit | 2f2a0304d0de65466eee733e9d6ed88dbcfdf925 (patch) | |
| tree | ad8733b30384e4048e8efe239131fab370266463 | |
| parent | e32b2740f7b6846335741577412cc3ae492633c8 (diff) | |
| -rw-r--r-- | FIXES | 8 | ||||
| -rw-r--r-- | main.c | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -25,6 +25,14 @@ THIS SOFTWARE. This file lists all bug fixes, changes, etc., made since the second edition of the AWK book was published in September 2023. +Aug 04, 2025 + Fix incorrect divisor in rand() - it was returning + even random numbers only. Thanks to Ozan Yigit. + + Fix a syntax issue with /= that caused constants to + turn into variables [eg. 42 /= 7]. Thanks to Arnold + Robbins. + Jan 14, 2025 Fix incorrect error line number issues. unput has no business managing lineno. Thanks to Ozan Yigit. @@ -22,7 +22,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ****************************************************************/ -const char *version = "version 20250116"; +const char *version = "version 20250804"; #define DEBUG #include <stdio.h> |
