aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-01-16 14:56:04 +0100
committerMarc André Tanner <mat@brain-dump.org>2017-01-16 14:56:04 +0100
commit06fe6bc8d437a59d2aa6b1de43f72afd5578fab3 (patch)
tree99afa95bdb5dfba8999576178d42064b6841cd60
parent9fd92b6534eb7a48dca82bcd24635649a504131a (diff)
downloadvis-06fe6bc8d437a59d2aa6b1de43f72afd5578fab3.tar.gz
vis-06fe6bc8d437a59d2aa6b1de43f72afd5578fab3.tar.xz
vis: cleanup regex header inclusion
-rw-r--r--text-regex.c1
-rw-r--r--view.c1
-rw-r--r--vis-core.h1
-rw-r--r--vis-motions.c1
-rw-r--r--vis.c1
5 files changed, 0 insertions, 5 deletions
diff --git a/text-regex.c b/text-regex.c
index 439c24a..b0549b6 100644
--- a/text-regex.c
+++ b/text-regex.c
@@ -1,6 +1,5 @@
#include <stdlib.h>
#include <string.h>
-#include <regex.h>
#include "text-regex.h"
diff --git a/view.c b/view.c
index 1d0e062..75f288a 100644
--- a/view.c
+++ b/view.c
@@ -3,7 +3,6 @@
#include <wchar.h>
#include <ctype.h>
#include <errno.h>
-#include <regex.h>
#include <limits.h>
#include "view.h"
#include "text.h"
diff --git a/vis-core.h b/vis-core.h
index bb20746..b5a44ff 100644
--- a/vis-core.h
+++ b/vis-core.h
@@ -7,7 +7,6 @@
#include "vis-lua.h"
#include "register.h"
#include "text.h"
-#include "text-regex.h"
#include "map.h"
#include "ring-buffer.h"
#include "array.h"
diff --git a/vis-motions.c b/vis-motions.c
index 8b49759..82b48f3 100644
--- a/vis-motions.c
+++ b/vis-motions.c
@@ -1,6 +1,5 @@
#include <stdio.h>
#include <string.h>
-#include <regex.h>
#include "vis-core.h"
#include "text-motions.h"
#include "text-objects.h"
diff --git a/vis.c b/vis.c
index 94ea2e4..f3ab4f6 100644
--- a/vis.c
+++ b/vis.c
@@ -10,7 +10,6 @@
#include <limits.h>
#include <ctype.h>
#include <time.h>
-#include <regex.h>
#include <sys/select.h>
#include <sys/types.h>
#include <sys/wait.h>