summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-04-27 23:08:56 +0200
committerBastien Guerry <bzg@altern.org>2012-04-27 23:08:56 +0200
commit30986cd7c5ef99f2981bbc03ca175e7e24eceb88 (patch)
tree68708654d0510f5834c5ee6be897a5bec23fe574
parent41b2a2e766d50c84af37834bf3d67bdf175158fc (diff)
downloadorg-mode-30986cd7c5ef99f2981bbc03ca175e7e24eceb88.tar.gz
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.
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index bc488d2..3fb2a96 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))))