diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 565496d85..6d7449ff7 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2009-07-02 Carsten Dominik + * org-latex.el (org-export-latex-quotation-marks): Fix export of + quotation makrs in parenthesis. + * org-table.el (org-table-get-remote-range): Find #+TBLNAME also when indented. diff --git a/lisp/org-latex.el b/lisp/org-latex.el index 7104e4ea0..4949151b9 100644 --- a/lisp/org-latex.el +++ b/lisp/org-latex.el @@ -1101,9 +1101,9 @@ links, keywords, lists, tables, fixed-width" '(("\\(\\s-\\)\"" "«~") ("\\(\\S-\\)\"" "~»") ("\\(\\s-\\)'" "`")) - '(("\\(\\s-\\)\"" "``") + '(("\\(\\s-\\|(\\)\"" "``") ("\\(\\S-\\)\"" "''") - ("\\(\\s-\\)'" "`"))))) + ("\\(\\s-\\|(\\)'" "`"))))) (mapc (lambda(l) (goto-char (point-min)) (while (re-search-forward (car l) nil t) (let ((rpl (concat (match-string 1) (cadr l))))