1
1

Merge branch '1540_tab_expansion_of_tilde'

* 1540_tab_expansion_of_tilde:
  Ticket #1545: Don't escape tilde on cmdline, this is not necessary.
Этот коммит содержится в:
Patrick Winnertz 2009-08-20 10:12:59 +02:00
родитель 497af7820e 83ad350b69
Коммит 93a95a1040

Просмотреть файл

@ -37,8 +37,8 @@
/*** file scope variables ************************************************************************/
static const char ESCAPE_SHELL_CHARS[] = " !#$%()&~{}[]`?|<>;*\\\"";
static const char ESCAPE_REGEX_CHARS[] = "^!#$%()&~{}[]`?|<>;*.\\";
static const char ESCAPE_SHELL_CHARS[] = " !#$%()&{}[]`?|<>;*\\\"";
static const char ESCAPE_REGEX_CHARS[] = "^!#$%()&{}[]`?|<>;*.\\";
static const char ESCAPE_GLOB_CHARS[] = "$*\\";
/*** file scope functions ************************************************************************/