From b83e532174cbdf55025a21c29d00a8364614a0b6 Mon Sep 17 00:00:00 2001 From: Jambunathan K Date: Sun, 23 Oct 2011 13:44:58 +0530 Subject: [PATCH] Define customizable group org-export-odt * contrib/lisp/org-odt.el (org-export-odt): Define the missing customizable group and hook it up with `org-export' customizable group. (org-export-odt-preferred-output-format): Fix the `:group' property. --- contrib/lisp/org-odt.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/contrib/lisp/org-odt.el b/contrib/lisp/org-odt.el index 17d13646a..c0a7b5065 100644 --- a/contrib/lisp/org-odt.el +++ b/contrib/lisp/org-odt.el @@ -30,6 +30,11 @@ (eval-when-compile (require 'cl)) (require 'org-lparse) +(defgroup org-export-odt nil + "Options specific for ODT export of Org-mode files." + :tag "Org Export ODT" + :group 'org-export) + (defun org-odt-end-export () (org-odt-fixup-label-references) @@ -282,7 +287,7 @@ in `org-odt-get'. If the above option is unspecified then The format specified here should be listed in OTHER-BACKENDS option of `org-odt-get' or `org-lparse-convert-capabilities' as appropriate." - :group 'org-odt + :group 'org-export-odt :type '(choice :convert-widget (lambda (w) (apply 'widget-convert (widget-type w)