aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os
diff options
context:
space:
mode:
authorRui Abreu Ferreira <raf-ep@gmx.com>2015-05-17 18:48:47 +0100
committerSeth Jackson <sethjackson@gmail.com>2016-01-01 20:58:04 -0500
commitb2f9bfbff0ba9925328d2f997f73734f70c6c4cf (patch)
tree45ce1fb76eb3e97d9cb2e57753859fcc57d40ada /src/nvim/os
parent4d27bd6bfee8eef32408b14aa2b6f08ee902d6e7 (diff)
downloadrneovim-b2f9bfbff0ba9925328d2f997f73734f70c6c4cf.tar.gz
rneovim-b2f9bfbff0ba9925328d2f997f73734f70c6c4cf.tar.bz2
rneovim-b2f9bfbff0ba9925328d2f997f73734f70c6c4cf.zip
Windows: Bring back code branch for if_cscope.
The Vim code for windows in if_cscope.c/.h was removed during the refactor, added missing code for error_closing().
Diffstat (limited to 'src/nvim/os')
-rw-r--r--src/nvim/os/os_defs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/os/os_defs.h b/src/nvim/os/os_defs.h
index 7d77899287..26e479492e 100644
--- a/src/nvim/os/os_defs.h
+++ b/src/nvim/os/os_defs.h
@@ -57,6 +57,9 @@
#if !defined(S_ISREG) && defined(S_IFREG)
# define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
#endif
+#if !defined(S_ISLNK) && defined(S_IFLNK)
+# define S_IFLNK(m) (((m) & S_IFMT) == S_IFLNK)
+#endif
#if !defined(S_ISBLK) && defined(S_IFBLK)
# define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
#endif