Skip to content

Commit 2dade7a

Browse files
luked99gitster
authored andcommitted
git-p4: fix handling of multi-word P4EDITOR
This teaches git-p4 to pass the P4EDITOR variable to the shell for expansion, so that any command-line arguments are correctly handled. Without this, git-p4 can only launch the editor if P4EDITOR is solely the path to the binary, without any arguments. This also adjusts t9805, which relied on the previous behaviour. Suggested-by: Jonathan Nieder <[email protected]> Signed-off-by: Luke Diamand <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 9afbb2d commit 2dade7a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

git-p4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1220,7 +1220,7 @@ def edit_template(self, template_file):
12201220
editor = os.environ.get("P4EDITOR")
12211221
else:
12221222
editor = read_pipe("git var GIT_EDITOR").strip()
1223-
system([editor, template_file])
1223+
system(["sh", "-c", ('%s "$@"' % editor), editor, template_file])
12241224

12251225
# If the file was not saved, prompt to see if this patch should
12261226
# be skipped. But skip this verification step if configured so.

t/t9805-git-p4-skip-submit-edit.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ test_expect_success 'no config, edited' '
9090
cd "$git" &&
9191
echo line >>file1 &&
9292
git commit -a -m "change 5" &&
93-
P4EDITOR="$TRASH_DIRECTORY/ed.sh" &&
93+
P4EDITOR="\"$TRASH_DIRECTORY/ed.sh\"" &&
9494
export P4EDITOR &&
9595
git p4 submit &&
9696
p4 changes //depot/... >wc &&

t/t9820-git-p4-editor-handling.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ test_expect_success 'init depot' '
1919

2020
# Check that the P4EDITOR argument can be given command-line
2121
# options, which git-p4 will then pass through to the shell.
22-
test_expect_failure 'EDITOR with options' '
22+
test_expect_success 'EDITOR with options' '
2323
git p4 clone --dest="$git" //depot &&
2424
test_when_finished cleanup_git &&
2525
(

0 commit comments

Comments
 (0)