diff options
author | Thomas Wienecke <wienecke.t@gmail.com> | 2014-02-25 20:50:23 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-25 18:59:22 -0300 |
commit | 8437a4c9724f17824c9043afc27288013d096649 (patch) | |
tree | bc2f50c4ff98ea32760537a781c4e1a7bbcd23f7 /src/syntax.c | |
parent | 60280ffa1095cf62e9c4892177c1ccc47db4f8f8 (diff) | |
download | rneovim-8437a4c9724f17824c9043afc27288013d096649.tar.gz rneovim-8437a4c9724f17824c9043afc27288013d096649.tar.bz2 rneovim-8437a4c9724f17824c9043afc27288013d096649.zip |
os_unix: Port mch_FullName and mch_isFullName to libuv.
Basically just delete conditional use of fchdir, since the other called
mch_* functions are already ported to libuv.
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/syntax.c b/src/syntax.c index c600b2f2a1..e576185b7d 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -12,6 +12,7 @@ */ #include "vim.h" +#include "os/os.h" /* * Structure that stores information about a highlight group. |