]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix point movement when indenting in sieve-mode
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 2 Oct 2022 12:05:53 +0000 (14:05 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 2 Oct 2022 12:05:53 +0000 (14:05 +0200)
* lisp/net/sieve-mode.el (sieve-mode-indent-function): Fix point
movement when point is at the start of the line (bug#58202).

lisp/net/sieve-mode.el

index f62af03534a3bf1a587986bd35e9e27788a28e3e..695a3235a7b69384f3f77503e55e098c752045a1 100644 (file)
@@ -200,7 +200,13 @@ Turning on Sieve mode runs `sieve-mode-hook'."
     (let ((depth (car (syntax-ppss))))
       (when (looking-at "[ \t]*}")
         (setq depth (1- depth)))
-      (indent-line-to (* 2 depth)))))
+      (indent-line-to (* 2 depth))))
+  ;; Skip to the end of the indentation if at the beginning of the
+  ;; line.
+  (when (save-excursion
+          (skip-chars-backward " \t")
+          (bolp))
+    (skip-chars-forward " \t")))
 
 (provide 'sieve-mode)