From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Strange problems when exporting asynchronously in beamer mode Date: Fri, 05 Feb 2016 00:05:53 +0100 Message-ID: <87io24dqjy.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]:60465) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRSyV-00067i-6A for emacs-orgmode@gnu.org; Thu, 04 Feb 2016 18:06:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aRSyR-0004y7-Pr for emacs-orgmode@gnu.org; Thu, 04 Feb 2016 18:06:07 -0500 Received: from plane.gmane.org ([80.91.229.3]:46289) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRSyR-0004xj-J7 for emacs-orgmode@gnu.org; Thu, 04 Feb 2016 18:06:03 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1aRSyO-0003l2-Ot for emacs-orgmode@gnu.org; Fri, 05 Feb 2016 00:06:00 +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 ; Fri, 05 Feb 2016 00:06:00 +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 ; Fri, 05 Feb 2016 00:06:00 +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 I recently upgraded to the latest git version and every asynchronous export to pdf in beamer mode fails whereas the asynchronous mode has no problem. I didn't change anything in my setup, and it was working fine before. With the following Org file (the first lines are to ensure that the latest git version of Org is used) --8<---------------cut here---------------start------------->8--- #+BEGIN_SRC emacs-lisp :exports none :results none (add-to-list 'load-path (expand-file-name "~/info/emacs/org-mode/lisp")) (add-to-list 'load-path (expand-file-name "~/info/emacs/org-mode/contrib/lisp")) (setq org-export-async-init-file "/home/wilk/configuration/elisp/org-export-async-init.el") (org-reload) (setq org-export-async-debug t) #+END_SRC * Test essai --8<---------------cut here---------------end--------------->8--- Calling (in emacs -Q) an asynchronous export to Tex for Beamer (C-c C-e l b) gives the following error --8<---------------cut here---------------start------------->8--- Unknown "nil" back-end: Aborting export --8<---------------cut here---------------end--------------->8--- There is no error for an export to TeX in LateX mode (C-c C-e l l), of if the export to TeX in beamer mode isn't asynchronous. The contents of the "/home/wilk/configuration/elisp/org-export-async-init-test.el" file are: --8<---------------cut here---------------start------------->8--- ;;~/.emacs -*- mode: lisp-*- (setq org-export-async-debug t) (add-to-list 'load-path (expand-file-name "~/info/emacs/org-mode/lisp")) (add-to-list 'load-path (expand-file-name "~/info/emacs/org-mode/contrib/lisp")) (require 'org) (require 'ox) --8<---------------cut here---------------end--------------->8--- Any idea what went wrong ? Julien.