* [PATCH] run-command.c: remove run_command_v_opt_cd()
@ 2008-10-02 10:14 Nanako Shiraishi
2008-10-02 10:54 ` Johannes Sixt
2008-10-02 11:09 ` Johannes Schindelin
0 siblings, 2 replies; 3+ messages in thread
From: Nanako Shiraishi @ 2008-10-02 10:14 UTC (permalink / raw)
To: Shawn O. Pearce; +Cc: git
This function is not used anywhere.
Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com>
---
run-command.c | 8 --------
run-command.h | 1 -
2 files changed, 0 insertions(+), 9 deletions(-)
diff --git a/run-command.c b/run-command.c
index caab374..c90cdc5 100644
--- a/run-command.c
+++ b/run-command.c
@@ -273,14 +273,6 @@ int run_command_v_opt(const char **argv, int opt)
return run_command(&cmd);
}
-int run_command_v_opt_cd(const char **argv, int opt, const char *dir)
-{
- struct child_process cmd;
- prepare_run_command_v_opt(&cmd, argv, opt);
- cmd.dir = dir;
- return run_command(&cmd);
-}
-
int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env)
{
struct child_process cmd;
diff --git a/run-command.h b/run-command.h
index 4f2b7d7..a8b0c20 100644
--- a/run-command.h
+++ b/run-command.h
@@ -53,7 +53,6 @@ int run_command(struct child_process *);
#define RUN_GIT_CMD 2 /*If this is to be git sub-command */
#define RUN_COMMAND_STDOUT_TO_STDERR 4
int run_command_v_opt(const char **argv, int opt);
-int run_command_v_opt_cd(const char **argv, int opt, const char *dir);
/*
* env (the environment) is to be formatted like environ: "VAR=VALUE".
--
1.6.0.2
--
Nanako Shiraishi
http://ivory.ap.teacup.com/nanako3/
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] run-command.c: remove run_command_v_opt_cd()
2008-10-02 10:14 [PATCH] run-command.c: remove run_command_v_opt_cd() Nanako Shiraishi
@ 2008-10-02 10:54 ` Johannes Sixt
2008-10-02 11:09 ` Johannes Schindelin
1 sibling, 0 replies; 3+ messages in thread
From: Johannes Sixt @ 2008-10-02 10:54 UTC (permalink / raw)
To: Nanako Shiraishi; +Cc: Shawn O. Pearce, git
Nanako Shiraishi schrieb:
> This function is not used anywhere.
Indeed. Future callers can use run_command_v_opt_cd_env() instead.
The function is also mentioned in
Documentation/technical/api-run-command.txt, where you should remove it, too.
-- Hannes
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] run-command.c: remove run_command_v_opt_cd()
2008-10-02 10:14 [PATCH] run-command.c: remove run_command_v_opt_cd() Nanako Shiraishi
2008-10-02 10:54 ` Johannes Sixt
@ 2008-10-02 11:09 ` Johannes Schindelin
1 sibling, 0 replies; 3+ messages in thread
From: Johannes Schindelin @ 2008-10-02 11:09 UTC (permalink / raw)
To: Nanako Shiraishi; +Cc: Shawn O. Pearce, git
Hi,
On Thu, 2 Oct 2008, Nanako Shiraishi wrote:
> This function is not used anywhere.
I have to say that it fills me with sorrow, seeing that the direction
these patches take is the _opposite_ of libifying Git. So far I was only
disappointed that nobody pushed this goal, but now I am concerned that
anybody thinking about it is actively discouraged.
Just think about Git Cheetah: if it were ever to benefit from an official
libgit, then the function you remove would be _ideal_. By removing that
function, you make it even less attractive to try to use Git as a proper
library.
Ciao,
Dscho
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-10-02 11:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-02 10:14 [PATCH] run-command.c: remove run_command_v_opt_cd() Nanako Shiraishi
2008-10-02 10:54 ` Johannes Sixt
2008-10-02 11:09 ` Johannes Schindelin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox