diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-16 14:47:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-16 14:47:36 +0200 |
commit | a06ecab7a5159e744448ace731036f0dc5f87dd4 (patch) | |
tree | 9474754ee4ef21fefea517d5fa2deae7c30c458d /src/ex_docmd.c | |
parent | bfafb4c4a01db3f8c508716daf689e0dfe92b649 (diff) | |
download | vim-a06ecab7a5159e744448ace731036f0dc5f87dd4.zip |
patch 7.4.2048
Problem: There is still code and help for unsupported systems.
Solution: Remove the code and text. (Hirohito Higashi)
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r-- | src/ex_docmd.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 646f7ec08..853a5977f 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -7713,11 +7713,7 @@ ex_shell(exarg_T *eap UNUSED) * list. This function takes over responsibility for freeing the list. * * XXX The list is made into the argument list. This is freed using - * FreeWild(), which does a series of vim_free() calls, unless the two defines - * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a - * routine _fnexplodefree() is used. This may cause problems, but as the drop - * file functionality is (currently) not in EMX this is not presently a - * problem. + * FreeWild(), which does a series of vim_free() calls. */ void handle_drop( @@ -7851,7 +7847,7 @@ alist_new(void) # endif #endif -#if (!defined(UNIX) && !defined(__EMX__)) || defined(PROTO) +#if !defined(UNIX) || defined(PROTO) /* * Expand the file names in the global argument list. * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer |