* [PATCH 1/8] Switch to run_command_v_opt in revert
@ 2007-03-10 8:27 Shawn O. Pearce
2007-03-10 16:55 ` Johannes Schindelin
0 siblings, 1 reply; 3+ messages in thread
From: Shawn O. Pearce @ 2007-03-10 8:27 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
Another change by me is removing the va_list variants of run_command,
one of which is used by builtin-revert.c. To avoid compile errors
I'm refactoring builtin-revert to use the char** variant instead,
as that variant is staying.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
---
This is on top of Dscho's builtin revert topic, currently in next.
The rest of this series is however on top of master.
builtin-revert.c | 13 +++++++++----
1 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/builtin-revert.c b/builtin-revert.c
index 2f2dc1b..652eece 100644
--- a/builtin-revert.c
+++ b/builtin-revert.c
@@ -207,6 +207,7 @@ static int merge_recursive(const char *base_sha1,
const char *next_sha1, const char *next_name)
{
char buffer[256];
+ const char *argv[6];
sprintf(buffer, "GITHEAD_%s", head_sha1);
setenv(buffer, head_name, 1);
@@ -219,10 +220,14 @@ static int merge_recursive(const char *base_sha1,
* and $prev on top of us (when reverting), or the change between
* $prev and $commit on top of us (when cherry-picking or replaying).
*/
-
- return run_command_opt(RUN_COMMAND_NO_STDIN | RUN_GIT_CMD,
- "merge-recursive", base_sha1, "--",
- head_sha1, next_sha1, NULL);
+ argv[0] = "merge-recursive";
+ argv[1] = base_sha1;
+ argv[2] = "--";
+ argv[3] = head_sha1;
+ argv[4] = next_sha1;
+ argv[5] = NULL;
+
+ return run_command_v_opt(argv, RUN_COMMAND_NO_STDIN | RUN_GIT_CMD);
}
static int revert_or_cherry_pick(int argc, const char **argv)
--
1.5.0.3.942.g299f
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/8] Switch to run_command_v_opt in revert
2007-03-10 8:27 [PATCH 1/8] Switch to run_command_v_opt in revert Shawn O. Pearce
@ 2007-03-10 16:55 ` Johannes Schindelin
2007-03-11 1:46 ` Shawn O. Pearce
0 siblings, 1 reply; 3+ messages in thread
From: Johannes Schindelin @ 2007-03-10 16:55 UTC (permalink / raw)
To: Shawn O. Pearce; +Cc: Junio C Hamano, git
Hi,
On Sat, 10 Mar 2007, Shawn O. Pearce wrote:
> Another change by me is removing the va_list variants of run_command,
> one of which is used by builtin-revert.c. To avoid compile errors
> I'm refactoring builtin-revert to use the char** variant instead,
> as that variant is staying.
>
> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
> ---
>
> This is on top of Dscho's builtin revert topic, currently in next.
> The rest of this series is however on top of master.
ACK.
I did not realize that -revert and -cherry-pick would be the only users...
Ciao,
Dscho
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/8] Switch to run_command_v_opt in revert
2007-03-10 16:55 ` Johannes Schindelin
@ 2007-03-11 1:46 ` Shawn O. Pearce
0 siblings, 0 replies; 3+ messages in thread
From: Shawn O. Pearce @ 2007-03-11 1:46 UTC (permalink / raw)
To: Johannes Schindelin; +Cc: Junio C Hamano, git
Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
> On Sat, 10 Mar 2007, Shawn O. Pearce wrote:
> > Another change by me is removing the va_list variants of run_command,
> > one of which is used by builtin-revert.c. To avoid compile errors
> > I'm refactoring builtin-revert to use the char** variant instead,
> > as that variant is staying.
>
> I did not realize that -revert and -cherry-pick would be the only users...
I didn't realize how little those functions were used either until
I started poking around in there. I'm actually shocked that your
builtin-revert rewrite was the only one using it. ;-)
--
Shawn.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-03-11 1:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-10 8:27 [PATCH 1/8] Switch to run_command_v_opt in revert Shawn O. Pearce
2007-03-10 16:55 ` Johannes Schindelin
2007-03-11 1:46 ` Shawn O. Pearce
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).