diff options
author | Seth Jackson <sethjackson@gmail.com> | 2015-12-14 17:45:35 -0500 |
---|---|---|
committer | Seth Jackson <sethjackson@gmail.com> | 2015-12-14 17:45:35 -0500 |
commit | e117544d7218e1b5418f7a6f4e27d3a9572a226a (patch) | |
tree | e97c1effdc62783ea6125acb0ed5b765f182d248 /src | |
parent | 77c0f9a62b4fd465ac9e37d0839695e100238a1c (diff) | |
download | rneovim-e117544d7218e1b5418f7a6f4e27d3a9572a226a.tar.gz rneovim-e117544d7218e1b5418f7a6f4e27d3a9572a226a.tar.bz2 rneovim-e117544d7218e1b5418f7a6f4e27d3a9572a226a.zip |
Windows: define FNAME_ILLEGAL.
Diffstat (limited to 'src')
-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 |