Refs matching was too greedy and causing some logs not to render.

This commit is contained in:
Phil Jackson 2010-03-14 14:45:50 +00:00
parent d43a23b48f
commit a4cbd5ecd3

View file

@ -1896,7 +1896,7 @@ Please see the manual for a complete description of Magit.
"^\\([_\\*|/ ]+\\)" ; graph (1) "^\\([_\\*|/ ]+\\)" ; graph (1)
"\\(?:" "\\(?:"
"\\([0-9a-fA-F]\\{40\\}\\) " ; sha1 (2) "\\([0-9a-fA-F]\\{40\\}\\) " ; sha1 (2)
"\\(?:\\((.+)\\) \\)?" ; refs (3) "\\(?:\\((.+?)\\) \\)?" ; refs (3)
"\\(.*\\)" ; msg (4) "\\(.*\\)" ; msg (4)
"\\)?$") "\\)?$")
"Regexp used to extract elements of git log output with "Regexp used to extract elements of git log output with