diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-07-06 15:25:56 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-07-06 15:30:32 +0200 |
commit | 22bcbf8e2cc271555a737c176c48e89daa0c17be (patch) | |
tree | 468fe0b6f5be309c82e5e8b42e3e9803e38b8cce /lisp/emacs-lisp/package.el | |
parent | b5cd9343aea2d7939209c35eef3247946df24dfa (diff) | |
download | emacs-22bcbf8e2cc271555a737c176c48e89daa0c17be.tar.gz emacs-22bcbf8e2cc271555a737c176c48e89daa0c17be.tar.bz2 emacs-22bcbf8e2cc271555a737c176c48e89daa0c17be.zip |
Fix missing :value with defcustom const :type
* lisp/calendar/calendar.el (calendar-intermonth-header)
(calendar-intermonth-text, calendar-date-style):
* lisp/calendar/diary-lib.el (diary-face-attrs):
* lisp/emacs-lisp/package.el (package-check-signature):
* lisp/erc/erc-dcc.el (erc-dcc-get-default-directory):
* lisp/gnus/gnus-art.el (gnus-auto-select-part):
* lisp/gnus/gnus-cus.el (gnus-agent-parameters):
* lisp/gnus/gnus.el (gnus-user-agent):
* lisp/mail/rmail.el (rmail-retry-ignored-headers):
* lisp/progmodes/sh-script.el (sh-indent-after-continuation):
Fix missing :value with defcustom const :type.
Diffstat (limited to 'lisp/emacs-lisp/package.el')
-rw-r--r-- | lisp/emacs-lisp/package.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 85a154a8e07..c8b66675970 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -355,10 +355,10 @@ More specifically the value can be: This also applies to the \"archive-contents\" file that lists the contents of the archive." - :type '(choice (const nil :tag "Never") - (const allow-unsigned :tag "Allow unsigned") - (const t :tag "Check always") - (const all :tag "Check all signatures")) + :type '(choice (const :value nil :tag "Never") + (const :value allow-unsigned :tag "Allow unsigned") + (const :value t :tag "Check always") + (const :value all :tag "Check all signatures")) :risky t :version "27.1") |