diff options
| author | Stefan Kangas | 2022-12-08 08:48:24 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2022-12-08 08:48:24 +0100 |
| commit | 5899cac11167deca044dc80bfd85bb88fbb44500 (patch) | |
| tree | 2340d353a22146ab360ce0d2fe45db9e1af3124e | |
| parent | d3e9bd3b57ddd4b42c611a4141d0188d17c52f05 (diff) | |
| download | emacs-5899cac11167deca044dc80bfd85bb88fbb44500.tar.gz emacs-5899cac11167deca044dc80bfd85bb88fbb44500.zip | |
Change use-package custom :group to `initialization`
* lisp/use-package/use-package-core.el (use-package): Move
defgroup to custom :group 'initialization'.
| -rw-r--r-- | lisp/use-package/use-package-core.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el index 6606681f2ea..ff4e03c8627 100644 --- a/lisp/use-package/use-package-core.el +++ b/lisp/use-package/use-package-core.el | |||
| @@ -63,7 +63,7 @@ | |||
| 63 | 63 | ||
| 64 | (defgroup use-package nil | 64 | (defgroup use-package nil |
| 65 | "A `use-package' declaration for simplifying your `.emacs'." | 65 | "A `use-package' declaration for simplifying your `.emacs'." |
| 66 | :group 'startup) | 66 | :group 'initialization) |
| 67 | 67 | ||
| 68 | (defconst use-package-version "2.4.4" | 68 | (defconst use-package-version "2.4.4" |
| 69 | "This version of `use-package'.") | 69 | "This version of `use-package'.") |