diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2c72c20e1..e81904295 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2008-12-16 Carsten Dominik + * org-export-latex.el (org-export-latex-special-chars): Replace + special characters also in tables. + * org-agenda.el (org-agenda-change-all-lines): New argument FORCE-TAGS. (org-agenda-set-tags): Cet the new tags and pas them to diff --git a/lisp/org-export-latex.el b/lisp/org-export-latex.el index 85be3fa63..c215f7b87 100644 --- a/lisp/org-export-latex.el +++ b/lisp/org-export-latex.el @@ -877,8 +877,9 @@ See the `org-export-latex.el' code for a complete conversion table." (goto-char (point-min)) (while (re-search-forward c nil t) ;; Put the point where to check for org-protected - (unless (or (get-text-property (match-beginning 2) 'org-protected) - (org-at-table-p)) +; (unless (or (get-text-property (match-beginning 2) 'org-protected); +; (org-at-table-p)) + (unless (get-text-property (match-beginning 2) 'org-protected) (cond ((member (match-string 2) '("\\$" "$")) (if (equal (match-string 2) "\\$") (replace-match (concat (match-string 1) "$"