git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC/PATCH] Fix path prefixing in grep_object
@ 2013-08-25  1:35 Phil Hord
  2013-08-25  2:07 ` Phil Hord
  2013-08-25  4:41 ` Jeff King
  0 siblings, 2 replies; 19+ messages in thread
From: Phil Hord @ 2013-08-25  1:35 UTC (permalink / raw)
  To: git; +Cc: phil.hord, Phil Hord

When the pathspec given to grep includes a tree name, the full
name of matched files is assembled using colon as a separator.
If the pathspec includes a tree name, it should use a slash
instead.

Check if the pathspec already names a tree and ref (including
a colon) and use a slash if so.
---

I'm not sure about the detection I used here.  It works, but it is
not terribly robust.  Is there a better way to handle this?  Maybe
something like 'prefix_pathspec(name,"");'.

 builtin/grep.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/builtin/grep.c b/builtin/grep.c
index 03bc442..d0deae4 100644
--- a/builtin/grep.c
+++ b/builtin/grep.c
@@ -480,8 +480,9 @@ static int grep_object(struct grep_opt *opt, const struct pathspec *pathspec,
 		len = name ? strlen(name) : 0;
 		strbuf_init(&base, PATH_MAX + len + 1);
 		if (len) {
+			int has_colon = !!strchr(name,':');
 			strbuf_add(&base, name, len);
-			strbuf_addch(&base, ':');
+			strbuf_addch(&base, has_colon?'/':':');
 		}
 		init_tree_desc(&tree, data, size);
 		hit = grep_tree(opt, pathspec, &tree, &base, base.len,
-- 
1.8.4.557.g34b3a2e

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

end of thread, other threads:[~2013-08-27 11:55 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-25  1:35 [RFC/PATCH] Fix path prefixing in grep_object Phil Hord
2013-08-25  2:07 ` Phil Hord
2013-08-25  3:35   ` Junio C Hamano
2013-08-25  4:23     ` Jonathan Nieder
2013-08-25  5:25       ` Junio C Hamano
2013-08-26  7:14         ` Junio C Hamano
2013-08-26 11:44           ` Phil Hord
2013-08-26 16:23             ` Junio C Hamano
2013-08-26 16:49               ` Phil Hord
2013-08-26 17:07                 ` Phil Hord
2013-08-26 17:26                 ` Junio C Hamano
2013-08-26 17:45                   ` Phil Hord
2013-08-27  4:07                   ` Junio C Hamano
2013-08-27 11:54                     ` Phil Hord
2013-08-26 17:03               ` Junio C Hamano
2013-08-26 17:19                 ` Phil Hord
2013-08-25  4:41 ` Jeff King
2013-08-25  5:41   ` Jonathan Nieder
2013-08-25  5:54     ` Jeff King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).