From: Yuan Fu Date: Fri, 25 Nov 2022 22:24:27 +0000 (-0800) Subject: ; Fix comment-end in treesit-simple-indent-presets X-Git-Tag: emacs-29.0.90~1496 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=73c94d5a9f00a98944516d86e4efcf50e20b2d48;p=emacs.git ; Fix comment-end in treesit-simple-indent-presets * lisp/treesit.el (treesit-simple-indent-presets): Fix comment-end. --- diff --git a/lisp/treesit.el b/lisp/treesit.el index 8a8f6f02c79..b7da38becc1 100644 --- a/lisp/treesit.el +++ b/lisp/treesit.el @@ -1053,8 +1053,10 @@ See `treesit-simple-indent-presets'.") (lambda (node &rest _) (string-match-p name (or (treesit-node-field-name node) ""))))) - (cons 'comment-end (lambda (&rest _) - (looking-at-p treesit-comment-end))) + (cons 'comment-end (lambda (_node _parent bol &rest _) + (save-excursion + (goto-char bol) + (looking-at-p treesit-comment-end)))) ;; TODO: Document. (cons 'catch-all (lambda (&rest _) t))