소스 검색

Merge branch 'maint'

Nicolas Goaziou 8 년 전
부모
커밋
c7e8034360
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lisp/org-element.el

+ 1 - 1
lisp/org-element.el

@@ -848,7 +848,7 @@ CONTENTS is the contents of the element."
   (format "#+BEGIN: %s%s\n%s#+END:"
 	  (org-element-property :block-name dynamic-block)
 	  (let ((args (org-element-property :arguments dynamic-block)))
-	    (and args (concat " " args)))
+	    (if args (concat " " args) ""))
 	  contents))