[Nasm-commits] [nasm:preproc-rewrite] preproc.c: deprecated implicit/automatic context-local label expansion to outer contexts

nasm-bot for Keith Kanios keith at kanios.net
Thu Jun 4 19:56:31 PDT 2020


Commit-ID:  3085f73f85fd07a975efc152cf31373d282c4039
Gitweb:     http://repo.or.cz/w/nasm.git?a=commitdiff;h=3085f73f85fd07a975efc152cf31373d282c4039
Author:     Keith Kanios <keith at kanios.net>
AuthorDate: Mon, 9 Aug 2010 22:47:16 -0500
Committer:  Keith Kanios <keith at kanios.net>
CommitDate: Mon, 9 Aug 2010 22:47:16 -0500

preproc.c: deprecated implicit/automatic context-local label expansion to outer contexts



---
 preproc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/preproc.c b/preproc.c
index bdaf45dc..c6ee4bd6 100644
--- a/preproc.c
+++ b/preproc.c
@@ -4307,7 +4307,7 @@ again:
             if (tline->type == TOK_ID) {
                 head = (SMacro *)hash_findix(&smacros, mname);
             } else if (tline->type == TOK_PREPROC_ID) {
-                ctx = get_ctx(mname, &mname, true);
+                ctx = get_ctx(mname, &mname, false);
                 head = ctx ? (SMacro *)hash_findix(&ctx->localmac, mname) : NULL;
             } else
                 head = NULL;


More information about the Nasm-commits mailing list