branch: externals/phpinspect commit 8dd9bb07e4b239800d0e2a9d8c626c072ea5f83b Author: Hugo Thunnissen <de...@hugot.nl> Commit: Hugo Thunnissen <de...@hugot.nl>
Increase phpinspect-bmap-last-token-before-point backward search limit to 100 --- phpinspect-bmap.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpinspect-bmap.el b/phpinspect-bmap.el index 39aef72609..a9907f20e7 100644 --- a/phpinspect-bmap.el +++ b/phpinspect-bmap.el @@ -323,8 +323,8 @@ "Search backward in BMAP for last token ending before POINT. LIMIT is the maximum number of positions to check backward before -giving up. If not provided, this is 10." - (unless limit (setq limit 10)) +giving up. If not provided, this is 100." + (unless limit (setq limit 100)) (let* ((ends (phpinspect-bmap-ends bmap)) (ending) (point-limit (- point limit)))