Fix Table attribute issue during PDF export

* lisp/org-latex.el (org-export-latex-first-lines): Do not protect meta
lines that have nothing to do with babel.
This commit is contained in:
Carsten Dominik 2010-08-16 14:28:29 +02:00
parent 67e34d7eae
commit 796318b215
1 changed files with 7 additions and 3 deletions

View File

@ -1257,9 +1257,13 @@ If END is non-nil, it is the end of the region."
'(:org-license-to-kill t))
(save-excursion
(goto-char pt)
(while (re-search-forward "^[ \t]*#+.*\n?" limit t)
(remove-text-properties (match-beginning 0) (match-end 0)
'(:org-license-to-kill t))))))))))
(while (re-search-forward "^[ \t]*#\\+.*\n?" limit t)
(let ((case-fold-search t))
(unless (org-string-match-p
"^[ \t]*#\\+\\(attr_\\|caption\\>\\|label\\>\\)"
(match-string 0))
(remove-text-properties (match-beginning 0) (match-end 0)
'(:org-license-to-kill t))))))))))))
(defvar org-export-latex-header-defs nil