summaryrefslogtreecommitdiff
path: root/nasmlib/nctype.c
diff options
context:
space:
mode:
Diffstat (limited to 'nasmlib/nctype.c')
-rw-r--r--nasmlib/nctype.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/nasmlib/nctype.c b/nasmlib/nctype.c
index b04f9d19..f30f37e0 100644
--- a/nasmlib/nctype.c
+++ b/nasmlib/nctype.c
@@ -101,6 +101,7 @@ static void ctype_tab_init(void)
nasm_ctype_tab['_'] |= NCT_UNDER|NCT_ID|NCT_IDSTART;
nasm_ctype_tab['.'] |= NCT_ID|NCT_IDSTART;
nasm_ctype_tab['@'] |= NCT_ID|NCT_IDSTART;
+ nasm_ctype_tab['?'] |= NCT_ID|NCT_IDSTART;
nasm_ctype_tab['#'] |= NCT_ID;
nasm_ctype_tab['~'] |= NCT_ID;
nasm_ctype_tab['\''] |= NCT_QUOTE;