forked from aniani/vim
patch 8.2.3530: ":buf \{a}" fails while ":edit \{a}" works
Problem: ":buf \{a}" fails while ":edit \{a}" works. Solution: Unescape "\{". (closes #8917)
This commit is contained in:
@@ -43,7 +43,7 @@ ses_put_fname(FILE *fd, char_u *name, unsigned *flagp)
|
||||
}
|
||||
|
||||
// escape special characters
|
||||
p = vim_strsave_fnameescape(sname, FALSE);
|
||||
p = vim_strsave_fnameescape(sname, VSE_NONE);
|
||||
vim_free(sname);
|
||||
if (p == NULL)
|
||||
return FAIL;
|
||||
|
Reference in New Issue
Block a user