mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-23 11:42:09 +03:00
Ticket: #1903: fish: mc hangs on any operation with files containing "'"(quote)
During last major escape transition "foo" -> properly_escaped_foo we forgot to add "'" to list of specialcased symbols. This leads to mc hangup when you try to do something with files/dirs, containing that symbol. Adding it! Signed-off-by: Sergei Trofimovich <slyfox@inbox.ru>
This commit is contained in:
parent
051bb3b571
commit
80fc7fe9ed
@ -37,7 +37,7 @@
|
||||
|
||||
/*** file scope variables ************************************************************************/
|
||||
|
||||
static const char ESCAPE_SHELL_CHARS[] = " !#$%()&{}[]`?|<>;*\\\"";
|
||||
static const char ESCAPE_SHELL_CHARS[] = " !#$%()&{}[]`?|<>;*\\\"'";
|
||||
static const char ESCAPE_REGEX_CHARS[] = "^!#$%()&{}[]`?|<>;*.\\";
|
||||
static const char ESCAPE_GLOB_CHARS[] = "$*\\";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user