diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2015-03-01 16:36:10 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-03-08 21:54:57 -0400 |
commit | 4f92178a7597f0478f306086933a163109ee894c (patch) | |
tree | ff9663b78d4015159dbfffb39b27b4441fd225cf /src/nvim/buffer.c | |
parent | d2e13d3b3dab18555fa319db4960b8acdb09d6ae (diff) | |
download | rneovim-4f92178a7597f0478f306086933a163109ee894c.tar.gz rneovim-4f92178a7597f0478f306086933a163109ee894c.tar.bz2 rneovim-4f92178a7597f0478f306086933a163109ee894c.zip |
config: split out versiondef.h from config.h
This avoids recompiling every c file after comitting.
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index fa25b68641..5246b10dbb 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -4033,7 +4033,7 @@ void do_modelines(int flags) --entered; } -#include "nvim/version_defs.h" /* for version number */ +#include "nvim/version.h" /* for version number */ /* * chk_modeline() - check a single line for a mode string |