Skip to content

Commit

Permalink
Clean up some confusing whitespace.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/trunk@15034 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
jnthn committed Oct 27, 2006
1 parent 40cd08b commit 2d334db
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/pmc/namespace.pmc
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,13 @@ a NameSpace or a var, the NameSpace is returned.

if (!b)
SUPER(key, value);
else {
PMC *old = b->value;
if ((old->vtable->base_type == enum_class_NameSpace) == val_is_NS) {
/* simple ns or simple var/sub changed */
SUPER(key, value);
}
else {
PMC *old = b->value;
if ((old->vtable->base_type == enum_class_NameSpace)
== val_is_NS) {
/* simple ns or simple var/sub changed */
SUPER(key, value);
}
else if ((PObj_get_FLAGS(old) & FPA_is_ns_ext) &&
old->vtable->base_type == enum_class_FixedPMCArray) {
/* we have a tuple extension already */
Expand Down

0 comments on commit 2d334db

Please sign in to comment.