pike.git/
src/
program.c
Branch:
Tag:
Non-build tags
All tags
No tags
2015-05-03
2015-05-03 18:49:30 by Henrik Grubbström (Grubba) <grubba@grubba.org>
c4191bdc964c84f0d81a04ac4ad2bc93734c686b (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
8.1
Program: Disabled some code when not PIKE_DEBUG. Fixes [CID 742547].
5251:
"Added identifier: \"%s\"\n", name->str); #endif
-
for(e = 0; state && (e < depth); e++) {
+
for(e = 0;
DO_IF_DEBUG_ELSE(
state
,
1)
&& (e < depth); e++) {
state = state->previous; }