projects
/
platform
/
upstream
/
nasm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5eaff1d
)
preproc.c: fix handling of %? and %??
author
Keith Kanios
<keith@kanios.net>
Sat, 13 Nov 2010 15:34:34 +0000
(09:34 -0600)
committer
Keith Kanios
<keith@kanios.net>
Sat, 13 Nov 2010 15:34:34 +0000
(09:34 -0600)
preproc.c
patch
|
blob
|
history
diff --git
a/preproc.c
b/preproc.c
index a572ab39961203f154d5634b5be313158d9b27d2..64daa40e7431bba935948c4b2ebceb6f9735b0ea 100644
(file)
--- a/
preproc.c
+++ b/
preproc.c
@@
-1352,7
+1352,7
@@
static char *detoken(Token * tlist, bool expand_locals)
}
/* Expand %? and %?? directives */
- if (
expand_locals &&
(istk->expansion != NULL) &&
+ if ((istk->expansion != NULL) &&
((t->type == TOK_PREPROC_Q) ||
(t->type == TOK_PREPROC_QQ))) {
ExpInv *ei;