From: Gustaf Hendeby <hendeby@isy.liu.se>
Date: Sat, 22 Dec 2007 00:40:52 +0000 (+0100)
Subject: Make git send-email accept $EDITOR with arguments
X-Git-Tag: v1.5.4-rc2~18
X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0e0278baad8752da6c3b37495f005dc1dd6f799a;p=git.git

Make git send-email accept $EDITOR with arguments

Currently git send-email does not accept $EDITOR with arguments, eg,
emacs -nw, when starting an editor to produce a cover letter.  This
patch changes this by letting the shell handle the option parsing.

Signed-off-by:  Gustaf Hendeby <hendeby@isy.liu.se>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
---

diff --git a/git-send-email.perl b/git-send-email.perl
index 248d03508..e47994afc 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -400,7 +400,7 @@ EOT
 	close(C);
 
 	my $editor = $ENV{GIT_EDITOR} || $repo->config("core.editor") || $ENV{VISUAL} || $ENV{EDITOR} || "vi";
-	system($editor, $compose_filename);
+	system('sh', '-c', '$0 $@', $editor, $compose_filename);
 
 	open(C2,">",$compose_filename . ".final")
 		or die "Failed to open $compose_filename.final : " . $!;