diff options
| author | Glenn Morris | 2014-05-29 22:08:10 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-05-29 22:08:10 -0700 |
| commit | ab84733c353bcdb05fddaebaa5168bac97dc5526 (patch) | |
| tree | ceafa068c66c156725426e0532db914b1ffe0967 | |
| parent | 60ae3d09932f862ed6543b45f9c24d5d495bb6fb (diff) | |
| download | emacs-ab84733c353bcdb05fddaebaa5168bac97dc5526.tar.gz emacs-ab84733c353bcdb05fddaebaa5168bac97dc5526.zip | |
package.el: Fix some version tags
* lisp/emacs-lisp/package.el (package-check-signature)
(package-unsigned-archives): Fix :version.
| -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 @@ | |||
| 1 | 2014-05-30 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/package.el (package-check-signature) | ||
| 4 | (package-unsigned-archives): Fix :version. | ||
| 5 | |||
| 1 | 2014-05-29 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2014-05-29 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * subr.el (sit-for): Don't run input-methods (bug#15614). | 8 | * 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." | |||
| 290 | (const allow-unsigned :tag "Allow unsigned") | 290 | (const allow-unsigned :tag "Allow unsigned") |
| 291 | (const t :tag "Check always")) | 291 | (const t :tag "Check always")) |
| 292 | :risky t | 292 | :risky t |
| 293 | :group 'package | 293 | :group 'packagea |
| 294 | :version "24.1") | 294 | :version "24.4") |
| 295 | 295 | ||
| 296 | (defcustom package-unsigned-archives nil | 296 | (defcustom package-unsigned-archives nil |
| 297 | "A list of archives which do not use package signature." | 297 | "A list of archives which do not use package signature." |
| 298 | :type '(repeat (string :tag "Archive name")) | 298 | :type '(repeat (string :tag "Archive name")) |
| 299 | :risky t | 299 | :risky t |
| 300 | :group 'package | 300 | :group 'package |
| 301 | :version "24.1") | 301 | :version "24.4") |
| 302 | 302 | ||
| 303 | (defvar package--default-summary "No description available.") | 303 | (defvar package--default-summary "No description available.") |
| 304 | 304 | ||