From 33f800ccd2eb931a8133ceb821ac89c432992375 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 9 Apr 2013 15:46:28 +0200 Subject: [PATCH] ox-latex: Fix inline-math table mode * lisp/ox-latex.el (org-latex--math-table): Fix inline-math table environment. --- lisp/ox-latex.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el index 9c0469568..312d842cb 100644 --- a/lisp/ox-latex.el +++ b/lisp/ox-latex.el @@ -2561,7 +2561,7 @@ This function assumes TABLE has `org' as its `:type' property and `inline-math' or `math' as its `:mode' attribute.." (let* ((caption (org-latex--caption/label-string table info)) (attr (org-export-read-attribute :attr_latex table)) - (inlinep (eq (plist-get attr :mode) 'inline-math)) + (inlinep (equal (plist-get attr :mode) "inline-math")) (env (or (plist-get attr :environment) org-latex-default-table-environment)) (contents -- 2.11.4.GIT