From: Augustin Chéneau Date: Wed, 20 Sep 2023 10:23:22 +0000 (+0200) Subject: Fix tree-sitter indentation conflict with multiple languages X-Git-Tag: emacs-29.1.90~51 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7447d3df94e;p=emacs.git Fix tree-sitter indentation conflict with multiple languages * lisp/treesit.el (treesit--indent-1): Use bol instead of point. Copyright-paperwork-exempt: yes --- diff --git a/lisp/treesit.el b/lisp/treesit.el index 8163ffdf329..c24ea90bba0 100644 --- a/lisp/treesit.el +++ b/lisp/treesit.el @@ -1486,8 +1486,8 @@ Return (ANCHOR . OFFSET). This function is used by (cond ((null (treesit-parser-list)) nil) ((eq 1 (length (treesit-parser-list))) (treesit-node-at bol)) - ((treesit-language-at (point)) - (treesit-node-at bol (treesit-language-at (point)))) + ((treesit-language-at bol) + (treesit-node-at bol (treesit-language-at bol))) (t (treesit-node-at bol)))) (root (treesit-parser-root-node (treesit-node-parser smallest-node)))