From 8129933ca51caf788e0cd7c5fdbcb43fdc64601d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Sun, 19 Jul 2015 13:55:50 +0200 Subject: text: move regex related functions to separate file Eventually this should probably be rewritten to use an iternal regex engine, currently it has unacceptable memory usage, it copies the whole text. --- editor.h | 1 + 1 file changed, 1 insertion(+) (limited to 'editor.h') diff --git a/editor.h b/editor.h index a2ab3f5..76a3136 100644 --- a/editor.h +++ b/editor.h @@ -17,6 +17,7 @@ typedef struct Win Win; #include "syntax.h" #include "ring-buffer.h" #include "map.h" +#include "text-regex.h" typedef union { bool b; -- cgit v1.2.3