-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
qtreetbl improvements #107
Conversation
@strohsnow can you please review this change? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything looks good, I'll start working on segfault unit test
src/containers/qtreetbl.c
Outdated
print_node(obj->right, out, &branch, true); | ||
|
||
print_branch(prev, out); | ||
if (prev != NULL) { | ||
fprintf(out, "%s", (right) ? " ┌──" : " └──"); | ||
fprintf(out, "%s%s", right ? "┌──" : "└──", obj->red ? "[" : "─"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now no leading space at all 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I think now it looks cleaner
Closing the branch following the merge. Please work on a new branch for upcoming changes |
Working branch for qtreetbl update: