[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[O] [PATCH] for an unquoted list in org-e-latex
From: |
Philipp Kroos |
Subject: |
[O] [PATCH] for an unquoted list in org-e-latex |
Date: |
Wed, 12 Sep 2012 11:04:42 +0200 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
Hi,
see the patch ;)
PS:
Do I have to sign the fsf-formula for such patches?
Sry, I'm still new to the open and free software-community, but I'm
willing to help, though I can't support anything financially currently.
From d4401405af9e78971b728bcc03342964de397860 Mon Sep 17 00:00:00 2001
From: Philipp Kroos <address@hidden>
Date: Wed, 12 Sep 2012 10:45:02 +0200
Subject: [PATCH] * org-e-latex.el (org-e-latex-export-block): fixed typo
'("LATEX" "TEX") was not quoted.
TINYCHANGE
---
contrib/lisp/org-e-latex.el | 2 +-
1 Datei geändert, 1 Zeile hinzugefügt(+), 1 Zeile entfernt(-)
diff --git a/contrib/lisp/org-e-latex.el b/contrib/lisp/org-e-latex.el
index 17bdad9..a0ca7dc 100644
--- a/contrib/lisp/org-e-latex.el
+++ b/contrib/lisp/org-e-latex.el
@@ -1209,7 +1209,7 @@ information."
(defun org-e-latex-export-block (export-block contents info)
"Transcode a EXPORT-BLOCK element from Org to LaTeX.
CONTENTS is nil. INFO is a plist holding contextual information."
- (when (member (org-element-property :type export-block) ("LATEX" "TEX"))
+ (when (member (org-element-property :type export-block) '("LATEX" "TEX"))
(org-remove-indentation (org-element-property :value export-block))))
--
1.7.12
- [O] [PATCH] for an unquoted list in org-e-latex,
Philipp Kroos <=