Skip to content

Commit 001600c

Browse files
committed
Fix issue introduced in #585
resolve #586
1 parent 9fe64fc commit 001600c

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

php-mode.el

+4-5
Original file line numberDiff line numberDiff line change
@@ -653,11 +653,10 @@ might be to handle switch and goto labels differently."
653653
(eq 'arglist-cont-nonempty (car langelem)))
654654
(save-excursion
655655
(save-match-data
656-
(when (and (re-search-backward php-mode--re-return-typed-closure (cdr langelem) t)
657-
(progn
658-
(goto-char (match-data 1))
659-
(not (php-in-string-or-comment-p))))
660-
(setq in-return-typed-closure t)))))
656+
(when (re-search-backward php-mode--re-return-typed-closure (cdr langelem) t)
657+
(goto-char (match-beginning 1))
658+
(when (not (php-in-string-or-comment-p))
659+
(setq in-return-typed-closure t))))))
661660
(unless in-return-typed-closure
662661
(c-lineup-arglist langelem))))
663662

0 commit comments

Comments
 (0)