From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: :components part in org-publish-project-alist fails Date: Sun, 02 Nov 2014 22:37:43 +0100 Message-ID: <87bnopffmg.fsf@free.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39700) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xl2qa-000201-Ge for emacs-orgmode@gnu.org; Sun, 02 Nov 2014 16:38:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xl2qU-0002Ag-P0 for emacs-orgmode@gnu.org; Sun, 02 Nov 2014 16:38:04 -0500 Received: from plane.gmane.org ([80.91.229.3]:53471) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xl2qU-0002AX-Ir for emacs-orgmode@gnu.org; Sun, 02 Nov 2014 16:37:58 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Xl2qS-0001mC-Al for emacs-orgmode@gnu.org; Sun, 02 Nov 2014 22:37:56 +0100 Received: from gas45-3-82-244-252-119.fbx.proxad.net ([82.244.252.119]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 02 Nov 2014 22:37:56 +0100 Received: from j.cubizolles by gas45-3-82-244-252-119.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 02 Nov 2014 22:37:56 +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 In git master, consider the following, --8<---------------cut here---------------start------------->8--- #+begin_src emacs-lisp :tangle yes :exports none (setq org-publish-project-alist `(("latex" :base-directory "./" :publishing-directory "./" :publishing-function org-latex-publish-to-pdf :exclude ".*" :latex-class "article" :include ("test.org") ) ("global" :components ("latex")))) #+end_src #+RESULTS: | latex | :base-directory | ./ | :publishing-directory | ./ | :publishing-function | org-latex-publish-to-pdf | :exclude | .* | :latex-class | article | :include | (test.org) | | global | :components | (latex) | | | | | | | | | | | * Ceci est un essai * Ceci est un deuxième heading --8<---------------cut here---------------end--------------->8--- evaluate the source block with C-c C-c and publish the "latex" project (C-c C-e P x latex). The publication works. However the "global" project fails. The message in the *Org Export Process* buffer is just "nil"... I've been using this setup for a while without any problem in the past. The latest master from git broke it. Julien.