summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2017-12-14 00:16:18 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2017-12-14 00:16:18 +0100
commitd9a6408bafb156385c418bdceb3d1117a60dbb8f (patch)
tree79cfebbbe39cbf7ff7381972b234abb64fd9ba1d
parent08fa2ae056e4f34bf6960098cafadd72aa811bfa (diff)
downloadorg-mode-d9a6408bafb156385c418bdceb3d1117a60dbb8f.tar.gz
Fix defgroups
* lisp/org.el (org-structure-template-alist): Use `org-edit-structure' instead of non-existent `org-completion'. * lisp/ox-publish.el (org-export-publish): Rename from `org-publish'. * lisp/org-pcomplete.el (org-complete): Remove unused group. Fixes: 29698
-rw-r--r--lisp/org-pcomplete.el5
-rw-r--r--lisp/org.el2
-rw-r--r--lisp/ox-publish.el4
3 files changed, 3 insertions, 8 deletions
diff --git a/lisp/org-pcomplete.el b/lisp/org-pcomplete.el
index 3c2561d..9ab316d 100644
--- a/lisp/org-pcomplete.el
+++ b/lisp/org-pcomplete.el
@@ -41,11 +41,6 @@
;;;; Customization variables
-(defgroup org-complete nil
- "Outline-based notes management and organizer."
- :tag "Org"
- :group 'org)
-
(defvar org-drawer-regexp)
(defvar org-property-re)
(defvar org-current-tag-alist)
diff --git a/lisp/org.el b/lisp/org.el
index 93c75cd..70899b0 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -12189,7 +12189,7 @@ There are two templates for each key, the first uses the original Org syntax,
the second uses Emacs Muse-like syntax tags. These Muse-like tags become
the default when the /org-mtags.el/ module has been loaded. See also the
variable `org-mtags-prefer-muse-templates'."
- :group 'org-completion
+ :group 'org-edit-structure
:type '(repeat
(list
(string :tag "Key")
diff --git a/lisp/ox-publish.el b/lisp/ox-publish.el
index c2416db..f4bc7c7 100644
--- a/lisp/ox-publish.el
+++ b/lisp/ox-publish.el
@@ -57,10 +57,10 @@ Every function in this hook will be called with two arguments:
the name of the original file and the name of the file
produced.")
-(defgroup org-publish nil
+(defgroup org-export-publish nil
"Options for publishing a set of files."
:tag "Org Publishing"
- :group 'org)
+ :group 'org-export)
(defcustom org-publish-project-alist nil
"Association list to control publishing behavior.