diff options
author | stanton <stanton> | 1999-07-08 23:17:55 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-07-08 23:17:55 (GMT) |
commit | aa4a2e7991d22ac6c100c86fe8f2849644583052 (patch) | |
tree | a3dfebd14b56293c7e531057ac3671dcfc1a216e /tests/reg.test | |
parent | b1a20a87442e79d2a1b990695b056bc86dd72024 (diff) | |
download | tcl-aa4a2e7991d22ac6c100c86fe8f2849644583052.zip tcl-aa4a2e7991d22ac6c100c86fe8f2849644583052.tar.gz tcl-aa4a2e7991d22ac6c100c86fe8f2849644583052.tar.bz2 |
* win/Makefile.in: Added tcltest target so runtest works
properly. Added missing names to the clean/distclean targets.
* tests/reg.test:
* generic/rege_dfa.c: Applied fix supplied by Henry Spencer for
bug in DFA state caching under lookahead conditions. [Bug: 2318]
Diffstat (limited to 'tests/reg.test')
-rw-r--r-- | tests/reg.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/reg.test b/tests/reg.test index 4929279..3487f1d 100644 --- a/tests/reg.test +++ b/tests/reg.test @@ -6,7 +6,7 @@ # # Copyright (c) 1998, 1999 Henry Spencer. All rights reserved. # -# RCS: @(#) $Id: reg.test,v 1.8 1999/07/01 17:36:19 jenn Exp $ +# RCS: @(#) $Id: reg.test,v 1.9 1999/07/08 23:17:56 stanton Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -940,6 +940,8 @@ m 6 &M {[0-6][1-2][0-3][0-6][1-6][0-6]} 010010 010010 # temporary REG_BOSONLY kludge m 7 s abc abcd abc f 8 s abc xabcd +# back to normal stuff +m 9 HLP {(?n)^(?![t#])\S+} "tk\n\n#\n#\nit0" it0 |