diff options
Diffstat (limited to 'lisp/indent.el')
-rw-r--r-- | lisp/indent.el | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/lisp/indent.el b/lisp/indent.el index a33d9620098..aa6b8d17c4a 100644 --- a/lisp/indent.el +++ b/lisp/indent.el @@ -81,7 +81,7 @@ This variable has no effect unless `tab-always-indent' is `complete'." (const :tag "Unless looking at a word" 'word) (const :tag "Unless at a word or parenthesis" 'word-or-paren) (const :tag "Unless at a word, parenthesis, or punctuation." 'word-or-paren-or-punct)) - :version "27.1") + :version "28.1") (defvar indent-line-ignored-functions '(indent-relative indent-relative-maybe @@ -463,7 +463,7 @@ Optional fifth argument OBJECT specifies the string or buffer to operate on." (put-text-property begin to prop (funcall func val) object)))) (defun increase-left-margin (from to inc) - "Increase or decrease the left-margin of the region. + "Increase or decrease the `left-margin' of the region. With no prefix argument, this adds `standard-indent' of indentation. A prefix arg (optional third arg INC noninteractively) specifies the amount to change the margin by, in characters. @@ -520,11 +520,14 @@ If `auto-fill-mode' is active, re-fills region to fit in new margin." (defun beginning-of-line-text (&optional n) "Move to the beginning of the text on this line. -With optional argument, move forward N-1 lines first. -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)." + +With optional argument N, move forward N-1 lines first. + +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") (beginning-of-line n) (skip-chars-forward " \t") |