summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/package.el
diff options
context:
space:
mode:
authorJorgen Schaefer <contact@jorgenschaefer.de>2015-01-17 11:58:58 +0100
committerJorgen Schaefer <contact@jorgenschaefer.de>2015-01-17 11:58:58 +0100
commitd80fed096336339d9e4e1137cdfcf236db38886a (patch)
treec55dcb816e1d2b59d8642da5132ef5bba4c29fa5 /lisp/emacs-lisp/package.el
parent6a6bb820d08368f9754bae73c9507c6fc36d1dca (diff)
downloademacs-d80fed096336339d9e4e1137cdfcf236db38886a.tar.gz
emacs-d80fed096336339d9e4e1137cdfcf236db38886a.tar.bz2
emacs-d80fed096336339d9e4e1137cdfcf236db38886a.zip
Type fix for defcustom.
* emacs-lisp/package.el (package-archive-priorities): Specify correct type.
Diffstat (limited to 'lisp/emacs-lisp/package.el')
-rw-r--r--lisp/emacs-lisp/package.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index 08031c846cf..4be3b584a72 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -239,7 +239,8 @@ selected. When higher versions are available from archives with
lower priorities, the user has to select those manually.
Archives not in this list have the priority 0."
- :type 'integer
+ :type '(alist :key-type (string :tag "Archive name")
+ :value-type (integer :tag "Priority (default is 0)"))
:risky t
:group 'package
:version "25.1")