projects
/
sasm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f6717a
)
Convert \t in strings
master
author
Robert Pengelly
<robertapengelly@hotmail.com>
Wed, 17 Sep 2025 18:57:20 +0000
(19:57 +0100)
committer
Robert Pengelly
<robertapengelly@hotmail.com>
Wed, 17 Sep 2025 18:57:20 +0000
(19:57 +0100)
kwd.c
patch
|
blob
|
history
diff --git
a/kwd.c
b/kwd.c
index 9106e3943ea4610fe745c24f035e714b05005551..9f010f470fafad65f362e30e556fb16d517eb504 100644
(file)
--- 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 '"':