summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPuneeth Chaganti <punchagan@gmail.com>2011-02-02 10:45:55 +0100
committerBastien Guerry <bzg@altern.org>2011-02-02 10:45:55 +0100
commitb6efc82dd0578976db0f93ef10ce0ea3898971f1 (patch)
tree1b4f6f0b6e5cb0e6b8ae4db2f80f09898beab1f5
parent8158131e7a8f7ce38e385eeda1c17f27f1796bcd (diff)
downloadorg-mode-b6efc82dd0578976db0f93ef10ce0ea3898971f1.tar.gz
org-html.el: Fix bug about remaining "@" when exporting timestamps.
-rw-r--r--lisp/org-html.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-html.el b/lisp/org-html.el
index 2f0377b..58c65bf 100644
--- a/lisp/org-html.el
+++ b/lisp/org-html.el
@@ -2138,7 +2138,7 @@ But it has the disadvantage, that Org-mode's HTML conversions cannot be used."
s
(setq r (concat r s))
(unless (string-match "\\S-" (concat b s))
- (setq r (concat r "@<br/>")))
+ (setq r (concat r "<br/>")))
r))))
(defvar htmlize-buffer-places) ; from htmlize.el