diff options
author | Chris Watkins <chris.watkins88@gmail.com> | 2014-04-22 22:49:52 -0700 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-28 07:43:57 -0300 |
commit | 9da32a1f78fe075663466ac1349cb1495420591f (patch) | |
tree | 2b41897e8d906d1061b84ecf3dbe6b35926ec55c /src/charset.c | |
parent | 4e1b364a3e255742522d4d76c5ccddd7a36c1769 (diff) | |
download | rneovim-9da32a1f78fe075663466ac1349cb1495420591f.tar.gz rneovim-9da32a1f78fe075663466ac1349cb1495420591f.tar.bz2 rneovim-9da32a1f78fe075663466ac1349cb1495420591f.zip |
Remove code and checks for unsupported systems.
Remove remnants of support for systems including
__EMX__, MSDOS, OS2, AMIGA and MORPHOS.
Diffstat (limited to 'src/charset.c')
-rw-r--r-- | src/charset.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/charset.c b/src/charset.c index 8daac20f02..89ce5d38eb 100644 --- a/src/charset.c +++ b/src/charset.c @@ -1860,7 +1860,7 @@ int hexhex2nr(char_u *p) // && defined(FEAT_WINDOWS)) || defined(PROTO) /// Return TRUE if "str" starts with a backslash that should be removed. -/// For MS-DOS, WIN32 and OS/2 this is only done when the character after the +/// For WIN32 this is only done when the character after the /// backslash is not a normal file name character. /// '$' is a valid file name character, we don't remove the backslash before /// it. This means it is not possible to use an environment variable after a @@ -1891,8 +1891,6 @@ int rem_backslash(char_u *str) } /// Halve the number of backslashes in a file name argument. -/// For MS-DOS we only do this if the character after the backslash -/// is not a normal file character. /// /// @param p void backslash_halve(char_u *p) |