pike.git/
src/
mapping.c
Branch:
Tag:
Non-build tags
All tags
No tags
2001-01-18
2001-01-18 02:18:57 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
ab1b1ef20991b58bc0cd8adcad7e33145045d727 (
14
lines) (+
12
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
bugfix for tracing with objects who has `== in mappings..
Rev: src/mapping.c:1.114
5:
\*/ /**/ #include "global.h"
-
RCSID("$Id: mapping.c,v 1.
113
2000
/
12
/
14
07
:
37
:
23
mast
Exp $");
+
RCSID("$Id: mapping.c,v 1.
114
2001
/
01
/
18
02
:
18
:
57
hubbe
Exp $");
#include "main.h" #include "object.h" #include "mapping.h"
1569:
describe_svalue(ITEM(a)+e, indent+2, &doing); my_putchar(':');
-
if((
tmp=low_mapping_lookup(m, ITEM(a)+e))
)
+
+
{
+
int save_t_flag=t_flag;
+
t_flag=0;
+
+
tmp=low_mapping_lookup(m, ITEM(a)+e)
;
+
+
t_flag=save_t_flag;
+
}
+
if(tmp
)
describe_svalue(tmp, indent+2, &doing); else my_strcat("** gone **");