diff --git a/src/apps/text_search/Grepper.cpp b/src/apps/text_search/Grepper.cpp index 7cf235b637..e844c029bc 100644 --- a/src/apps/text_search/Grepper.cpp +++ b/src/apps/text_search/Grepper.cpp @@ -302,7 +302,8 @@ Grepper::_SetPattern(const char* src) || (c == '?') || (c == '*') || (c == '+') || (c == '-') || (c == ':') || (c == '^') - || (c == '\'') || (c == '"')) { + || (c == '\'') || (c == '"') + || (c == '`')) { *dstPtr++ = '\\'; } else if ((c == '\\') || (c == '$')) { // Some characters need to be escaped