From 30986cd7c5ef99f2981bbc03ca175e7e24eceb88 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Fri, 27 Apr 2012 23:08:56 +0200 Subject: [PATCH] org.el: Fix bug in `org-fill-paragraph'. * org.el (org-fill-paragraph): Pass the `justify' argument to `org-fill-paragraph-fallback-function'. Thanks to Nick Dokos for spotting this. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index bc488d209..3fb2a96b4 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -20706,7 +20706,7 @@ the functionality can be provided as a fall-back.") (fill-paragraph justify) t)) ;; Else falls back on `org-fill-paragraph-fallback-function' (org-fill-paragraph-fallback-function - (funcall org-fill-paragraph-fallback-function)) + (funcall org-fill-paragraph-fallback-function justify)) ;; Else simply call `fill-paragraph'. (t nil)))) -- 2.11.4.GIT