* mu: (re)add special handling for '$' (fixes #193)
This commit is contained in:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user