diff options
author | Marvin Borner | 2021-04-27 16:24:24 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-27 16:24:24 +0200 |
commit | 7c047df78502d53411fef09c6e39540d2b7e796a (patch) | |
tree | 00a72bb40f81e7294cb1dde776159ed219ee4967 /src/syntax.c | |
parent | 60e7b5069d5936546356053f85008a5a02bb473a (diff) |
Fixed some overflows and enabled live parsing
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c index 4367394..8dbc16f 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -38,9 +38,8 @@ static void syntax_highlight_line(struct pos *pos, char *str, u32 size) if (tok.type > INSTR_START && tok.type < INSTR_END) gui_highlight(pos->x, pos->y, tok.length, "instr"); - else if (tok.type > REGS_START && tok.type < REGS_END) { + else if (tok.type > REGS_START && tok.type < REGS_END) gui_highlight(pos->x, pos->y, tok.length, "regs"); - } pos->x += tok.length; } @@ -48,6 +47,7 @@ static void syntax_highlight_line(struct pos *pos, char *str, u32 size) void syntax_highlight(char *buf, u32 size) { + return; struct pos pos = { 0 }; u32 diff = 0; |