Browse Source

Add single quote to default_escaping

git-svn-id: https://klish.googlecode.com/svn/trunk@538 0eaa4687-2ee9-07dd-09d9-bcdd2d2dd5fb
Serj Kalichev 12 years ago
parent
commit
64586cd39f
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 = "\\\"";