From ca27c1d0b334f090e1b79c929f53e370040a1a97 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Mon, 3 Nov 2008 21:08:02 +0100 Subject: [PATCH] Reverse the changes that quoted " to " This change inerferred with other functionality of the exporter, causing all kinds of issues. --- lisp/ChangeLog | 2 ++ lisp/org-exp.el | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a33e04f2f..3a2246b68 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -3,6 +3,8 @@ * org-exp.el (org-export-as-html): Fully process link descriptions. (org-export-html-format-desc): New function. (org-export-as-html): Collect footnotes into the correct basket. + (org-html-protect): No longer protect quotations marks here, this + goes wrong. * org-agenda.el (org-agenda-remove-marked-text): Bind variable BEG. diff --git a/lisp/org-exp.el b/lisp/org-exp.el index 44c7beed2..88147dcbf 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -3939,8 +3939,9 @@ that uses these same face definitions." (setq s (replace-match "<" t t s))) (while (string-match ">" s) (setq s (replace-match ">" t t s))) - (while (string-match "\"" s) - (setq s (replace-match """ t t s)))) +; (while (string-match "\"" s) +; (setq s (replace-match """ t t s))) + ) s) (defun org-export-cleanup-toc-line (s)