mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
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.
This commit is contained in:
parent
b5cd9343ae
commit
22bcbf8e2c
9 changed files with 28 additions and 28 deletions
|
|
@ -2263,12 +2263,12 @@ a string, be sure to use a valid format, see RFC 2616."
|
|||
:version "22.1"
|
||||
:group 'gnus-message
|
||||
:type '(choice (list (set :inline t
|
||||
(const gnus :tag "Gnus version")
|
||||
(const emacs :tag "Emacs version")
|
||||
(const :value gnus :tag "Gnus version")
|
||||
(const :value emacs :tag "Emacs version")
|
||||
(choice :tag "system"
|
||||
(const type :tag "system type")
|
||||
(const config :tag "system configuration"))
|
||||
(const codename :tag "Emacs codename")))
|
||||
(const :value type :tag "system type")
|
||||
(const :value config :tag "system configuration"))
|
||||
(const :value codename :tag "Emacs codename")))
|
||||
(string)))
|
||||
|
||||
;; Convert old (< 2005-01-10) symbol type values:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue