[nasm:master] nasm.h: fix comment for TOKEN_PREPROC_SQQ

nasm-bot for H. Peter Anvin (Intel) hpa at zytor.com
Tue Aug 25 17:39:03 PDT 2020


Commit-ID:  515f4242963a0bd4322fc40ec9d8708bd470d849
Gitweb:     http://repo.or.cz/w/nasm.git?a=commitdiff;h=515f4242963a0bd4322fc40ec9d8708bd470d849
Author:     H. Peter Anvin (Intel) <hpa at zytor.com>
AuthorDate: Tue, 25 Aug 2020 17:38:31 -0700
Committer:  H. Peter Anvin (Intel) <hpa at zytor.com>
CommitDate: Tue, 25 Aug 2020 17:38:31 -0700

nasm.h: fix comment for TOKEN_PREPROC_SQQ

This token is %*?? not %*?

Signed-off-by: H. Peter Anvin (Intel) <hpa at zytor.com>


---
 include/nasm.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/nasm.h b/include/nasm.h
index 7532b5e2..98d92662 100644
--- a/include/nasm.h
+++ b/include/nasm.h
@@ -251,7 +251,7 @@ enum token_type { /* token types, other than chars */
     TOKEN_PREPROC_Q,       /* %? */
     TOKEN_PREPROC_QQ,      /* %?? */
     TOKEN_PREPROC_SQ,      /* %*? */
-    TOKEN_PREPROC_SQQ,     /* %*? */
+    TOKEN_PREPROC_SQQ,     /* %*?? */
     TOKEN_PASTE,           /* %+ */
     TOKEN_COND_COMMA,      /* %, */
     TOKEN_INDIRECT,        /* %[...] */


More information about the Nasm-commits mailing list