浏览代码

ox-html: Silence byte-compiler

* lisp/ox-html.el (org-html-link): Silence byte-compiler.
Nicolas Goaziou 12 年之前
父节点
当前提交
2c797c41d9
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      lisp/ox-html.el

+ 2 - 1
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)