summaryrefslogtreecommitdiff
path: root/contrib/git-jump
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-07-22 16:28:44 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-07-22 19:33:45 (GMT)
commit74a7fa44d36c3e93febccdea5f44ff78555463d0 (patch)
treee62886ca079ea6571f4e665169ecc8906c898593 /contrib/git-jump
parent3d8a54eb37d298c251c0b6823dc06935a611bc33 (diff)
downloadgit-74a7fa44d36c3e93febccdea5f44ff78555463d0.zip
git-74a7fa44d36c3e93febccdea5f44ff78555463d0.tar.gz
git-74a7fa44d36c3e93febccdea5f44ff78555463d0.tar.bz2
contrib/git-jump: fix greedy regex when matching hunks
The hunk-header regex looks for "\+\d+" to find the post-image line numbers, but it skips the pre-image line numbers with a simple ".*". That means we may greedily eat the post-image numbers and match a "\+\d" further on, in the funcname text. For example, commit 6b9c38e has this hunk header: diff --git a/t/t0006-date.sh b/t/t0006-date.sh [...] @@ -50,8 +50,8 @@ check_show iso-local "$TIME" '2016-06-15 14:13:20 +0000' If you run: git checkout 6b9c38e git jump diff HEAD^ t/ it will erroneously match "+0000" as the starting line number and jump there, rather than line 50. We can fix it by just making the "skip" regex non-greedy, taking the first "+" we see, which should be the post-image line information. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/git-jump')
-rwxr-xr-xcontrib/git-jump/git-jump2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/git-jump/git-jump b/contrib/git-jump/git-jump
index dc90cd6..1f1b996 100755
--- a/contrib/git-jump/git-jump
+++ b/contrib/git-jump/git-jump
@@ -25,7 +25,7 @@ mode_diff() {
perl -ne '
if (m{^\+\+\+ (.*)}) { $file = $1; next }
defined($file) or next;
- if (m/^@@ .*\+(\d+)/) { $line = $1; next }
+ if (m/^@@ .*?\+(\d+)/) { $line = $1; next }
defined($line) or next;
if (/^ /) { $line++; next }
if (/^[-+]\s*(.*)/) {