aboutsummaryrefslogtreecommitdiff
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorChris Watkins <chris.watkins88@gmail.com>2014-04-23 21:58:08 -0700
committerThiago de Arruda <tpadilha84@gmail.com>2014-05-02 15:58:33 -0300
commitcb5acb705aadb1bf3d240c1d3ad296bfc07789c8 (patch)
tree112a75f29ebd8a18323a80cc23dc1a5af01126f1 /src/ex_cmds.c
parent17d97e725a9eaeba2c8bb58399603ea0b0662570 (diff)
downloadrneovim-cb5acb705aadb1bf3d240c1d3ad296bfc07789c8.tar.gz
rneovim-cb5acb705aadb1bf3d240c1d3ad296bfc07789c8.tar.bz2
rneovim-cb5acb705aadb1bf3d240c1d3ad296bfc07789c8.zip
Remove checks for SHORT_FNAME and USE_LONG_FNAME.
They were only defined for MSDOS which is now unsupported.
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 26e965cf0b..8664a3c6d0 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -1579,11 +1579,7 @@ void write_viminfo(char_u *file, int forceit)
#ifdef UNIX
shortname,
#else
-# ifdef SHORT_FNAME
- TRUE,
-# else
FALSE,
-# endif
#endif
fname,
(char_u *)".tmp",
@@ -2659,9 +2655,6 @@ do_ecmd (
if (sfname == NULL)
sfname = ffname;
#ifdef USE_FNAME_CASE
-# ifdef USE_LONG_FNAME
- if (USE_LONG_FNAME)
-# endif
if (sfname != NULL)
fname_case(sfname, 0); /* set correct case for sfname */
#endif