* fix matching backslashes, add some tests

This commit is contained in:
djcb
2013-05-27 05:49:43 -07:00
parent bdf7ca65c7
commit e97ec2d51c
4 changed files with 6 additions and 0 deletions

View File

@ -303,6 +303,8 @@ mu_str_esc_to_list (const char *strings)
kar = strings[u];
if (kar == '\\') {
if (escaped)
g_string_append_c (part, '\\');
escaped = !escaped;
continue;
}