]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/indent.el (beginning-of-line-text): Mark it as a movement command
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 8 Feb 2021 14:18:41 +0000 (09:18 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 8 Feb 2021 14:18:41 +0000 (09:18 -0500)
So that combining it with `shift` selects the text, as usual, in case
you have it bound for example to `C-a` in a mode like `enriched-mode`.

lisp/indent.el

index 5cbf0acaa2596ec826539c08d0b8bef9487d0a0e..285b8e2038fd205964978259a1c0b3cd4ed9fd03 100644 (file)
@@ -525,7 +525,7 @@ From the beginning of the line, moves past the left-margin indentation, the
 fill-prefix, and any indentation used for centering or right-justifying the
 line, but does not move past any whitespace that was explicitly inserted
 \(such as a tab used to indent the first line of a paragraph)."
-  (interactive "p")
+  (interactive "^p")
   (beginning-of-line n)
   (skip-chars-forward " \t")
   ;; Skip over fill-prefix.