summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-10-09 17:37:37 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2019-10-09 18:34:05 -0700
commit5e407aba1f775d51b25481cb55f324c9868f62d7 (patch)
tree16fab8a328ba1e73b9ac71d98bbc8ac0a3a6ca4e /ChangeLog
parent48f07576b8cd935b48e1050551f45ab1a79b9f01 (diff)
downloadgnulib-5e407aba1f775d51b25481cb55f324c9868f62d7.tar.gz
regex: tell compiler there’s at most 256 arcs out
Partly this is to help the reader (and maybe help GCC); partly this is to pacify Coverity. * lib/regex_internal.h: Include verify.h. * lib/regexec.c (group_nodes_into_DFAstates): Tell the compiler that ndests cannot exceed SBC_MAX. * modules/regex (Depends-on): Add ‘verify’.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4f96c8cbff..360973ba46 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2019-10-09 Paul Eggert <eggert@cs.ucla.edu>
+ regex: tell compiler there’s at most 256 arcs out
+ Partly this is to help the reader (and maybe help GCC);
+ partly this is to pacify Coverity.
+ * lib/regex_internal.h: Include verify.h.
+ * lib/regexec.c (group_nodes_into_DFAstates):
+ Tell the compiler that ndests cannot exceed SBC_MAX.
+ * modules/regex (Depends-on): Add ‘verify’.
+
regex: simplify by assuming C99
* config/srclist.txt: Comment out regex_internal.h and regexec.c
temporarily.