From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Lawrence Subject: [PATCH] ox-latex: fix lost export option latex-custom-id-labels Date: Wed, 20 Aug 2014 17:03:52 -0700 Message-ID: <87zjeyvhcn.fsf@berkeley.edu> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33517) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XKFsd-0006SD-6M for emacs-orgmode@gnu.org; Wed, 20 Aug 2014 20:05:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XKFsX-0000yd-Ko for emacs-orgmode@gnu.org; Wed, 20 Aug 2014 20:05:27 -0400 Received: from plane.gmane.org ([80.91.229.3]:50734) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XKFsX-0000xr-6F for emacs-orgmode@gnu.org; Wed, 20 Aug 2014 20:05:21 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XKFsW-0006oL-7t for emacs-orgmode@gnu.org; Thu, 21 Aug 2014 02:05:20 +0200 Received: from airbears2-136-152-142-147.airbears2.berkeley.edu ([136.152.142.147]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 21 Aug 2014 02:05:20 +0200 Received: from richard.lawrence by airbears2-136-152-142-147.airbears2.berkeley.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 21 Aug 2014 02:05:20 +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 --=-=-= Hi everyone, I recently pulled from master and noticed that an option in the LaTeX export backend that I rely on had gotten lost in the shuffle. (I didn't check the history, but I believe it must have been removed accidentally, since the code that checks this option is still there.) Here is a patch to re-introduce it. Thanks! Best, Richard --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-ox-latex-fix-lost-export-option.patch >From 0b351bfc2e494bb010a4c27768a5ccd2ae846367 Mon Sep 17 00:00:00 2001 From: Richard Lawrence Date: Wed, 20 Aug 2014 16:55:50 -0700 Subject: [PATCH] ox-latex: fix lost export option * lisp/ox-latex.el (latex): reintroduce `latex-custom-id-labels' option in backend TINYCHANGE --- lisp/ox-latex.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el index 6ea35c5..c14d6dc 100644 --- a/lisp/ox-latex.el +++ b/lisp/ox-latex.el @@ -110,6 +110,7 @@ ;; Other variables. (:latex-active-timestamp-format nil nil org-latex-active-timestamp-format) (:latex-classes nil nil org-latex-classes) + (:latex-custom-id-labels nil nil org-latex-custom-id-as-label) (:latex-default-figure-position nil nil org-latex-default-figure-position) (:latex-default-table-environment nil nil org-latex-default-table-environment) (:latex-default-table-mode nil nil org-latex-default-table-mode) -- 1.7.10.4 --=-=-=--