summaryrefslogtreecommitdiff
path: root/Changes
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2010-05-19 12:22:24 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2010-05-19 12:22:24 +0000
commitd4d232101d144de0b2af78c002e0a13ecd98152e (patch)
tree22eb4f0c7e1aa8896c2138c699e73add1b0f5af7 /Changes
parente9f1c5e6dc9bf5a6f78e57ae6f4a94e7e182b648 (diff)
downloadocaml-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--Changes5
1 files changed, 5 insertions, 0 deletions
diff --git a/Changes b/Changes
index 48edc3aab2..ac39b6faa2 100644
--- a/Changes
+++ b/Changes
@@ -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.