Update WHATSNEW.

This commit is contained in:
Dianne Skoll
2025-06-03 12:34:08 -04:00
parent 157d2821f3
commit 3090d77346

View File

@@ -1,6 +1,6 @@
CHANGES TO REMIND
* VERSION 5.4 Patch 0 - 2025-??-??
* VERSION 5.4 Patch 0 - 2025-06-03
- MAJOR IMPROVEMENT: remind: Track which expressions and variables
Remind can prove to its satisfaction are "constant" - that is, that
@@ -26,6 +26,20 @@ CHANGES TO REMIND
corresponding $Tb system variable. See the remind(1) man page for
details.
- MINOR IMPROVEMENT: remind: make value("var", default) evaluate the
second argument lazily: If "var" is defined, then the second
argument is never evaluated.
- MINOR IMPROVEMENT: remind: Add syntax for redefining a function without
issuing a warning. The syntax:
FSET - func(x) expr
is equivalent to:
FUNSET func
FSET func(x) expr
- MINOR IMPROVEMENT: include/holidays: Update a bunch of files to use
isany(n, a, b, c) rather than (n == a || n == b || n == c)