All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix show_entry() in tree-diff.c for TREE_IN_RECURSIVE
@ 2009-06-13 20:32 Nick Edelen
  2009-06-13 23:42 ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Nick Edelen @ 2009-06-13 20:32 UTC (permalink / raw)
  To: git; +Cc: Junio C Hamano

fix show_entry() in tree_diff.c to display tree entries on TREE_IN_RECURSIVE

Signed-off-by: Nick Edelen <sirnot@gmail.com>

---
this seems like how it should act: trees are shown under this option for changes, so it's logical they should also be shown for adds and removals.  at any rate rev-cache needs it, so I sure hope it's supposed to do this...
 tree-diff.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/tree-diff.c b/tree-diff.c
index edd8394..189a298 100644
--- a/tree-diff.c
+++ b/tree-diff.c
@@ -239,6 +239,12 @@ static void show_entry(struct diff_options *opt, const char *prefix, struct tree
 		if (!tree || type != OBJ_TREE)
 			die("corrupt tree sha %s", sha1_to_hex(sha1));
 
+		if (DIFF_OPT_TST(opt, TREE_IN_RECURSIVE)) {
+			newbase[baselen + pathlen] = 0;
+			opt->add_remove(opt, prefix[0], mode, sha1, newbase);
+			newbase[baselen + pathlen] = '/';
+		}
+
 		init_tree_desc(&inner, tree, size);
 		show_tree(opt, prefix, &inner, newbase, baselen + 1 + pathlen);
 
-- 

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-06-14 12:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-13 20:32 [PATCH] fix show_entry() in tree-diff.c for TREE_IN_RECURSIVE Nick Edelen
2009-06-13 23:42 ` Junio C Hamano
2009-06-14  0:05   ` Junio C Hamano
2009-06-14 12:01     ` Nick Edelen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.