From c857077351520667c14f61491d8476ad133f74de Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Thu, 7 Feb 2013 09:59:08 +0100 Subject: [PATCH] ox-html.el (org-html-link): Fix bug. Thanks to Chuck Berry for reporting it. --- lisp/ox-html.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index 9c457e0c2..f4fc27b68 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -2169,7 +2169,7 @@ INFO is a plist holding contextual information. See 'identity (let ((att (org-element-property :attr_html (org-export-get-parent-element link)))) - (unless (and desc (string-match (regexp-quote (car att)) desc)) att)) + (unless (and desc att (string-match (regexp-quote (car att)) desc)) att)) " ")) (setq attributes (concat " " attributes))) -- 2.11.4.GIT