aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2025-08-18 17:52:21 +0000
committerWarner Losh <imp@FreeBSD.org>2025-08-18 17:52:21 +0000
commit2f2a0304d0de65466eee733e9d6ed88dbcfdf925 (patch)
treead8733b30384e4048e8efe239131fab370266463
parente32b2740f7b6846335741577412cc3ae492633c8 (diff)
-rw-r--r--FIXES8
-rw-r--r--main.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/FIXES b/FIXES
index b3bf38f0aa1c..b876b9ec5ec9 100644
--- a/FIXES
+++ b/FIXES
@@ -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.
diff --git a/main.c b/main.c
index 361c23e70861..b8053af34b05 100644
--- a/main.c
+++ b/main.c
@@ -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>