From: Dmitry Gutov Date: Mon, 10 Apr 2023 21:24:19 +0000 (+0300) Subject: html-ts-mode--indent-rules: Use 'column-0' instead of 'point-min' X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2d3947ba7a7ed5ff1f7da794710e10dacc415881;p=emacs.git html-ts-mode--indent-rules: Use 'column-0' instead of 'point-min' * lisp/textmodes/html-ts-mode.el (html-ts-mode--indent-rules): Use 'column-0' instead of 'point-min' (bug#62752). --- diff --git a/lisp/textmodes/html-ts-mode.el b/lisp/textmodes/html-ts-mode.el index 58dcc7d8cad..4c1f410a7ef 100644 --- a/lisp/textmodes/html-ts-mode.el +++ b/lisp/textmodes/html-ts-mode.el @@ -42,7 +42,7 @@ (defvar html-ts-mode--indent-rules `((html - ((parent-is "fragment") point-min 0) + ((parent-is "fragment") column-0 0) ((node-is "/>") parent-bol 0) ((node-is ">") parent-bol 0) ((node-is "end_tag") parent-bol 0)