소스 검색

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)