]> git.ipfire.org Git - thirdparty/git.git/commit - userdiff.c
userdiff: fix HTML hunk header regexp
authorIlya Kantor <iliakan@gmail.com>
Sat, 23 Sep 2017 07:53:47 +0000 (10:53 +0300)
committerJunio C Hamano <gitster@pobox.com>
Sun, 24 Sep 2017 01:13:28 +0000 (10:13 +0900)
commit9c03caca2c40870cf7f879d18e55db1c94877cd5
tree499fd4763c3236f661101ed5c0c4c69278749f1e
parent3d9c5b5c4461957fbbc0479e037990db04ebb740
userdiff: fix HTML hunk header regexp

Current HTML header regexp doesn't match headers without attributes.

So it fails to match <h1>...</h1>, while <h1 class="smth">...</h1> matches.

Make attributes optional to fix this.  The regexp is still far from
perfect, but now it at least handles the common case.

Signed-off-by: Ilya Kantor <iliakan@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
userdiff.c