emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org 00778ce2a6 1/2: Fix missing customization groups


From: ELPA Syncer
Subject: [elpa] externals/org 00778ce2a6 1/2: Fix missing customization groups
Date: Tue, 15 Nov 2022 21:58:01 -0500 (EST)

branch: externals/org
commit 00778ce2a68013e7b1b22689f6bdefa31efc9f0c
Author: Kyrylo Simonov <xi@resolvent.net>
Commit: Ihor Radchenko <yantar92@posteo.net>

    Fix missing customization groups
    
    * lisp/ob-tangle.el (org-babel-tangle): Add missing group definition.
    (org-babel-post-tangle-hook):
    (org-babel-pre-tangle-hook):
    (org-babel-tangle-body-hook):
    (org-babel-tangle-finished-hook):
    (org-babel-tangle-comment-format-beg):
    (org-babel-tangle-comment-format-end):
    (org-babel-tangle-uncomment-comments):
    (org-babel-process-comment-text):
    (org-babel-tangle-default-file-mode): Move under `org-babel-tangle'
    group.
    * lisp/ol-bbdb.el (org-bbdb-anniversaries): Move under `org-agenda'
    instead of a non-existent `org-bbdb'.
    * lisp/ol-bibtex.el (org-bibtex): Add missing group definition.
    * lisp/ol-gnus.el (org-gnus-no-server): Move under group
    `org-link-follow' instead of a non-existent `org-gnus'.
    * lisp/org-plot.el (org-plot): Add missing group definition.
    * lisp/org.el (org-startup): Add missing group definition.
    * lisp/ox-latex.el (org-latex-pdf-process): Move under
    `org-export-latex' instead of a non-existent `org-export-pdf'.
    * lisp/ox-man.el (org-man-pdf-process): Remove reference to
    non-existent group `org-export-pdf'.
    
    TINYCHANGE
---
 lisp/ob-tangle.el | 23 ++++++++++++++---------
 lisp/ol-bbdb.el   |  2 +-
 lisp/ol-bibtex.el |  5 +++++
 lisp/ol-gnus.el   |  2 +-
 lisp/org-plot.el  |  5 +++++
 lisp/org.el       |  5 +++++
 lisp/ox-latex.el  |  2 +-
 lisp/ox-man.el    |  1 -
 8 files changed, 32 insertions(+), 13 deletions(-)

diff --git a/lisp/ob-tangle.el b/lisp/ob-tangle.el
index 5074880c44..e86f4e5286 100644
--- a/lisp/ob-tangle.el
+++ b/lisp/ob-tangle.el
@@ -51,6 +51,11 @@
 (declare-function outline-previous-heading "outline" ())
 (defvar org-id-link-to-org-use-id) ; Dynamically scoped
 
+(defgroup org-babel-tangle nil
+  "Options for extracting source code from code blocks."
+  :tag "Org Babel Tangle"
+  :group 'org-babel)
+
 (defcustom org-babel-tangle-lang-exts
   '(("emacs-lisp" . "el")
     ("elisp" . "el"))
@@ -73,26 +78,26 @@ then the name of the language is used."
 
 (defcustom org-babel-post-tangle-hook nil
   "Hook run in code files tangled by `org-babel-tangle'."
