diff options
author | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2014-02-28 01:35:53 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-28 06:43:20 -0300 |
commit | 410f0a27c5dbd28a48d43af360c23c03ca088f6c (patch) | |
tree | 4d2454a3af3b77c0adb4185682b2cb41b6afb199 /src/regexp.c | |
parent | 79882bc7bdcb7de8827cb08187ea6252f4d1fd6e (diff) | |
download | rneovim-410f0a27c5dbd28a48d43af360c23c03ca088f6c.tar.gz rneovim-410f0a27c5dbd28a48d43af360c23c03ca088f6c.tar.bz2 rneovim-410f0a27c5dbd28a48d43af360c23c03ca088f6c.zip |
Extract garray.c from misc2.c
Start to split misc2.c in many other files (see #209).
Diffstat (limited to 'src/regexp.c')
-rw-r--r-- | src/regexp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/regexp.c b/src/regexp.c index 3641f16cdb..c325a7d129 100644 --- a/src/regexp.c +++ b/src/regexp.c @@ -54,6 +54,7 @@ #include "message.h" #include "misc1.h" #include "misc2.h" +#include "garray.h" #ifdef REGEXP_DEBUG /* show/save debugging data when BT engine is used */ |