summaryrefslogtreecommitdiffstats
path: root/generic/regcomp.c
Commit message (Collapse)AuthorAgeFilesLines
* * generic/tcl.h: Moved Tcl_Mutex, etc. macros above the inclusionstanton1999-03-091-0/+2
| | | | | | | | | | | | | | | | | | | | of tclDecls.h to avoid macro conflicts. * generic/tclInt.h: * generic/regc_color.c: * generic/regcomp.c: * generic/tclCmdIL.c: * generic/tclCmdAH.c: * generic/tclIOCmd.c: * generic/tclParse.c: * generic/tclStringObj.c: * unix/tclUnixNotfy.c: Cleaned up various compiler warnings, eliminated UCHAR bugs. * unix/tclUnixNotfy.c: * unix/tclUnixThrd.c: * generic/tclThreadTest.c: * mac/tclMacThrd.c: Changed TclpCondition*() to Tcl_Condition*().
* lintstanton1998-12-101-0/+14
|
* release lintstanton1998-12-101-9/+2
|
* * generic/regcomp.c (makescan): Fixed bug in longest match casestanton1998-12-091-18/+17
| | | | that caused anchored patterns to fail. [Bug: 897]
* lintstanton1998-11-181-1/+1
|
* integrated latest changes from Henry Spencer, mostly performance improvementsstanton1998-11-171-5/+75
| | | | | renamed re_u* interfaces to TclRe* to avoid conflicts with other software that uses the regular expression library
* integrated latest regexp updates from Henry Spencer, includes newstanton1998-11-111-917/+788
| | | | | regexp switches "-line", "-lineanchor", and "-linestop" for controlling newline behavior
* Merged Henry's latest changes to add support for character rangesstanton1998-11-041-17/+55
| | | | | | | | | | | | | | | | in cvec data type Added support for Unicode character classes in regular expressions We now support the following character classes: alnum, alpha, blank, cntrl, digit, graph, lower, print, punct, space, upper, xdigit These all follow the example set by the GNU regular expression package for Java except that "digit" only matches the ASCII '0'-'9' characters. Renamed tclUtf.h to tclUniData.c
* Integrated latest regexp changes from Henry Spencer.stanton1998-10-211-0/+2137
Moved regexp related declarations out of tclInt.h and into tclRegexp.h. Added "encoding" command.