From 7684fbd6a227f0ad182661fd7eb17a9e13dc4695 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 8 Jan 2013 10:34:40 +0100 Subject: [PATCH] Ignore `auto-fill-inhibit-regexp' * lisp/org.el (org-setup-filling): Ignore `auto-fill-inhibit-regexp'. The idea behind this is that `org-adaptive-fill-function' already determines which lines should be filled. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 58aa5dcf5..f1caaaeb9 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -20956,7 +20956,7 @@ hierarchy of headlines by UP levels before marking the subtree." '(org-fill-paragraph-separate-nobreak-p org-fill-line-break-nobreak-p))))) (org-set-local 'fill-paragraph-function 'org-fill-paragraph) - (org-set-local 'auto-fill-inhibit-regexp org-outline-regexp) + (org-set-local 'auto-fill-inhibit-regexp nil) (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function) (org-set-local 'normal-auto-fill-function 'org-auto-fill-function) (org-set-local 'comment-line-break-function 'org-comment-line-break-function)) -- 2.11.4.GIT