]> git.eshelyaron.com Git - emacs.git/commitdiff
Update ts modes missed in 4c16fd3a512 to use column-0
authorDmitry Gutov <dgutov@yandex.ru>
Sat, 4 Mar 2023 17:45:39 +0000 (19:45 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Sat, 4 Mar 2023 17:45:39 +0000 (19:45 +0200)
* lisp/progmodes/ruby-ts-mode.el (ruby-ts--indent-rules):
* lisp/progmodes/go-ts-mode.el (go-ts-mode--indent-rules):
Change point-min anchor to column-0.

lisp/progmodes/go-ts-mode.el
lisp/progmodes/ruby-ts-mode.el

index c0ec2822b57be6e99e1ffc5b4756bea3dc2f1ebf..77c97ffac11f5c3794270b2566d21aa6f9f5d325 100644 (file)
@@ -66,7 +66,7 @@
 
 (defvar go-ts-mode--indent-rules
   `((go
-     ((parent-is "source_file") point-min 0)
+     ((parent-is "source_file") column-0 0)
      ((node-is ")") parent-bol 0)
      ((node-is "]") parent-bol 0)
      ((node-is "}") parent-bol 0)
index fa1d8626f14a024a9f3eb2c0e4d36d0d78b544b2..750642420e3cccb3e619b34c7fafa807a0582925 100644 (file)
@@ -557,7 +557,7 @@ a statement container is a node that matches
   (let ((common
          `(
            ;; Slam all top level nodes to the left margin
-           ((parent-is "program") point-min 0)
+           ((parent-is "program") column-0 0)
 
            ;; Do not indent here docs or the end.  Not sure why it
            ;; takes the grand-parent but ok fine.