summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2013-06-20 20:18:55 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2013-06-20 20:18:55 +0200
commitf9ae004aca12f2a6439587434a90f4560309a38e (patch)
tree737e94b78bf2d6b738e21196c1f53154c5cd8b69
parent7b8a79326fae64f40b20e3a50c02a5a40f1c0b62 (diff)
downloadorg-mode-f9ae004aca12f2a6439587434a90f4560309a38e.tar.gz
ox-html: Fix typo preventing insertion of link up/link home anchors
* lisp/ox-html.el (org-html-template): Fix typo preventing insertion of link up/link home anchors. Thanks to Daniel G. Gerber for noticing it.
-rw-r--r--lisp/ox-html.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ox-html.el b/lisp/ox-html.el
index b9d38d9..c0509ff 100644
--- a/lisp/ox-html.el
+++ b/lisp/ox-html.el
@@ -1614,7 +1614,7 @@ holding export options."
"<body>\n"
(let ((link-up (org-trim (plist-get info :html-link-up)))
(link-home (org-trim (plist-get info :html-link-home))))
- (unless (and (string= link-up "") (string= link-up ""))
+ (unless (and (string= link-up "") (string= link-home ""))
(format org-html-home/up-format
(or link-up link-home)
(or link-home link-up))))