From 999d09058bd22786728ff2f2dda35e7605e13746 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Fri, 2 Apr 2010 07:34:10 +0200 Subject: [PATCH] Fix structure of `org-export-latex-default-packages-alist' --- lisp/ChangeLog | 5 +++++ lisp/org.el | 28 ++++++++++++++-------------- 2 files changed, 19 insertions(+), 14 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8ff651cd3..3957d8477 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-04-02 Carsten Dominik + + * org.el (org-export-latex-default-packages-alist): Use list + instead of cons for the entries. + 2010-04-01 Carsten Dominik * org-entities.el (org-entity-get-representation): Catch the case diff --git a/lisp/org.el b/lisp/org.el index dc458716b..0882c496d 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -2936,20 +2936,20 @@ appears on the page." ;; when formatting latex fragments. Originally it was part of the ;; LaTeX exporter, which is why the name includes "export". (defcustom org-export-latex-default-packages-alist - '(("AUTO" . "inputenc") - ("T1" . "fontenc") - ("" . "graphicx") - ("" . "longtable") - ("" . "float") - ("" . "wrapfig") - ("" . "soul") - ("" . "t1enc") - ("" . "textcomp") - ("" . "marvosym") - ("" . "wasysym") - ("" . "latexsym") - ("" . "amssymb") - ("" . "hyperref")) + '(("AUTO" "inputenc") + ("T1" "fontenc") + ("" "graphicx") + ("" "longtable") + ("" "float") + ("" "wrapfig") + ("" "soul") + ("" "t1enc") + ("" "textcomp") + ("" "marvosym") + ("" "wasysym") + ("" "latexsym") + ("" "amssymb") + ("" "hyperref")) "Alist of default packages to be inserted in the header. DON'T CHANGE THIS. Unless abslutely necessary that is. All the packages in this list are needed by one part or another of Org-mode -- 2.11.4.GIT