From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: latex equation and html export Date: Wed, 01 Jan 2014 10:42:29 -0500 Message-ID: <87vby3674q.fsf@alphaville.bos.redhat.com> References: <87zjng5i7k.fsf@alphaville.bos.redhat.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51218) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VyNwX-0005nR-TK for emacs-orgmode@gnu.org; Wed, 01 Jan 2014 10:42:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VyNwR-0002DB-Ej for emacs-orgmode@gnu.org; Wed, 01 Jan 2014 10:42:49 -0500 Received: from plane.gmane.org ([80.91.229.3]:35017) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VyNwR-0002D4-7Q for emacs-orgmode@gnu.org; Wed, 01 Jan 2014 10:42:43 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VyNwO-0004XE-Ua for emacs-orgmode@gnu.org; Wed, 01 Jan 2014 16:42:40 +0100 Received: from pool-98-110-175-184.bstnma.fios.verizon.net ([98.110.175.184]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 01 Jan 2014 16:42:40 +0100 Received: from ndokos by pool-98-110-175-184.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 01 Jan 2014 16:42:40 +0100 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 Achim Gratz writes: > Am 01.01.2014 07:28, schrieb Nick Dokos: >> --8<---------------cut here---------------start------------->8--- >> (add-to-list 'load-path "~/src/emacs/org/org-mode/lisp") >> (add-to-list 'load-path "~/src/emacs/org/org-mode/contib/lisp") > > There is usually no point to include contrib in a minimal Org init, > but if you need it, it should not be first in load-path (that is, the > two lines above should be reversed and the directory name be > "contrib"). True - I guess the misspelling saved me from any troubles that contrib could have caused :-) My minimal file now starts like this: --8<---------------cut here---------------start------------->8--- ;(add-to-list 'load-path "~/src/emacs/org/org-mode/contrib/lisp") (add-to-list 'load-path "~/src/emacs/org/org-mode/lisp") (require 'org-loaddefs) ... --8<---------------cut here---------------end--------------->8--- If I need contrib, I can just uncomment the first line. Thanks, Nick