diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/emacs-lisp/package.el | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 962b954281f..fbf4244b788 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2014-05-30 Glenn Morris <rgm@gnu.org> + + * emacs-lisp/package.el (package-check-signature) + (package-unsigned-archives): Fix :version. + 2014-05-29 Stefan Monnier <monnier@iro.umontreal.ca> * subr.el (sit-for): Don't run input-methods (bug#15614). diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 8b5c742d4cc..27ebd3cabb1 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -290,15 +290,15 @@ contrast, `package-user-dir' contains packages for personal use." (const allow-unsigned :tag "Allow unsigned") (const t :tag "Check always")) :risky t - :group 'package - :version "24.1") + :group 'packagea + :version "24.4") (defcustom package-unsigned-archives nil "A list of archives which do not use package signature." :type '(repeat (string :tag "Archive name")) :risky t :group 'package - :version "24.1") + :version "24.4") (defvar package--default-summary "No description available.") |