Browse Source

Escape exclamation symbol

git-svn-id: https://klish.googlecode.com/svn/trunk@541 0eaa4687-2ee9-07dd-09d9-bcdd2d2dd5fb
Serj Kalichev 12 years ago
parent
commit
a01b2306bc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lub/string/string_escape.c

+ 1 - 1
lub/string/string_escape.c

@@ -6,7 +6,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-const char *lub_string_esc_default = "`|$<>&()#;\\\"";
+const char *lub_string_esc_default = "`|$<>&()#;\\\"!";
 const char *lub_string_esc_regex = "^$.*+[](){}";
 const char *lub_string_esc_quoted = "\\\"";