Macro cleanup: SPACE_IN_FILENAME

This commit is contained in:
Michael Reed 2015-02-03 20:18:00 -05:00 committed by Justin M. Keyes
parent 357583ff8c
commit c5c3eb99d3

View File

@ -2574,12 +2574,10 @@ set_one_cmd_context (
}
/* An argument can contain just about everything, except
* characters that end the command and white space. */
else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
#ifdef SPACE_IN_FILENAME
&& (!(ea.argt & NOSPC) ||
usefilter)
#endif
)) {
else if (c == '|'
|| c == '\n'
|| c == '"'
|| vim_iswhite(c)) {
len = 0; /* avoid getting stuck when space is in 'isfname' */
while (*p != NUL) {
if (has_mbyte)