LaTeX export: Fix problem with quotation marks

This commit is contained in:
Carsten Dominik 2009-07-02 09:53:25 +02:00
parent 9a6261df78
commit 483463d18f
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2009-07-02 Carsten Dominik <carsten.dominik@gmail.com>
* 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.

View File

@ -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))))