From 1e678d8cbac5819bef47ed5712e05f4f08630025 Mon Sep 17 00:00:00 2001 From: Mike Sperber Date: Sat, 25 Aug 2012 17:36:18 +0200 Subject: [PATCH] XEmacs: Make call to `fill-paragraph' work on XEmacs. 2012-08-25 Michael Sperber * org.el (org-fill-paragraph): Pass optional argument to `fill-paragraph' to fix compatibility with XEmacs. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 98a855057..4da0994e0 100644 --- a/lisp/org.el +++ b/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-separate (cadadr (assoc 'paragraph-separate org-fb-vars)))) - (fill-paragraph)) + (fill-paragraph nil)) (save-excursion ;; Move to end of line in order to get the first paragraph ;; within a plain list or a footnote definition.