diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2003-02-04 12:29:42 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2003-02-04 12:29:42 +0000 |
commit | f1180544bb5ff44cdb45b8734734294b0a2fa7a4 (patch) | |
tree | 626b0db999b924834efc1f437eb47776ea6bd797 /lisp/indent.el | |
parent | 37d1e6800ca66b7977ebafb51ddb31a9de077e15 (diff) | |
download | emacs-f1180544bb5ff44cdb45b8734734294b0a2fa7a4.tar.gz |
Trailing whitespace deleted.
Diffstat (limited to 'lisp/indent.el')
-rw-r--r-- | lisp/indent.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/indent.el b/lisp/indent.el index ed5ff8729fc..2231b478418 100644 --- a/lisp/indent.el +++ b/lisp/indent.el @@ -303,16 +303,16 @@ If `auto-fill-mode' is active, re-fills region to fit in new margin." 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 +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") ;; Skip over fill-prefix. - (if (and fill-prefix + (if (and fill-prefix (not (string-equal fill-prefix ""))) (if (equal fill-prefix - (buffer-substring + (buffer-substring (point) (min (point-max) (+ (length fill-prefix) (point))))) (forward-char (length fill-prefix))) (if (and adaptive-fill-mode adaptive-fill-regexp |