From: Robert Pengelly Date: Wed, 17 Sep 2025 18:57:20 +0000 (+0100) Subject: Convert \t in strings X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=f87c63c3f74c5e2f95572fd65a1e70030429259c;p=sasm.git Convert \t in strings --- diff --git a/kwd.c b/kwd.c index 9106e39..9f010f4 100644 --- a/kwd.c +++ b/kwd.c @@ -93,6 +93,11 @@ static int read_character (const char *start, char **pp, unsigned long *val) { *val = 10; break; + case 't': + + *val = 9; + break; + case '\\': case '"':