Ticket #1545: Don't escape tilde on cmdline, this is not necessary.

Signed-off-by: Patrick Winnertz <winnie@debian.org>
This commit is contained in:
Patrick Winnertz 2009-08-19 22:10:33 +02:00
parent 79e45c9770
commit 83ad350b69

View File

@ -37,8 +37,8 @@
/*** 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[] = "$*\\";
/*** file scope functions ************************************************************************/ /*** file scope functions ************************************************************************/