From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: =?UTF-8?B?UmU6ICJTeW1ib2zigJlzIHZhbHVlIGFzIHZhcmlhYmxlIGlzIHZv?= =?UTF-8?B?aWQ6IGNvbXBpbGUiIHdoZW4gZXhwb3J0IHRvIGxhdGV4?= Date: Tue, 29 Sep 2015 13:39:36 -0400 Message-ID: <87y4fpf7l3.fsf@alphaville.usersys.redhat.com> References: 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]:51473) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zgysa-0000Q0-FZ for emacs-orgmode@gnu.org; Tue, 29 Sep 2015 13:39:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZgysV-00059b-Fo for emacs-orgmode@gnu.org; Tue, 29 Sep 2015 13:39:52 -0400 Received: from plane.gmane.org ([80.91.229.3]:42601) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZgysV-00059L-8W for emacs-orgmode@gnu.org; Tue, 29 Sep 2015 13:39:47 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZgysT-0003fq-Aj for emacs-orgmode@gnu.org; Tue, 29 Sep 2015 19:39:45 +0200 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 29 Sep 2015 19:39:45 +0200 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 29 Sep 2015 19:39:45 +0200 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 Rainer M Krug writes: > Exporting to latex of the simple file below results in an error: > > ,---- > | mapcar: Symbol’s value as variable is void: compile > `---- > Can't reproduce it. > #+LATEX_CLASS: article > #+LATEX_CLASS_OPTIONS: > #+LATEX_HEADER: > #+LATEX_HEADER_EXTRA: > #+DESCRIPTION: > #+KEYWORDS: > #+SUBTITLE: > #+LATEX_COMPILER: pdflatex > #+DATE: \today > > * Emacs version > #+begin_src emacs-lisp > (emacs-version) > #+end_src > > #+RESULTS: > : GNU Emacs 25.0.50.1 (x86_64-apple-darwin14.5.0, NS appkit-1348.17 Version 10.10.5 (Build 14F27)) > : of 2015-09-29 > > #+begin_src emacs-lisp > (org-version) > #+end_src > > #+RESULTS: > : 8.3.1 > > Org-mode version 8.3.1 (release_8.3.1-283-gf6187d @ /Users/rainerkrug/.emacs.d/org-mode/lisp/) > > PS: how do I get this output from a source block above? > #+BEGIN_SRC emacs-lisp (org-version nil t) #+END_SRC #+RESULTS: : Org-mode version 8.3.1 (release_8.3.1-48-g3add78 @ /home/nick/elisp/org-mode/lisp/) > > ,---- > | Debugger entered--Lisp error: (void-variable compile) > | #[(pkg) "<\205..\3038\211.\205..\304\n <\203.. \202.. > | C\"?)?\205\".\207" [pkg third compile 3 member-ignore-case] ^^^^^^^ This is the problem but it's not clear to me where it's coming from. Try with an uncompiled org perhaps? See (info "(org) Feedback") for how to do that. > | 4](("AUTO" "inputenc" t ("pdflatex"))) > | mapcar(#[(pkg) "<\205..\3038\211.\205..\304\n <\203.. > | \202.. C\"?)?\205\".\207" [pkg third compile 3 > | member-ignore-case] 4] (("AUTO" "inputenc" t ("pdflatex")) ("T1" > | "fontenc" t ("pdflatex")) ("" "graphicx" t) ("" "grffile" t) ("" > | "longtable" nil) ("" "wrapfig" nil) ("" "rotating" nil) ("normalem" > | "ulem" t) ("" "amsmath" t) ("" "textcomp" t) ("" "amssymb" t) ("" > | "capt-of" nil) ("" "hyperref" nil))) > | org-latex--remove-packages((("AUTO" "inputenc" t ("pdflatex")) > | ... BTW, I cannot find an org-latex--remove-packages function in my org installation. Nick