Skip to content

Commit c3dd6e4

Browse files
authored
Merge pull request #29 from hacktivista/patch-2
Flymake: Fix second group is not always a digit
2 parents 9dbb2c0 + b41efa3 commit c3dd6e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flymake-phpstan.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
while (search-forward-regexp
7171
(eval-when-compile
7272
(rx line-start (1+ (not (any ":"))) ":"
73-
(group-n 1 (one-or-more digit)) ":"
73+
(group-n 1 (one-or-more (not (any ":")))) ":"
7474
(group-n 2 (one-or-more not-newline)) line-end))
7575
nil t)
7676
for msg = (match-string 2)

0 commit comments

Comments
 (0)