aboutsummaryrefslogtreecommitdiff
path: root/text.c
diff options
context:
space:
mode:
Diffstat (limited to 'text.c')
-rw-r--r--text.c18
1 files changed, 15 insertions, 3 deletions
diff --git a/text.c b/text.c
index 399fa4b..f2ecce8 100644
--- a/text.c
+++ b/text.c
@@ -13,13 +13,25 @@
#include <sys/stat.h>
#include <sys/mman.h>
-#include "text.h"
-#include "text-util.h"
-#include "text-motions.h"
#include "util.h"
+
#include "array.h"
+
+#include "text.h"
#include "text-internal.h"
+#include "text-common.c"
+#include "text-io.c"
+#include "text-iterator.c"
+#include "text-motions.c"
+#include "text-objects.c"
+#if CONFIG_TRE
+ #include "text-regex-tre.c"
+#else
+ #include "text-regex.c"
+#endif
+#include "text-util.c"
+
/* A piece holds a reference (but doesn't itself store) a certain amount of data.
* All active pieces chained together form the whole content of the document.
* At the beginning there exists only one piece, spanning the whole document.