comparison lisp/textmodes/fill.el @ 38910:f56c0eb18cac

(adaptive-fill-regexp): Admit tabs as well.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 22 Aug 2001 22:20:06 +0000
parents a19197c6442f
children b5f06f88b686
comparison
equal deleted inserted replaced
38909:7c9e19f2d536 38910:f56c0eb18cac
90 "*Non-nil means determine a paragraph's fill prefix from its text." 90 "*Non-nil means determine a paragraph's fill prefix from its text."
91 :type 'boolean 91 :type 'boolean
92 :group 'fill) 92 :group 'fill)
93 93
94 (defcustom adaptive-fill-regexp 94 (defcustom adaptive-fill-regexp
95 (purecopy "[ \t]*\\([-|#;>*]+ *\\|(?[0-9]+[.)] *\\)*") 95 (purecopy "[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*")
96 "*Regexp to match text at start of line that constitutes indentation. 96 "*Regexp to match text at start of line that constitutes indentation.
97 If Adaptive Fill mode is enabled, a prefix matching this pattern 97 If Adaptive Fill mode is enabled, a prefix matching this pattern
98 on the first and second lines of a paragraph is used as the 98 on the first and second lines of a paragraph is used as the
99 standard indentation for the whole paragraph. 99 standard indentation for the whole paragraph.
100 100