diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d091f2012..ff53cf17c 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-03-24 Carsten Dominik + * org-latex.el (org-export-latex-fontify): Do not mistake table.el + borders for strike-through emphasis. + * org-freemind.el (org-freemind-write-mm-buffer): Simplify the handling of odd levels. diff --git a/lisp/org-exp.el b/lisp/org-exp.el index 23b5504cc..cd89539cd 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -554,7 +554,8 @@ When nil, Org-mode's own HTML generator is used when possible (i.e. if the table does not use row- or column-spanning). This has the advantage, that the automatic HTML conversions for math symbols and sub/superscripts can be applied. Org-mode's HTML generator is also -much faster." +much faster. The LaTeX exporter always use the native exporter for +table.el tables." :group 'org-export-tables :type 'boolean) diff --git a/lisp/org-latex.el b/lisp/org-latex.el index dc9c12eba..2ba6e31ed 100644 --- a/lisp/org-latex.el +++ b/lisp/org-latex.el @@ -1736,7 +1736,10 @@ The conversion is made depending of STRING-BEFORE and STRING-AFTER." (save-match-data (and (org-at-table-p) (string-match - "[|\n]" (buffer-substring beg end)))))) + "[|\n]" (buffer-substring beg end))))) + (and (equal (match-string 3) "+") + (save-match-data + (string-match "\\`-+\\'" (match-string 4))))) (setq s (match-string 4)) (setq rpl (concat (match-string 1) (org-export-latex-emph-format (cadr emph)