pike.git/
lib/
master.pike.in
Branch:
Tag:
Non-build tags
All tags
No tags
2010-06-16
2010-06-16 14:17:32 by Henrik Grubbström (Grubba) <grubba@grubba.org>
34bf8afcb70343610bc62faf91610ff36b3fc1bd (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed issue when joinnodes are compared with Remote.Obj objects.
Rev: lib/master.pike.in:1.473
6:
// Pike is distributed under GPL, LGPL and MPL. See the file COPYING // for more information. //
-
// $Id: master.pike.in,v 1.
472
2010/
05/
06 14:
13
:
58
grubba Exp $
+
// $Id: master.pike.in,v 1.
473
2010/
06
/
16
14:
17
:
32
grubba Exp $
#pike __REAL_VERSION__ //#pragma strict_types
2746:
int `== (mixed other) {
-
return objectp (other) && other->is_resolv_joinnode &&
+
return objectp (other) &&
(
other->is_resolv_joinnode
== 1)
&&
equal (mkmultiset (joined_modules), mkmultiset (other->joined_modules)); }