From 9371f619b94e7071fd584a3700cb12a840c4790b Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 22 Aug 2001 22:20:06 +0000 Subject: [PATCH] (adaptive-fill-regexp): Admit tabs as well. --- lisp/textmodes/fill.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index bd47d635cfb..f894b8d189d 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el @@ -92,7 +92,7 @@ reinserts the fill prefix in each resulting line." :group 'fill) (defcustom adaptive-fill-regexp - (purecopy "[ \t]*\\([-|#;>*]+ *\\|(?[0-9]+[.)] *\\)*") + (purecopy "[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*") "*Regexp to match text at start of line that constitutes indentation. If Adaptive Fill mode is enabled, a prefix matching this pattern on the first and second lines of a paragraph is used as the -- 2.39.5