diff options
author | Chris Watkins <chris.watkins88@gmail.com> | 2014-04-23 21:58:08 -0700 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-05-02 15:58:33 -0300 |
commit | cb5acb705aadb1bf3d240c1d3ad296bfc07789c8 (patch) | |
tree | 112a75f29ebd8a18323a80cc23dc1a5af01126f1 /src/buffer_defs.h | |
parent | 17d97e725a9eaeba2c8bb58399603ea0b0662570 (diff) | |
download | rneovim-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/buffer_defs.h')
-rw-r--r-- | src/buffer_defs.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/buffer_defs.h b/src/buffer_defs.h index 4de8bc8368..cbc8ab148c 100644 --- a/src/buffer_defs.h +++ b/src/buffer_defs.h @@ -596,9 +596,7 @@ struct file_buffer { char_u *b_p_qe; /* 'quoteescape' */ int b_p_ro; /* 'readonly' */ long b_p_sw; /* 'shiftwidth' */ -#ifndef SHORT_FNAME int b_p_sn; /* 'shortname' */ -#endif int b_p_si; /* 'smartindent' */ long b_p_sts; /* 'softtabstop' */ long b_p_sts_nopaste; /* b_p_sts saved for paste mode */ @@ -700,9 +698,7 @@ struct file_buffer { are not used! Use the B_SPELL macro to access b_spell without #ifdef. */ -#ifndef SHORT_FNAME int b_shortname; /* this file has an 8.3 file name */ -#endif synblock_T b_s; /* Info related to syntax highlighting. w_s * normally points to this, but some windows |