From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Sperber Subject: PATCH[2/3]: Make call to `fill-paragraph' work on XEmacs. [THIS IS THE PATCH] Date: Thu, 30 Aug 2012 10:22:04 +0200 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:55342) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T7019-0004IN-FL for emacs-orgmode@gnu.org; Thu, 30 Aug 2012 04:22:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T7018-0005VN-FD for emacs-orgmode@gnu.org; Thu, 30 Aug 2012 04:22:23 -0400 Received: from plane.gmane.org ([80.91.229.3]:57685) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T7018-0005VA-7l for emacs-orgmode@gnu.org; Thu, 30 Aug 2012 04:22:22 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1T7011-0001f6-HJ for emacs-orgmode@gnu.org; Thu, 30 Aug 2012 10:22:15 +0200 Received: from 37.247.80.143 ([37.247.80.143]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 30 Aug 2012 10:22:15 +0200 Received: from sperber by 37.247.80.143 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 30 Aug 2012 10:22:15 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sorry, I included the wrong patch. -- Cheers =8-} Mike Friede, Völkerverständigung und überhaupt blabla --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0002-XEmacs-Make-call-to-fill-paragraph-work-on-XEmacs.patch >From 0c684c748c7548f5b70cc6231ef68818d15df49d Mon Sep 17 00:00:00 2001 From: Mike Sperber Date: Sat, 25 Aug 2012 17:36:18 +0200 Subject: [PATCH 2/3] XEmacs: Make call to `fill-paragraph' work on XEmacs. 2012-08-25 Michael Sperber (org-fill-paragraph): Pass optional argument to `fill-paragraph', which is mandatory for XEmacs. --- lisp/org.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 98bebba..4d6acd8 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -21057,7 +21057,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. -- 1.7.0.5 --=-=-=--