aboutsummaryrefslogtreecommitdiff
path: root/src/regexp_defs.h
diff options
context:
space:
mode:
authorFelipe Oliveira Carvalho <felipekde@gmail.com>2014-03-08 17:32:02 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-03-09 09:37:00 -0300
commitbd9cd693e765eebe243a91185a5aaf26e41e98f3 (patch)
treea1eaf8bad5418251d6b372f003431fd000cf42ae /src/regexp_defs.h
parentb33096127c6293fc43d1e60f55a74c10d1d0889f (diff)
downloadrneovim-bd9cd693e765eebe243a91185a5aaf26e41e98f3.tar.gz
rneovim-bd9cd693e765eebe243a91185a5aaf26e41e98f3.tar.bz2
rneovim-bd9cd693e765eebe243a91185a5aaf26e41e98f3.zip
Extract pos.h from structs.h
This will make it much simpler to move the other types in structs.h which depend on `pos_T` and `lpos_T`.
Diffstat (limited to 'src/regexp_defs.h')
-rw-r--r--src/regexp_defs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/regexp_defs.h b/src/regexp_defs.h
index 0426f242a4..e7dd39dade 100644
--- a/src/regexp_defs.h
+++ b/src/regexp_defs.h
@@ -13,6 +13,8 @@
#ifndef _REGEXP_H
#define _REGEXP_H
+#include "pos.h"
+
/*
* The number of sub-matches is limited to 10.
* The first one (index 0) is the whole match, referenced with "\0".