summaryrefslogtreecommitdiffstats
path: root/Modules/regexmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/regexmodule.c')
-rw-r--r--Modules/regexmodule.c5
1 files 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 */