From bc99604c7ac2c6673615d0ecac4d233bf6a4ff16 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Sat, 20 Nov 2021 10:20:43 +0100 Subject: [PATCH] Fix another narrow-to-defun problem in js-mode * lisp/progmodes/js.el (js--function-prologue-beginning): Fix typo in looking-back form (bug#51926). --- lisp/progmodes/js.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el index e5e83beff6c..9303f1ecb91 100644 --- a/lisp/progmodes/js.el +++ b/lisp/progmodes/js.el @@ -1247,7 +1247,7 @@ LIMIT defaults to point." (save-excursion (goto-char orig-match-start) (when (looking-back "\\_[ \t\n]+" - (- (point) 3)) + (- (point) 30)) (setq orig-match-start (match-beginning 0)))) (make-js--pitem :paren-depth orig-depth -- 2.39.5