diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-06-05 12:00:09 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-06-05 12:00:09 -0700 |
commit | 8d5ef5a0d1da18a2eb55c976720a8e96642c1b0b (patch) | |
tree | b1f242433912f04efc62a741cf1ae1657d8bad05 /builtin | |
parent | Merge branch 'mh/clone-verbosity-fix' into maint (diff) | |
parent | add: check return value of launch_editor (diff) | |
download | tgif-8d5ef5a0d1da18a2eb55c976720a8e96642c1b0b.tar.xz |
Merge branch 'jk/add-e-kill-editor' into maint
"git add -e" did not allow the user to abort the operation by
killing the editor.
* jk/add-e-kill-editor:
add: check return value of launch_editor
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/add.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/add.c b/builtin/add.c index 3390933d68..4bd98b799e 100644 --- a/builtin/add.c +++ b/builtin/add.c @@ -208,7 +208,8 @@ static int edit_patch(int argc, const char **argv, const char *prefix) if (run_diff_files(&rev, 0)) die(_("Could not write patch")); - launch_editor(file, NULL, NULL); + if (launch_editor(file, NULL, NULL)) + die(_("editing patch failed")); if (stat(file, &st)) die_errno(_("Could not stat '%s'"), file); |