summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorericm <ericm>2000-07-25 00:05:40 (GMT)
committerericm <ericm>2000-07-25 00:05:40 (GMT)
commitc6bc600d803dbcb3b90be56c4653c52add4ba9b3 (patch)
tree29db30b6a07a41cbf1c7cbac313ba0defcbf7d1d /ChangeLog
parent5649a675dfb76712afa08a8711459fc263bdbeb3 (diff)
downloadtk-c6bc600d803dbcb3b90be56c4653c52add4ba9b3.zip
tk-c6bc600d803dbcb3b90be56c4653c52add4ba9b3.tar.gz
tk-c6bc600d803dbcb3b90be56c4653c52add4ba9b3.tar.bz2
* tests/text.test: Added tests for -regexp -nocase searches with
backslash character classes. * generic/tkText.c (TextSearchCmd): Text search did not work properly when -regexp and -nocase were used, in combination with backslash character classes represented by capital letters (ie, \W, \M); altered implementation of -regexp -nocase searches to use new regexp interfaces to fix this problem. [Bug: 5988].
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9d25081..bc15fd5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2000-07-24 Eric Melski <ericm@ajubasolutions.com>
+
+ * tests/text.test: Added tests for -regexp -nocase searches with
+ backslash character classes.
+
+ * generic/tkText.c (TextSearchCmd): Text search did not work
+ properly when -regexp and -nocase were used, in combination with
+ backslash character classes represented by capital letters (ie,
+ \W, \M); altered implementation of -regexp -nocase searches to use
+ new regexp interfaces to fix this problem. [Bug: 5988].
+
2000-07-21 Eric Melski <ericm@ajubasolutions.com>
* tests/text.test: Added tests for searching when text is elided.