From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Re: One org file, multiple exports, is it possible? Date: Wed, 26 May 2010 17:37:55 -0400 Message-ID: <19272.1274909875@alphaville.usa.hp.com> References: <855B9DE3-A7FD-42B4-A863-DE036065EBD1@gmail.com> <6B0AFD3C-BF59-4DB6-823F-471107A380F4@tsdye.com> <81206149-B01D-4837-A7A5-0ABF94920FE1@gmail.com> <56FE52EC-18B8-46FE-B0B8-266DE70E0A38@tsdye.com> <646DB2B5-DFE0-422F-BD11-AA2117E76644@tsdye.com> <87632cljw4.fsf@gollum.intra.norang.ca> <36A649F1-C9F6-43C4-9B81-CD6A51F9B515@tsdye.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from [140.186.70.92] (port=34377 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OHOIa-0006Pb-5Z for emacs-orgmode@gnu.org; Wed, 26 May 2010 17:38:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OHOIY-0000ya-PB for emacs-orgmode@gnu.org; Wed, 26 May 2010 17:38:00 -0400 Received: from g4t0014.houston.hp.com ([15.201.24.17]:16301) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OHOIY-0000yM-LF for emacs-orgmode@gnu.org; Wed, 26 May 2010 17:37:58 -0400 In-Reply-To: Message from "Thomas S. Dye" of "Wed, 26 May 2010 08:42:35 -1000." <36A649F1-C9F6-43C4-9B81-CD6A51F9B515@tsdye.com> 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: "Thomas S. Dye" Cc: kmartino@pobox.com, Bernt Hansen , nicholas.dokos@hp.com, emacs-orgmode@gnu.org, Carsten Dominik Thomas S. Dye wrote: > ("work" > :base-directory "~/org/temp/" > :base-extension "org" > :publishing-directory "~/org/temp/publish-work/" > :publishing-function org-publish-org-to-latex > :select-tags ("@WORK") > :title "Work Notes" > :include ("index.org") <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< > :exclude "\\.org$" > ) > )) > ---- .minimal.emacs ----- > > Debugger entered--Lisp error: (wrong-type-argument stringp > ("index.org")) <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< This is complaining that ``("index.org")'' is not a string, and indeed it isn't: it's a list with one element. Should the :include line above be :include "index.org" perhaps? But I'm shooting from the hip here, so take it with the appropriate grain of salt. Nick