From 16d41d42184a4c82d2cd8c41e9eef9784cf437b1 Mon Sep 17 00:00:00 2001 From: Jonathan Nieder Date: Tue, 19 Mar 2013 15:45:52 -0700 Subject: add: make warn_pathless_add() a no-op after first call Make warn_pathless_add() print its warning the first time it is called and do nothing if called again. This will make it easier to show the warning on the fly when a relevant condition is detected without risking showing it multiple times when multiple such conditions hold. Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- builtin/add.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'builtin/add.c') diff --git a/builtin/add.c b/builtin/add.c index c13d548585..bfc6ff3b0a 100644 --- a/builtin/add.c +++ b/builtin/add.c @@ -33,8 +33,13 @@ static const char *short_option_with_implicit_dot; static void warn_pathless_add(void) { + static int shown; assert(option_with_implicit_dot && short_option_with_implicit_dot); + if (shown) + return; + shown = 1; + /* * To be consistent with "git add -p" and most Git * commands, we should default to being tree-wide, but -- cgit v1.2.3