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

* contrib/lisp/org-export.el (org-export-creator-string):
  Use (org-version) for creator string.
This commit is contained in:
Nicolas Goaziou 2012-04-29 15:52:14 +02:00
parent 6732d633af
commit e3dfe717c8
1 changed files with 1 additions and 1 deletions

View File

@ -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