summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Kanios <keith@kanios.net>2010-08-09 22:47:16 -0500
committerKeith Kanios <keith@kanios.net>2010-08-09 22:47:16 -0500
commit3085f73f85fd07a975efc152cf31373d282c4039 (patch)
tree58bbb29e4f21c3305d7120f5549325fc4843b4cf
parent09b2a4e3df4728349446bdc3dd686ab8cc3d7b60 (diff)
downloadnasm-3085f73f85fd07a975efc152cf31373d282c4039.tar.gz
preproc.c: deprecated implicit/automatic context-local label expansion to outer contexts
-rw-r--r--preproc.c2
1 files changed, 1 insertions, 1 deletions
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;