summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c4c786e)
raw | patch | inline | side by side (parent: c4c786e)
author | Jonas Fonseca <fonseca@diku.dk> | |
Wed, 4 Feb 2009 10:11:24 +0000 (11:11 +0100) | ||
committer | Jonas Fonseca <fonseca@diku.dk> | |
Thu, 5 Feb 2009 08:35:06 +0000 (09:35 +0100) |
Also renames the tree-parent line to tree-head.
tig.c | patch | blob | history |
index f1c8211f830a661e62acad81f3eecb61fc0ff06c..d875b0ec5088eed472a7bd23f9e7188a159a3b20 100644 (file)
--- a/tig.c
+++ b/tig.c
LINE(MAIN_REF, "", COLOR_CYAN, COLOR_DEFAULT, 0), \
LINE(MAIN_HEAD, "", COLOR_CYAN, COLOR_DEFAULT, A_BOLD), \
LINE(MAIN_REVGRAPH,"", COLOR_MAGENTA, COLOR_DEFAULT, 0), \
-LINE(TREE_PARENT, "", COLOR_DEFAULT, COLOR_DEFAULT, A_BOLD), \
+LINE(TREE_HEAD, "", COLOR_DEFAULT, COLOR_DEFAULT, A_BOLD), \
LINE(TREE_DIR, "", COLOR_YELLOW, COLOR_DEFAULT, A_NORMAL), \
LINE(TREE_FILE, "", COLOR_DEFAULT, COLOR_DEFAULT, A_NORMAL), \
LINE(STAT_HEAD, "", COLOR_YELLOW, COLOR_DEFAULT, 0), \
struct io io = {};
if (!view->lines) {
- tree_entry(view, LINE_TREE_PARENT, opt_path, NULL, NULL);
+ tree_entry(view, LINE_TREE_HEAD, opt_path, NULL, NULL);
report("Tree is empty");
return TRUE;
}
if (textlen <= SIZEOF_TREE_ATTR)
return FALSE;
if (view->lines == 0 &&
- !tree_entry(view, LINE_TREE_PARENT, opt_path, NULL, NULL))
+ !tree_entry(view, LINE_TREE_HEAD, opt_path, NULL, NULL))
return FALSE;
/* Strip the path part ... */
{
struct tree_entry *entry = line->data;
- if (line->type == LINE_TREE_PARENT) {
+ if (line->type == LINE_TREE_HEAD) {
if (draw_text(view, line->type, "Directory path /", TRUE))
return TRUE;
} else {