Merge remote branch 'origin/1903_fish_quote_escape'

* origin/1903_fish_quote_escape:
  Ticket: #1903: fish: mc hangs on any operation with files containing "'"(quote)
This commit is contained in:
Sergei Trofimovich 2009-12-26 23:28:48 +02:00
commit 5e9729e05b

View File

@ -37,7 +37,7 @@
/*** file scope variables ************************************************************************/ /*** 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_REGEX_CHARS[] = "^!#$%()&{}[]`?|<>;*.\\";
static const char ESCAPE_GLOB_CHARS[] = "$*\\"; static const char ESCAPE_GLOB_CHARS[] = "$*\\";