diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-03 22:08:14 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-03 22:08:14 -0500 |
commit | 4007253649425ff37a503ea77cff2155ab9814ef (patch) | |
tree | 72cd40904068ee552def13ad3e99e59ed35e2748 /syntax.c | |
parent | a566e529522940f011aa1fa08d44753b6bea9562 (diff) |
fixed command line argument with / in it windows
Diffstat (limited to 'syntax.c')
-rw-r--r-- | syntax.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -418,7 +418,6 @@ static void syntax_highlight_python(SyntaxState *state, char32_t *line, u32 line break; case '\'': case '"': { - // @TODO: multi-line strings bool dbl_quoted = c == '"'; bool is_triple = i < line_len - 2 && line[i+1] == c && line[i+2] == c; |