summaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-23 14:53:34 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-23 14:53:34 +0100
commit48e330aff911be1c798c88a973af6437a8141fce (patch)
tree4945b46753c6220ae5e8cd406d139e5640bd39c4 /src/buffer.c
parent4e221c99e85ed40c98892068a01270b9e7492d98 (diff)
patch 7.4.1399v7.4.1399
Problem: The MS-DOS code does not build. Solution: Remove the old MS-DOS code.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 9f61eefd1c..89dedc58f9 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -541,9 +541,7 @@ buf_clear_file(buf_T *buf)
{
buf->b_ml.ml_line_count = 1;
unchanged(buf, TRUE);
-#ifndef SHORT_FNAME
buf->b_shortname = FALSE;
-#endif
buf->b_p_eol = TRUE;
buf->b_start_eol = TRUE;
#ifdef FEAT_MBYTE
@@ -2911,9 +2909,7 @@ setfname(
}
#endif
-#ifndef SHORT_FNAME
buf->b_shortname = FALSE;
-#endif
buf_name_changed(buf);
return OK;
@@ -4480,7 +4476,7 @@ fix_fname(char_u *fname)
# ifdef BACKSLASH_IN_FILENAME
|| strstr((char *)fname, "\\\\") != NULL
# endif
-# if defined(MSWIN) || defined(DJGPP)
+# if defined(MSWIN)
|| vim_strchr(fname, '~') != NULL
# endif
)