diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-03-06 19:12:58 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-03-06 19:12:58 +0000 |
commit | 7d43e2ad65cf2d86b1e6323c20d219903bfe5f2d (patch) | |
tree | 4a4ee383177cca8c33e94d69df53ae8157c777a0 /lisp/indent.el | |
parent | 766052779be3f23e72f82b38bc1ef5a46b07215c (diff) | |
download | emacs-7d43e2ad65cf2d86b1e6323c20d219903bfe5f2d.tar.gz |
(beginning-of-line-text): Check adaptive-fill-regexp is non-nil.
Diffstat (limited to 'lisp/indent.el')
-rw-r--r-- | lisp/indent.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/indent.el b/lisp/indent.el index 2690d2f86d4..89c75472bc3 100644 --- a/lisp/indent.el +++ b/lisp/indent.el @@ -264,7 +264,7 @@ line, but does not move past any whitespace that was explicitly inserted (buffer-substring (point) (min (point-max) (+ (length fill-prefix) (point))))) (forward-char (length fill-prefix))) - (if (and adaptive-fill-mode + (if (and adaptive-fill-mode adaptive-fill-regexp (looking-at adaptive-fill-regexp)) (goto-char (match-end 0)))) ;; Skip centering or flushright indentation |