From d6d7bc55b87ea819404a92e74a05310e31600122 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 7 Apr 2013 20:12:56 +0200 Subject: [PATCH] ox/ox-html: Use a language agnostic and more neutral default creator * lisp/ox-html.el (org-html-creator-string): Change default value. * lisp/ox.el (org-export-creator-string): Change default value. --- lisp/ox-html.el | 6 +++--- lisp/ox.el | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index a229b85ac..d09cc0ff5 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -1052,9 +1052,9 @@ like that: \"%%\"." :type 'string) (defcustom org-html-creator-string - (format "Generated by Org mode %s in Emacs %s." - (if (fboundp 'org-version) (org-version) "(Unknown)") - emacs-version) + (format "Emacs %s (Org mode %s)" + emacs-version + (if (fboundp 'org-version) (org-version) "unknown version")) "Information about the creator of the HTML document. This option can also be set on with the CREATOR keyword." :group 'org-export-html diff --git a/lisp/ox.el b/lisp/ox.el index 86aa7dd43..22da0b337 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -385,9 +385,9 @@ string." (const :tag "No format string" nil))) (defcustom org-export-creator-string - (format "Generated by Org mode %s in Emacs %s." - (if (fboundp 'org-version) (org-version) "(Unknown)") - emacs-version) + (format "Emacs %s (Org mode %s)" + emacs-version + (if (fboundp 'org-version) (org-version) "unknown version")) "Information about the creator of the document. This option can also be set on with the CREATOR keyword." :group 'org-export-general