From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Leha Subject: typo in support for sidewaystable in the new latex exporter Date: Tue, 11 Sep 2012 10:15:32 +0200 Message-ID: <87fw6pvuu3.fsf@med.uni-goettingen.de> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:52131) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TBLdP-0000mv-0R for emacs-orgmode@gnu.org; Tue, 11 Sep 2012 04:15:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TBLdN-0006BU-Kd for emacs-orgmode@gnu.org; Tue, 11 Sep 2012 04:15:50 -0400 Received: from plane.gmane.org ([80.91.229.3]:40716) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TBLdM-0006BN-Tq for emacs-orgmode@gnu.org; Tue, 11 Sep 2012 04:15:49 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TBLdN-00025j-KA for emacs-orgmode@gnu.org; Tue, 11 Sep 2012 10:15:49 +0200 Received: from genepi110.genepi.med.uni-goettingen.de ([134.76.140.110]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 11 Sep 2012 10:15:49 +0200 Received: from andreas.leha by genepi110.genepi.med.uni-goettingen.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 11 Sep 2012 10:15:49 +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 --=-=-= Content-Type: text/plain Hi all, attached is a tiny patch for the new latex exporter that fixes a small typo. Regards, Andreas --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-fix-typo-in-support-of-sidewaystables-in-the-new-lat.patch Content-Description: tiny patch >From 0733a2a6882338a2fc507304069fa2ed12fdbf05 Mon Sep 17 00:00:00 2001 From: Andreas Leha Date: Tue, 11 Sep 2012 09:33:45 +0200 Subject: [PATCH] fix typo in support of sidewaystables in the new latex exporter * contrib/lisp/org-e-latex.el (org-e-latex-table--org-table): Typo. sidewaystables -> sidewaystable. --- contrib/lisp/org-e-latex.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/lisp/org-e-latex.el b/contrib/lisp/org-e-latex.el index 17bdad9..8b7c292 100644 --- a/contrib/lisp/org-e-latex.el +++ b/contrib/lisp/org-e-latex.el @@ -2315,7 +2315,7 @@ This function assumes TABLE has `org' as its `:type' attribute." (float-env (cond ((string= "longtable" table-env) nil) ((and attr (string-match "\\" attr)) - "sidewaystables") + "sidewaystable") ((and attr (or (string-match (regexp-quote "table*") attr) (string-match "\\" attr))) -- 1.7.10.4 --=-=-=--