mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
commit
84281bf675
@ -8283,16 +8283,22 @@ static char_u *arg_all(void)
|
||||
retval[len] = ' ';
|
||||
++len;
|
||||
}
|
||||
for (; *p != NUL; ++p) {
|
||||
if (*p == ' ' || *p == '\\') {
|
||||
/* insert a backslash */
|
||||
if (retval != NULL)
|
||||
for (; *p != NUL; p++) {
|
||||
if (*p == ' '
|
||||
#ifndef BACKSLASH_IN_FILENAME
|
||||
|| *p == '\\'
|
||||
#endif
|
||||
) {
|
||||
// insert a backslash
|
||||
if (retval != NULL) {
|
||||
retval[len] = '\\';
|
||||
++len;
|
||||
}
|
||||
len++;
|
||||
}
|
||||
if (retval != NULL)
|
||||
if (retval != NULL) {
|
||||
retval[len] = *p;
|
||||
++len;
|
||||
}
|
||||
len++;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -551,7 +551,7 @@ static int included_patches[] = {
|
||||
740,
|
||||
739,
|
||||
// 738 NA
|
||||
// 737,
|
||||
737,
|
||||
736,
|
||||
// 735 NA
|
||||
// 734,
|
||||
|
Loading…
Reference in New Issue
Block a user