diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-12-08 17:10:47 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-12-08 17:11:21 +0100 |
commit | 15fb115551e8bd308555f5365994e6764cb9e80a (patch) | |
tree | a2dead7b2f441abcbb66a46ada496da143d5d970 /lisp/use-package | |
parent | 4be96c9dcbe8405df5b29507388481c15884da1f (diff) | |
download | emacs-15fb115551e8bd308555f5365994e6764cb9e80a.tar.gz |
Update use-package defgroups
* lisp/use-package/bind-key.el (bind-key):
* lisp/use-package/use-package-core.el (use-package):
* lisp/use-package/use-package-ensure.el (use-package-ensure): Add
:link, :version and :group to defgroups.
Diffstat (limited to 'lisp/use-package')
-rw-r--r-- | lisp/use-package/bind-key.el | 5 | ||||
-rw-r--r-- | lisp/use-package/use-package-core.el | 4 | ||||
-rw-r--r-- | lisp/use-package/use-package-ensure.el | 4 |
3 files changed, 10 insertions, 3 deletions
diff --git a/lisp/use-package/bind-key.el b/lisp/use-package/bind-key.el index 9ebb859a359..9b9fc3531c4 100644 --- a/lisp/use-package/bind-key.el +++ b/lisp/use-package/bind-key.el @@ -103,7 +103,10 @@ (defgroup bind-key nil "A simple way to manage personal keybindings." - :group 'emacs) + :group 'keyboard + :group 'convenience + :link '(emacs-commentary-link :tag "Commentary" "bind-key.el") + :version "29.1") (defcustom bind-key-column-widths '(18 . 40) "Width of columns in `describe-personal-keybindings'." diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el index ff4e03c8627..5ebe6576190 100644 --- a/lisp/use-package/use-package-core.el +++ b/lisp/use-package/use-package-core.el @@ -63,7 +63,9 @@ (defgroup use-package nil "A `use-package' declaration for simplifying your `.emacs'." - :group 'initialization) + :group 'initialization + :link '(custom-manual "(use-package) Top") + :version "29.1") (defconst use-package-version "2.4.4" "This version of `use-package'.") diff --git a/lisp/use-package/use-package-ensure.el b/lisp/use-package/use-package-ensure.el index c9cc6e70c51..bbb8e4175b8 100644 --- a/lisp/use-package/use-package-ensure.el +++ b/lisp/use-package/use-package-ensure.el @@ -30,7 +30,9 @@ (defgroup use-package-ensure nil "Support for :ensure and :pin keywords in `use-package' declarations." - :group 'use-package) + :group 'use-package + :link '(custom-manual "(use-package) Installing packages") + :version "29.1") (eval-when-compile (declare-function package-installed-p "package") |