Skip to content

Commit 1cf0d2e

Browse files
committed
git gui: fix staging a second line to a 1-line file
When a 1-line file is augmented by a second line, and the user tries to stage that single line via the "Stage Line" context menu item, we do not want to see "apply: corrupt patch at line 5". The reason for this error was that the hunk header looks like this: @@ -1 +1,2 @@ but the existing code expects the original range always to contain a comma. This problem is easily fixed by cutting the string "1 +1,2" (that Git GUI formerly mistook for the starting line) at the space. This fixes #515 Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 9b5baa1 commit 1cf0d2e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

git-gui/lib/diff.tcl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -696,6 +696,7 @@ proc apply_range_or_line {x y} {
696696
set hh [$ui_diff get $i_l "$i_l + 1 lines"]
697697
set hh [lindex [split $hh ,] 0]
698698
set hln [lindex [split $hh -] 1]
699+
set hln [lindex [split $hln " "] 0]
699700

700701
# There is a special situation to take care of. Consider this
701702
# hunk:

0 commit comments

Comments
 (0)