Explorar o código

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 %!s(int64=13) %!d(string=hai) anos
pai
achega
30986cd7c5
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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))))