From 2c797c41d99555b362a9d3b7c9f2d6c791bf88e2 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 2 Mar 2013 09:45:26 +0100 Subject: [PATCH] ox-html: Silence byte-compiler * lisp/ox-html.el (org-html-link): Silence byte-compiler. --- lisp/ox-html.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index 236e8cde8..247234542 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -2480,7 +2480,8 @@ INFO is a plist holding contextual information. See (string-match (regexp-quote (car att)) desc)) att)) " ")))) - (unless (string= attributes "") (concat " " attributes))) + (unless (string= attributes "") + (setq attributes (concat " " attributes)))) (cond ;; Image file. ((and (or (eq t org-html-inline-images)