* mu: (re)add special handling for '$' (fixes #193)

This commit is contained in:
djcb
2013-04-28 21:54:25 +03:00
parent 85fb0e14ef
commit 7d48ed53a7
4 changed files with 7 additions and 2 deletions

View File

@ -467,6 +467,7 @@ is_xapian_special_char (char c)
case ':':
case '(':
case ')':
case '$':
case '"':
case '\\':
case '\'':
@ -534,6 +535,7 @@ mu_str_xapian_escape_in_place_try (char *term, gboolean esc_space, GStringChunk
case '[':
case ']':
case '+':
case '$':
case '\\':
case '-':
*cur = ESC_CHAR;