diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2010-05-19 12:22:24 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2010-05-19 12:22:24 +0000 |
commit | d4d232101d144de0b2af78c002e0a13ecd98152e (patch) | |
tree | 22eb4f0c7e1aa8896c2138c699e73add1b0f5af7 /Changes | |
parent | e9f1c5e6dc9bf5a6f78e57ae6f4a94e7e182b648 (diff) | |
download | ocaml-d4d232101d144de0b2af78c002e0a13ecd98152e.tar.gz |
PR#4874: interpretation of \b in regexps: characters that constitute a word now include 0-9 and _
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@10429 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'Changes')
-rw-r--r-- | Changes | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -81,6 +81,11 @@ Standard library: * Random: changed the algorithm to produce better randomness. Now passes the DieHard tests. +Other libraries: +* Str: letters that constitute a word now include digits 0-9 and + underscore _. This changes the interpretation of '\b' (word boundary) + in regexps, but is more consistent with other regexp libraries. (PR#4874). + Ocamlbuild: - Add support for native dynlink. |