summaryrefslogtreecommitdiff
path: root/builtin-commit.c
diff options
context:
space:
mode:
authorPierre Habouzit <madcoder@debian.org>2007-11-26 08:59:27 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-11-26 17:13:17 (GMT)
commit8babab95af7c01d9ea75c97ee0df40e5a2170b83 (patch)
tree1d0716d42ba6e7ae89cde3d2035484b33dd41fee /builtin-commit.c
parentb468f0ce4881bf42ffc820b1cddad67dad17fd80 (diff)
downloadgit-8babab95af7c01d9ea75c97ee0df40e5a2170b83.zip
git-8babab95af7c01d9ea75c97ee0df40e5a2170b83.tar.gz
git-8babab95af7c01d9ea75c97ee0df40e5a2170b83.tar.bz2
builtin-commit.c: export GIT_INDEX_FILE for launch_editor as well.
The editor program to let the user edit the log message used to get GIT_INDEX_FILE environment variable pointing at the right file, but this was lost when git-commit was rewritten in C. Signed-off-by: Pierre Habouzit <madcoder@debian.org> Acked-by: Kristian Høgsberg <krh@redhat.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-commit.c')
-rw-r--r--builtin-commit.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/builtin-commit.c b/builtin-commit.c
index 4de316a..f60bd7f 100644
--- a/builtin-commit.c
+++ b/builtin-commit.c
@@ -748,9 +748,12 @@ int cmd_commit(int argc, const char **argv, const char *prefix)
/* Get the commit message and validate it */
header_len = sb.len;
- if (!no_edit)
- launch_editor(git_path(commit_editmsg), &sb);
- else if (strbuf_read_file(&sb, git_path(commit_editmsg), 0) < 0) {
+ if (!no_edit) {
+ char index[PATH_MAX];
+ const char *env[2] = { index, NULL };
+ snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
+ launch_editor(git_path(commit_editmsg), &sb, env);
+ } else if (strbuf_read_file(&sb, git_path(commit_editmsg), 0) < 0) {
rollback_index_files();
die("could not read commit message\n");
}