summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-02-16 11:10:03 +0000
committerRoland McGrath <roland@gnu.org>2005-02-16 11:10:03 +0000
commit29718cf5bc94fce2273c1492ddd887403c14f532 (patch)
tree0c22fbd8bd6647115cea02fe6e8c850937102c53
parent170bb77e3d6e1b6c0f78087fef3dafce4d6dc38f (diff)
.
-rw-r--r--ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index af9c4093cf..b2b35c1cc7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -21,6 +21,21 @@
* sysdeps/unix/sysv/linux/i386/sysdep.h
(SYSCALL_ERROR_HANDLER_TLS_STORE): Remove unnecessary 0 imm.
+ [BZ #693]
+ * posix/regex_internal.h (DUMMY_CONSTRAINT): Rename to...
+ (WORD_DELIM_CONSTRAINT): ...this.
+ (NOT_WORD_DELIM_CONSTRAINT): Define.
+ (re_context_type): Add INSIDE_NOTWORD and NOT_WORD_DELIM,
+ change WORD_DELIM to use WORD_DELIM_CONSTRAINT.
+ * posix/regcomp.c (peek_token): For \B create NOT_WORD_DELIM
+ anchor instead of INSIDE_WORD.
+ (parse_expression): Handle NOT_WORD_DELIM constraint.
+ * posix/bug-regex19.c (tests): Adjust tests that relied on \B
+ being inside word instead of not word delim.
+ * posix/tst-rxspencer.c (mb_frob_pattern): Don't frob escaped
+ characters.
+ * posix/rxspencer/tests: Add some new tests.
+
2005-01-25 Roland McGrath <roland@redhat.com>
[BZ #671]