From 1cab95c14dd56988030a6899ac8934aeab63affc Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 19 Jan 1992 16:31:57 +0000 Subject: Use Tatu Ylonen's copyleft-free reimplementation of GNU regular expressions --- Modules/regexmodule.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Modules/regexmodule.c b/Modules/regexmodule.c index fade99f..97578a0 100644 --- a/Modules/regexmodule.c +++ b/Modules/regexmodule.c @@ -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 */ -- cgit v0.12