From mboxrd@z Thu Jan 1 00:00:00 1970 From: Manuel Giraud Subject: [PATCH] Move org-export-html group definition to fix uninitialized customs. Date: Tue, 15 Mar 2011 13:01:31 +0100 Message-ID: <1300190491-14442-1-git-send-email-manuel.giraud@univ-nantes.fr> References: <4D7EF96D.3000004@gmail.com> Return-path: Received: from [140.186.70.92] (port=58338 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PzSxm-0002qa-1P for emacs-orgmode@gnu.org; Tue, 15 Mar 2011 08:02:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PzSxk-00053L-Sg for emacs-orgmode@gnu.org; Tue, 15 Mar 2011 08:02:57 -0400 Received: from smtp-tls1.univ-nantes.fr ([193.52.101.145]:35781 helo=smtp-tls.univ-nantes.fr) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PzSxk-00052i-O2 for emacs-orgmode@gnu.org; Tue, 15 Mar 2011 08:02:56 -0400 In-Reply-To: <4D7EF96D.3000004@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Cc: Manuel Giraud --- lisp/org-exp.el | 5 +++++ lisp/org-html.el | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lisp/org-exp.el b/lisp/org-exp.el index 34f101d..2cd4289 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -134,6 +134,11 @@ This is without condition, so even subtrees inside that carry one of the :group 'org-export-general :type '(repeat (string :tag "Tag"))) +(defgroup org-export-html nil + "Options specific for HTML export of Org-mode files." + :tag "Org Export HTML" + :group 'org-export) + ;; FIXME: rename, this is a general variable (defcustom org-export-html-expand t "Non-nil means for HTML export, treat @<...> as HTML tag. diff --git a/lisp/org-html.el b/lisp/org-html.el index d9f34ef..a17b044 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -36,11 +36,6 @@ (declare-function org-id-find-id-file "org-id" (id)) (declare-function htmlize-region "ext:htmlize" (beg end)) -(defgroup org-export-html nil - "Options specific for HTML export of Org-mode files." - :tag "Org Export HTML" - :group 'org-export) - (defcustom org-export-html-footnotes-section "

%s:

-- 1.7.1