pike.git/
src/
operators.c
Branch:
Tag:
Non-build tags
All tags
No tags
2001-06-11
2001-06-11 21:18:20 by Henrik Grubbström (Grubba) <grubba@grubba.org>
eed2da3dd129d16c91fad1e1192a6aaf9e4db1e8 (
10
lines) (+
8
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed argument checking bug in o_and(). Fixes [bug
1735 (#1735)
].
Rev: src/operators.c:1.138
6:
/**/ #include "global.h" #include <math.h>
-
RCSID("$Id: operators.c,v 1.
137
2001/
05
/
19
21:
37
:
32
grubba Exp $");
+
RCSID("$Id: operators.c,v 1.
138
2001/
06
/
11
21:
18
:
20
grubba Exp $");
#include "interpret.h" #include "svalue.h" #include "multiset.h"
1189:
push_mapping(m); return; }
+
default:
+
{
+
int args = 2;
+
SIMPLE_BAD_ARG_ERROR("`&", 2, "mapping");
}
-
+
}
else { int args = 2;