diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-12-14 23:27:27 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-12-14 23:27:27 -0500 |
commit | 1946f96a16be42be3478c76585a25f08babb38df (patch) | |
tree | e97c1effdc62783ea6125acb0ed5b765f182d248 | |
parent | 77c0f9a62b4fd465ac9e37d0839695e100238a1c (diff) | |
parent | e117544d7218e1b5418f7a6f4e27d3a9572a226a (diff) | |
download | rneovim-1946f96a16be42be3478c76585a25f08babb38df.tar.gz rneovim-1946f96a16be42be3478c76585a25f08babb38df.tar.bz2 rneovim-1946f96a16be42be3478c76585a25f08babb38df.zip |
Merge pull request #3841 from sethjackson/fname-illegal
Windows: define FNAME_ILLEGAL
-rw-r--r-- | src/nvim/os/win_defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/os/win_defs.h b/src/nvim/os/win_defs.h index 32960dfbe9..6003d46d96 100644 --- a/src/nvim/os/win_defs.h +++ b/src/nvim/os/win_defs.h @@ -6,6 +6,8 @@ #define TEMP_DIR_NAMES {"$TMP", "$TEMP", "$USERPROFILE", ""} #define TEMP_FILE_PATH_MAXLEN _MAX_PATH +#define FNAME_ILLEGAL "\"*?><|" + #define USE_CRNL #ifdef _MSC_VER |