From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: auto-fill non-op, fill-paragraph error Date: Sat, 29 Sep 2012 00:27:07 -0400 Message-ID: <7962.1348892827@alphaville> References: <87lig82jod.fsf@demeulle.org> <878vc7ifsb.fsf@demeulle.org> <87haqno75v.fsf@bzg.ath.cx> <87vcf3l9cu.fsf@bzg.ath.cx> <87a9wektfg.fsf@bzg.ath.cx> <87r4pouuly.fsf@demeulle.org> <87vcez6et8.fsf@bzg.ath.cx> <87r4pna6vc.fsf@demeulle.org> <87lifvmsru.fsf@demeulle.org> <87ipaz6tz8.fsf@bzg.ath.cx> <87obkqdd9z.fsf@demeulle.org> <878vbur6t5.fsf@bzg.ath.cx> <87k3veclxf.fsf@demeulle.org> <873922uub8.fsf@bzg.ath.cx> <87fw62ciu1.fsf@demeulle.org> <87ehlmtcy7.fsf@bzg.ath.cx> <87d3167xsj.fsf@Rainer.invalid> <87sja1scb7.fsf@demeulle.org> Reply-To: nicholas.dokos@hp.com Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:49267) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THoeK-0000RY-Ah for emacs-orgmode@gnu.org; Sat, 29 Sep 2012 00:27:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1THoeJ-00026j-6m for emacs-orgmode@gnu.org; Sat, 29 Sep 2012 00:27:32 -0400 Received: from vms173007pub.verizon.net ([206.46.173.7]:40270) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THoeJ-0001vc-1p for emacs-orgmode@gnu.org; Sat, 29 Sep 2012 00:27:31 -0400 Received: from alphaville.dokosmarshall.org ([unknown] [108.7.96.134]) by vms173007.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0MB30058MGD82U70@vms173007.mailsrvcs.net> for emacs-orgmode@gnu.org; Fri, 28 Sep 2012 23:27:08 -0500 (CDT) In-reply-to: Message from Edward DeMeulle of "Fri\, 28 Sep 2012 21\:06\:04 PDT." <87sja1scb7.fsf@demeulle.org> 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: Edward DeMeulle Cc: emacs-orgmode@gnu.org Edward DeMeulle wrote: > Achim Gratz writes: > > It also tells you that it is not a good idea to keep =E2=80=A6/org/cont= rib in > > load-path before =E2=80=A6/org. Maybe the manual and Worg should be ch= ecked for > > bad advice in that direction? >=20 > My init is set as follows: > (add-to-list 'load-path "~/.emacs.d/org-mode/lisp")=20 > (add-to-list 'load-path "~/.emacs.d/org-mode/contrib/lisp")=20 >=20 > isn't that the way it should be? >=20 No - C-h f add-to-list RET says: ,---- | add-to-list is a compiled Lisp function in `subr.el'. |=20 | (add-to-list LIST-VAR ELEMENT &optional APPEND COMPARE-FN) |=20 | Add ELEMENT to the value of LIST-VAR if it isn't there yet. | The test for presence of ELEMENT is done with `equal', | or with COMPARE-FN if that's non-nil. | If ELEMENT is added, it is added at the beginning of the list, | unless the optional argument APPEND is non-nil, in which case | ELEMENT is added at the end. `---- So you can either reverse the order, or you can say (add-to-list 'load-path "~/.emacs.d/org-mode/contrib/lisp" t)=20 which will add it to the end of the list. The two methods are not equivalent, mind you, but in either case the org lisp directory will be found before the org contrib lisp directory. And check with C-h v load-path RET afterwards to make sure that things are as they should be. Nick