From 7c047df78502d53411fef09c6e39540d2b7e796a Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 27 Apr 2021 16:24:24 +0200 Subject: Fixed some overflows and enabled live parsing --- src/syntax.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/syntax.c') 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; -- cgit v1.2.3