소스 검색

org-export: Use (org-version) for creator string

* contrib/lisp/org-export.el (org-export-creator-string):
  Use (org-version) for creator string.
Nicolas Goaziou 13 년 전
부모
커밋
e3dfe717c8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      contrib/lisp/org-export.el

+ 1 - 1
contrib/lisp/org-export.el

@@ -325,7 +325,7 @@ If the value is `comment' insert it as a comment."
 
 (defcustom org-export-creator-string
   (format "Generated by Org mode %s in Emacs %s."
-	  (if (boundp 'org-version) org-version "(Unknown)")
+	  (if (fboundp 'org-version) (org-version) "(Unknown)")
 	  emacs-version)
   "String to insert at the end of the generated document."
   :group 'org-export-general