-  :group 'org-babel
+  :group 'org-babel-tangle
   :version "24.1"
   :type 'hook)
 
 (defcustom org-babel-pre-tangle-hook '(save-buffer)
   "Hook run at the beginning of `org-babel-tangle' in the original buffer."
-  :group 'org-babel
+  :group 'org-babel-tangle
   :version "24.1"
   :type 'hook)
 
 (defcustom org-babel-tangle-body-hook nil
   "Hook run over the contents of each code block body."
-  :group 'org-babel
+  :group 'org-babel-tangle
   :version "24.1"
   :type 'hook)
 
 (defcustom org-babel-tangle-finished-hook nil
   "Hook run at the very end of `org-babel-tangle' in the original buffer.
 In this way, it is the counterpart to `org-babel-pre-tangle-hook'."
-  :group 'org-babel
+  :group 'org-babel-tangle
   :package-version '(Org . "9.6")
   :type 'hook)
 
@@ -112,7 +117,7 @@ non-nil value.
 
 Whether or not comments are inserted during tangling is
 controlled by the :comments header argument."
-  :group 'org-babel
+  :group 'org-babel-tangle
   :version "24.1"
   :type 'string)
 
@@ -132,7 +137,7 @@ non-nil value.
 
 Whether or not comments are inserted during tangling is
 controlled by the :comments header argument."
-  :group 'org-babel
+  :group 'org-babel-tangle
   :version "24.1"
   :type 'string)
 
@@ -141,7 +146,7 @@ controlled by the :comments header argument."
 of tangle comments.  Use `org-babel-tangle-comment-format-beg'
 and `org-babel-tangle-comment-format-end' to customize the format
 of tangled comments."
-  :group 'org-babel
+  :group 'org-babel-tangle
   :type 'boolean)
 
 (defcustom org-babel-process-comment-text 'org-remove-indentation
@@ -149,7 +154,7 @@ of tangled comments."
 inserted as comments in tangled source-code files.  The function
 should take a single string argument and return a string
 result.  The default value is `org-remove-indentation'."
-  :group 'org-babel
+  :group 'org-babel-tangle
   :version "24.1"
   :type 'function)
 
@@ -157,7 +162,7 @@ result.  The default value is `org-remove-indentation'."
   "The default mode used for tangled files, as an integer.
 The default value 356 correspands to the octal #o544, which is
 read-write permissions for the user, read-only for everyone else."
-  :group 'org-babel
+  :group 'org-babel-tangle
   :package-version '(Org . "9.6")
   :type 'integer)
 
diff --git a/lisp/ol-bbdb.el b/lisp/ol-bbdb.el
index 7c01c5919a..ec1d755e82 100644
--- a/lisp/ol-bbdb.el
+++ b/lisp/ol-bbdb.el
@@ -135,7 +135,7 @@
 
 (defgroup org-bbdb-anniversaries nil
   "Customizations for including anniversaries from BBDB into Agenda."
-  :group 'org-bbdb)
+  :group 'org-agenda)
 
 (defcustom org-bbdb-default-anniversary-format "birthday"
   "Default anniversary class."
diff --git a/lisp/ol-bibtex.el b/lisp/ol-bibtex.el
index d8547f316f..313b1cde88 100644
--- a/lisp/ol-bibtex.el
+++ b/lisp/ol-bibtex.el
@@ -236,6 +236,11 @@
 (defvar org-bibtex-entries nil
   "List to hold parsed bibtex entries.")
 
+(defgroup org-bibtex nil
+  "Options for translating between Org headlines and BibTeX entries."
+  :tag "Org BibTeX"
+  :group 'org)
+
 (defcustom org-bibtex-autogen-keys nil
   "Set to a truth value to use `bibtex-generate-autokey' to generate keys."
   :group 'org-bibtex
diff --git a/lisp/ol-gnus.el b/lisp/ol-gnus.el
index a7bb655558..185218ab77 100644
--- a/lisp/ol-gnus.el
+++ b/lisp/ol-gnus.el
@@ -74,7 +74,7 @@ negates this setting for the duration of the command."
 
 (defcustom org-gnus-no-server nil
   "Should Gnus be started using `gnus-no-server'?"
-  :group 'org-gnus
+  :group 'org-link-follow
   :version "24.4"
   :package-version '(Org . "8.0")
   :type 'boolean)
diff --git a/lisp/org-plot.el b/lisp/org-plot.el
index 9665a9e689..ef6b5aa057 100644
--- a/lisp/org-plot.el
+++ b/lisp/org-plot.el
@@ -294,6 +294,11 @@ When NORMALIZE is non-nil, the count is divided by the 
number of values."
        ))
     (cl-subseq factors 0 -1)))
 
+(defgroup org-plot nil
+  "Options for plotting in Org mode."
+  :tag "Org Plot"
+  :group 'org)
+
 (defcustom org-plot/gnuplot-script-preamble ""
   "String of function to be inserted before the gnuplot plot command is run.
 
diff --git a/lisp/org.el b/lisp/org.el
index 7aaef06f09..857c3147c5 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -977,6 +977,11 @@ equivalent option for agenda views."
   :group 'org-todo
   :group 'org-archive)
 
+(defgroup org-startup nil
+  "Startup options Org uses when first visiting a file."
+  :tag "Org Startup"
+  :group 'org)
+
 (defcustom org-startup-folded 'showeverything
   "Non-nil means entering Org mode will switch to OVERVIEW.
 
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index 9bdb9fb634..b5f81fe531 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -1440,7 +1440,7 @@ Alternatively, this may be a Lisp function that does the
 processing, so you could use this to apply the machinery of
 AUCTeX or the Emacs LaTeX mode.  This function should accept the
 file name as its single argument."
-  :group 'org-export-pdf
+  :group 'org-export-latex
   :type '(choice
          (repeat :tag "Shell command sequence"
                  (string :tag "Shell command"))
diff --git a/lisp/ox-man.el b/lisp/ox-man.el
index 339ab11cd7..111c46aed9 100644
--- a/lisp/ox-man.el
+++ b/lisp/ox-man.el
@@ -226,7 +226,6 @@ By default, Org uses 3 runs of to do the processing.
 Alternatively, this may be a Lisp function that does the
 processing.  This function should accept the file name as
 its single argument."
-  :group 'org-export-pdf
   :group 'org-export-man
   :version "24.4"
   :package-version '(Org . "8.0")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]