Преглед изворни кода

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.
Bastien Guerry пре 13 година
родитељ
комит
30986cd7c5
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      lisp/org.el

+ 1 - 1
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))))