]> git.eshelyaron.com Git - emacs.git/commitdiff
Update use-package defgroups
authorStefan Kangas <stefankangas@gmail.com>
Thu, 8 Dec 2022 16:10:47 +0000 (17:10 +0100)
committerStefan Kangas <stefankangas@gmail.com>
Thu, 8 Dec 2022 16:11:21 +0000 (17:11 +0100)
* 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.

lisp/use-package/bind-key.el
lisp/use-package/use-package-core.el
lisp/use-package/use-package-ensure.el

index 9ebb859a3599c07063bc91c1b4d1b03e8953f250..9b9fc3531c4a2e012976f9528c9ba90dba6a4e99 100644 (file)
 
 (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'."
index ff4e03c86274cb4741092b80d76f3ab7d4430539..5ebe6576190c2b85d861c900a3037e8d52fa1cc1 100644 (file)
@@ -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'.")
index c9cc6e70c518225d4a2d33cc0ad734cf96fc5c74..bbb8e4175b8d54144b66d142e4448b231b156845 100644 (file)
@@ -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")