0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.1.0219: expanding ## fails to escape backtick

Problem:    Expanding ## fails to escape backtick.
Solution:   Escape a backtick in a file name. (closes #3257)
This commit is contained in:
Bram Moolenaar
2018-07-28 17:07:52 +02:00
parent 95e51470f1
commit 2c8c681bfc
3 changed files with 11 additions and 1 deletions

View File

@@ -10954,7 +10954,7 @@ arg_all(void)
#ifndef BACKSLASH_IN_FILENAME
|| *p == '\\'
#endif
)
|| *p == '`')
{
/* insert a backslash */
if (retval != NULL)