From 2d3947ba7a7ed5ff1f7da794710e10dacc415881 Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Tue, 11 Apr 2023 00:24:19 +0300 Subject: [PATCH] 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). --- lisp/textmodes/html-ts-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5