]> git.eshelyaron.com Git - emacs.git/commitdiff
html-ts-mode--indent-rules: Use 'column-0' instead of 'point-min'
authorDmitry Gutov <dgutov@yandex.ru>
Mon, 10 Apr 2023 21:24:19 +0000 (00:24 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Mon, 10 Apr 2023 21:24:33 +0000 (00:24 +0300)
* lisp/textmodes/html-ts-mode.el (html-ts-mode--indent-rules):
Use 'column-0' instead of 'point-min' (bug#62752).

lisp/textmodes/html-ts-mode.el

index 58dcc7d8cada5a85407c5fbe863fa34abb97e7d0..4c1f410a7ef58aa06358188f28f4a5651ee7c5bc 100644 (file)
@@ -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)