Skip to content

Commit

Permalink
Revert "[codingstd] No space permitted before closing paren."
Browse files Browse the repository at this point in the history
This reverts commit 2cabfb6.
  • Loading branch information
jkeenan committed Feb 9, 2012
1 parent 2cabfb6 commit 118b706
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/hash.c
Expand Up @@ -2225,15 +2225,17 @@ Parrot_hash_flatten_hash_into(PARROT_INTERP, ARGMOD(PMC * const dest),
parrot_hash_iterate(src_hash,
VTABLE_set_pmc_keyed_str(interp, dest,
(STRING *)_bucket->key,
Parrot_hash_value_to_pmc(interp, src_hash, _bucket->value)));
Parrot_hash_value_to_pmc(interp, src_hash, _bucket->value));
);
}
else {
parrot_hash_iterate(src_hash,
STRING * const key = (STRING *)_bucket->key;
if (!VTABLE_exists_keyed_str(interp, dest, key)) {
PMC * const value = Parrot_hash_value_to_pmc(interp, src_hash, _bucket->value);
VTABLE_set_pmc_keyed_str(interp, dest, key, value);
});
}
);
}
}

Expand Down

0 comments on commit 118b706

Please sign in to comment.