From: John Wiegley Date: Mon, 4 Dec 2017 07:36:52 +0000 (-0800) Subject: up-ensure's customization variables are now in their own group X-Git-Tag: emacs-29.0.90~1306^2~15^2~164 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=49752db41b3bf5685324d78cd2457bfe9ad83231;p=emacs.git up-ensure's customization variables are now in their own group --- diff --git a/up-ensure.el b/up-ensure.el index 2e3d4ec4116..fa19e1d5a8e 100644 --- a/up-ensure.el +++ b/up-ensure.el @@ -35,6 +35,10 @@ (require 'up-core) +(defgroup use-package-ensure nil + "Support for :ensure and :pin keywords in use-package declarations." + :group 'use-package) + (eval-when-compile (declare-function package-installed-p "package") (declare-function package-read-all-archive-contents "package" ())) @@ -43,13 +47,13 @@ "Treat every package as though it had specified using `:ensure SEXP'. See also `use-package-defaults', which uses this value." :type 'sexp - :group 'use-package) + :group 'use-package-ensure) (defcustom use-package-always-pin nil "Treat every package as though it had specified using `:pin SYM'. See also `use-package-defaults', which uses this value." :type 'symbol - :group 'use-package) + :group 'use-package-ensure) (defcustom use-package-ensure-function 'use-package-ensure-elpa "Function that ensures a package is installed. @@ -67,7 +71,7 @@ This function should return non-nil if the package is installed. The default value uses package.el to install the package." :type '(choice (const :tag "package.el" use-package-ensure-elpa) (function :tag "Custom")) - :group 'use-package) + :group 'use-package-ensure) ;;;; :pin