Remove checks for SHORT_FNAME and USE_LONG_FNAME.

They were only defined for MSDOS which is now unsupported.
This commit is contained in:
Chris Watkins
2014-04-23 21:58:08 -07:00
committed by Thiago de Arruda
parent 17d97e725a
commit cb5acb705a
8 changed files with 12 additions and 105 deletions

View File

@@ -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