Skip to content
Snippets Groups Projects
Commit 44e65669 authored by Suvendhu Hansa's avatar Suvendhu Hansa :speech_balloon:
Browse files

Remove non-control characters check

parent 380ed6c1
Branches
Tags
1 merge request!26Remove non-control characters check
Pipeline #126505 passed
...@@ -46,10 +46,7 @@ static bool is_escape_char(char c) ...@@ -46,10 +46,7 @@ static bool is_escape_char(char c)
c == '\t' || c == '\t' ||
c == '\v' || c == '\v' ||
c == '\r' || c == '\r' ||
c == '\n' || c == '\n')
c == '\\' ||
c == '&' ||
c == ';')
return true; return true;
return false; return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment