Browse Source

XEmacs: Make call to `fill-paragraph' work on XEmacs.

2012-08-25  Michael Sperber  <mike@xemacs.org>

* org.el (org-fill-paragraph): Pass optional argument to
`fill-paragraph' to fix compatibility with XEmacs.
Mike Sperber 12 years ago
parent
commit
1e678d8cba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

@@ -21105,7 +21105,7 @@ a footnote definition, try to fill the first paragraph within."
 	    (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
 	    (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
 	    (paragraph-separate
 	    (paragraph-separate
 	     (cadadr (assoc 'paragraph-separate org-fb-vars))))
 	     (cadadr (assoc 'paragraph-separate org-fb-vars))))
-	(fill-paragraph))
+	(fill-paragraph nil))
     (save-excursion
     (save-excursion
       ;; Move to end of line in order to get the first paragraph
       ;; Move to end of line in order to get the first paragraph
       ;; within a plain list or a footnote definition.
       ;; within a plain list or a footnote definition.