All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] git.c: remove unused includes
@ 2015-01-09 10:12 Alexander Kuleshov
  2015-01-09 19:52 ` Junio C Hamano
  0 siblings, 1 reply; 2+ messages in thread
From: Alexander Kuleshov @ 2015-01-09 10:12 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git, Alexander Kuleshov

* <cache.h> and <commit.h> already included in <builtin.h>

* <quote.h> was appeared in (6035d6aa GIT_TRACE: show which
built-in/external commands are executed  25 Jun 2006) and sq_quote_print
was removed at (82aae5c quote: remove sq_quote_print() Jul 30 2013)

Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
---
 git.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/git.c b/git.c
index 09b3bcf..c9bec99 100644
--- a/git.c
+++ b/git.c
@@ -1,10 +1,7 @@
 #include "builtin.h"
-#include "cache.h"
 #include "exec_cmd.h"
 #include "help.h"
-#include "quote.h"
 #include "run-command.h"
-#include "commit.h"
 
 const char git_usage_string[] =
 	"git [--version] [--help] [-C <path>] [-c name=value]\n"
-- 
2.2.1.522.g2561c04.dirty

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

* Re: [PATCH] git.c: remove unused includes
  2015-01-09 10:12 [PATCH] git.c: remove unused includes Alexander Kuleshov
@ 2015-01-09 19:52 ` Junio C Hamano
  0 siblings, 0 replies; 2+ messages in thread
From: Junio C Hamano @ 2015-01-09 19:52 UTC (permalink / raw)
  To: Alexander Kuleshov; +Cc: git

Alexander Kuleshov <kuleshovmail@gmail.com> writes:

> * <cache.h> and <commit.h> already included in <builtin.h>
>
> * <quote.h> was appeared in (6035d6aa GIT_TRACE: show which
> built-in/external commands are executed  25 Jun 2006) and sq_quote_print
> was removed at (82aae5c quote: remove sq_quote_print() Jul 30 2013)

That's not 6035d6aa, though.

We started to include "quote.h" at 575ba9d6 (GIT_TRACE: show which
built-in/external commands are executed, 2006-06-25) that wanted to
use sq_quote_print().

When 6ce4e61f (Trace into a file or an open fd and refactor tracing
code., 2006-09-02) introduced trace.c API, the calls this file makes
to sq_quote_print() were replaced by calls to trace_argv_printf()
that are declared in "cache.h", which this file already includes.
We should have stopped including "quote.h" in that commit, but
forgot to do so.

>
> Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
> ---
>  git.c | 3 ---
>  1 file changed, 3 deletions(-)
>
> diff --git a/git.c b/git.c
> index 09b3bcf..c9bec99 100644
> --- a/git.c
> +++ b/git.c
> @@ -1,10 +1,7 @@
>  #include "builtin.h"
> -#include "cache.h"
>  #include "exec_cmd.h"
>  #include "help.h"
> -#include "quote.h"
>  #include "run-command.h"
> -#include "commit.h"
>  
>  const char git_usage_string[] =
>  	"git [--version] [--help] [-C <path>] [-c name=value]\n"

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

end of thread, other threads:[~2015-01-09 19:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-09 10:12 [PATCH] git.c: remove unused includes Alexander Kuleshov
2015-01-09 19:52 ` Junio C Hamano

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.