From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Subject: Re: Symbol's function definition is void: fill-forward-paragraph Date: Thu, 10 Mar 2011 19:28:04 +0100 Message-ID: <87bp1iygnf.fsf@gmail.com> References: <1299750044.30358.23.camel@birke.ikw.Uni-Osnabrueck.DE> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from [140.186.70.92] (port=59839 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pxkbr-0008UH-TQ for emacs-orgmode@gnu.org; Thu, 10 Mar 2011 13:29:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pxkbp-0005Ep-Pc for emacs-orgmode@gnu.org; Thu, 10 Mar 2011 13:29:15 -0500 Received: from mail-fx0-f41.google.com ([209.85.161.41]:44003) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pxkbp-0005ET-LJ for emacs-orgmode@gnu.org; Thu, 10 Mar 2011 13:29:13 -0500 Received: by fxm18 with SMTP id 18so269104fxm.0 for ; Thu, 10 Mar 2011 10:29:12 -0800 (PST) In-Reply-To: <1299750044.30358.23.camel@birke.ikw.Uni-Osnabrueck.DE> ("Frank =?utf-8?Q?J=C3=A4kel=22's?= message of "Thu, 10 Mar 2011 10:40:44 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Frank =?utf-8?Q?J=C3=A4kel?= Cc: emacs-orgmode@gnu.org Hello, Frank J=C3=A4kel writes: > * A > I'm trying to fill this > paragraph by pressing > M-q now > > I get the following error: > > Debugger entered--Lisp error: (void-function fill-forward-paragraph) > (fill-forward-paragraph -1) > (save-excursion (fill-forward-paragraph -1) (setq itemp > (org-in-item-p))) > (cond ((and ... ...) t) (table\.el-p t) (table-p (org-table-align) t) > (itemp (let* ... ... ... t)) ((save-excursion ... ...) (let ... ...)) (t > nil)) > (let ((table-p ...) (table\.el-p ...) (itemp ...)) (cond (... t) > (table\.el-p t) (table-p ... t) (itemp ...) (... ...) (t nil))) > org-fill-paragraph(nil) > fill-paragraph(nil) > call-interactively(fill-paragraph) > > Strangely, if I now go back to the buffer and try M-q this time it will > fill the paragraph as intended. So you mean `fill-forward-paragraph' is known by Emacs afterwards? > A solution that worked for me was to replace all calls to > fill-forward-paragraph with fill-paragraph. I don't think it is a solution as fill-forward-paragraph is a movement function, not a filling one: they can't be equivalent. Regards, --=20 Nicolas