Use Tatu Ylonen's copyleft-free reimplementation of

GNU regular expressions
This commit is contained in:
Guido van Rossum 1992-01-19 16:31:57 +00:00
parent 44c8f69ff2
commit 1cab95c14d

View file

@ -29,12 +29,13 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
******************************************************************/
/* Regular expression objects */
/* This uses GNU regex.c, from subdirectory regex !!! */
/* This uses Tatu Ylonen's copyleft-free reimplementation of
GNU regular expressions */
#include "allobjects.h"
#include "modsupport.h"
#include "regex.h"
#include "regexpr.h"
static object *RegexError; /* Exception */