summaryrefslogtreecommitdiff
path: root/syntax.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-02-03 22:08:14 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-02-03 22:08:14 -0500
commit4007253649425ff37a503ea77cff2155ab9814ef (patch)
tree72cd40904068ee552def13ad3e99e59ed35e2748 /syntax.c
parenta566e529522940f011aa1fa08d44753b6bea9562 (diff)
fixed command line argument with / in it windows
Diffstat (limited to 'syntax.c')
-rw-r--r--syntax.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/syntax.c b/syntax.c
index 635beea..5d83cdb 100644
--- a/syntax.c
+++ b/syntax.c
@@ -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;