Cosmetics/code beautification of nested class support

This commit is contained in:
William S Fulton 2013-11-28 21:01:02 +00:00
commit 44a883a057
13 changed files with 249 additions and 241 deletions

View file

@ -171,11 +171,10 @@ void prependChild(Node *node, Node *chd) {
}
}
void appendSibling(Node *node, Node *chd)
{
void appendSibling(Node *node, Node *chd) {
Node *parent;
Node* lc = node;
while(nextSibling(lc))
Node *lc = node;
while (nextSibling(lc))
lc = nextSibling(lc);
set_nextSibling(lc, chd);
set_previousSibling(chd, lc);