Add missing custom :versions, plus small fixes
* emacs-lisp/smie.el (smie-config): Add type, version, initialize. * bookmark.el (bookmark-bmenu-use-header-line): * doc-view.el (doc-view-scale-internally): * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program): * register.el (register-preview-delay): * net/shr.el (shr-bullet): * progmodes/cfengine.el (cfengine-cf-promises) (cfengine-parameters-indent): * progmodes/octave.el (inferior-octave-error-regexp-alist): * textmodes/reftex-vars.el (reftex-label-regexps): * vc/log-edit.el (log-edit-setup-add-author): Add version. * cedet/ede/linux.el (project-linux-build-directory-default) (project-linux-architecture-default): Fix custom types. Add version. * gnus/gnus-icalendar.el (gnus-icalendar-org, gnus-icalendar): * gnus/gnus-sum.el (gnus-subthread-sort-functions): Add version. * gnus/gnus-sync.el (gnus-sync-file-encrypt-to): Add type and version.
This commit is contained in:
parent
9c61f806fb
commit
bb0980751e
17 changed files with 47 additions and 11 deletions
|
@ -1,5 +1,17 @@
|
|||
2013-12-28 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* emacs-lisp/smie.el (smie-config): Add type, version, initialize.
|
||||
* bookmark.el (bookmark-bmenu-use-header-line):
|
||||
* doc-view.el (doc-view-scale-internally):
|
||||
* pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
|
||||
* register.el (register-preview-delay):
|
||||
* net/shr.el (shr-bullet):
|
||||
* progmodes/cfengine.el (cfengine-cf-promises)
|
||||
(cfengine-parameters-indent):
|
||||
* progmodes/octave.el (inferior-octave-error-regexp-alist):
|
||||
* textmodes/reftex-vars.el (reftex-label-regexps):
|
||||
* vc/log-edit.el (log-edit-setup-add-author): Add version.
|
||||
|
||||
* net/tls.el (tls-certtool-program): Fix default value.
|
||||
|
||||
* desktop.el (desktop-restore-in-current-display):
|
||||
|
|
|
@ -130,8 +130,9 @@ recently set ones come first, oldest ones come last)."
|
|||
:group 'bookmark)
|
||||
|
||||
(defcustom bookmark-bmenu-use-header-line t
|
||||
"Non-nil means to use an immovable header line, as opposed to inline
|
||||
text at the top of the buffer."
|
||||
"Non-nil means to use an immovable header line.
|
||||
This is as opposed to inline text at the top of the buffer."
|
||||
:version "24.4"
|
||||
:type 'boolean
|
||||
:group 'bookmark)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
2013-12-28 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* ede/linux.el (project-linux-build-directory-default)
|
||||
(project-linux-architecture-default): Fix custom types.
|
||||
(project-linux-architecture-default): Fix custom types. Add version.
|
||||
|
||||
2013-12-12 David Engster <deng@randomsample.de>
|
||||
|
||||
|
|
|
@ -50,12 +50,14 @@
|
|||
|
||||
(defcustom project-linux-build-directory-default 'ask
|
||||
"Build directory."
|
||||
:version "24.4"
|
||||
:group 'project-linux
|
||||
:type '(choice (const :tag "Same as source directory" same)
|
||||
(const :tag "Ask the user" ask)))
|
||||
|
||||
(defcustom project-linux-architecture-default 'ask
|
||||
"Target architecture to assume when not auto-detected."
|
||||
:version "24.4"
|
||||
:group 'project-linux
|
||||
:type '(choice (string :tag "Architecture name")
|
||||
(const :tag "Ask the user" ask)))
|
||||
|
|
|
@ -198,6 +198,7 @@ Higher values result in larger images."
|
|||
If nil, the document is re-rendered every time the scaling factor is modified.
|
||||
This only has an effect if the image libraries linked with Emacs support
|
||||
scaling."
|
||||
:version "24.4"
|
||||
:type 'boolean)
|
||||
|
||||
(defcustom doc-view-image-width 850
|
||||
|
|
|
@ -1923,6 +1923,11 @@ Each RULE element should be of the form (NEW KIND TOKEN NORMAL),
|
|||
where KIND and TOKEN are the elements passed to `smie-rules-function',
|
||||
NORMAL is the value returned by `smie-rules-function' and NEW is the
|
||||
value with which to replace it."
|
||||
:version "24.4"
|
||||
;; FIXME improve value-type.
|
||||
:type '(choice (const nil)
|
||||
(alist :key-type symbol))
|
||||
:initialize 'custom-initialize-default
|
||||
:set #'smie-config--setter)
|
||||
|
||||
(defun smie-config-local (rules)
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
2013-12-28 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* gnus-icalendar.el (gnus-icalendar-org, gnus-icalendar):
|
||||
* gnus-sum.el (gnus-subthread-sort-functions): Add version.
|
||||
* gnus-sync.el (gnus-sync-file-encrypt-to): Add type and version.
|
||||
|
||||
* auth-source.el (auth-sources):
|
||||
* nnmairix.el (nnmairix-propagate-marks-upon-close):
|
||||
Fix custom types.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; gnus-icalendar.el --- reply to iCalendar meeting requests
|
||||
|
||||
;; Copyright (C) 2013 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2013 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Jan Tatarik <Jan.Tatarik@gmail.com>
|
||||
;; Keywords: mail, icalendar, org
|
||||
|
@ -344,6 +344,7 @@ on the IDENTITIES list."
|
|||
|
||||
(defgroup gnus-icalendar-org nil
|
||||
"Settings for Calendar Event gnus/org integration."
|
||||
:version "24.4"
|
||||
:group 'gnus-icalendar
|
||||
:prefix "gnus-icalendar-org-")
|
||||
|
||||
|
@ -644,6 +645,7 @@ is searched."
|
|||
|
||||
(defgroup gnus-icalendar nil
|
||||
"Settings for inline display of iCalendar invitations."
|
||||
:version "24.4"
|
||||
:group 'gnus-article
|
||||
:prefix "gnus-icalendar-")
|
||||
|
||||
|
|
|
@ -897,6 +897,7 @@ subthreads, customize `gnus-subthread-sort-functions'."
|
|||
"*List of functions used for sorting subthreads in the summary buffer.
|
||||
By default, subthreads are sorted the same as threads, i.e.,
|
||||
according to the value of `gnus-thread-sort-functions'."
|
||||
:version "24.4"
|
||||
:group 'gnus-summary-sort
|
||||
:type '(choice
|
||||
(const :tag "Sort subthreads like threads" gnus-thread-sort-functions)
|
||||
|
|
|
@ -139,8 +139,9 @@ and `gnus-topic-alist'. Also see `gnus-variable-list'."
|
|||
"Carrier for newsrc data")
|
||||
|
||||
(defcustom gnus-sync-file-encrypt-to nil
|
||||
"If non-nil, `epa-file-encrypt-to' is set from this for encrypting the Sync
|
||||
file."
|
||||
"If non-nil, set `epa-file-encrypt-to' from this for encrypting the Sync file."
|
||||
:version "24.4"
|
||||
:type '(choice string (repeat string))
|
||||
:group 'gnus-sync)
|
||||
|
||||
(defcustom gnus-sync-lesync-name (system-name)
|
||||
|
|
|
@ -90,6 +90,7 @@ used."
|
|||
Alternative suggestions are:
|
||||
- \" \"
|
||||
- \" \""
|
||||
:version "24.4"
|
||||
:type 'string
|
||||
:group 'shr)
|
||||
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
|
||||
(defcustom pcmpl-x-tlmgr-program "tlmgr"
|
||||
"Name of the tlmgr program."
|
||||
:version "24.4"
|
||||
:type 'file
|
||||
:group 'pcomplete)
|
||||
|
||||
|
@ -154,6 +155,7 @@
|
|||
(executable-find "ack")
|
||||
"ack"))
|
||||
"Name of the ack program."
|
||||
:version "24.4"
|
||||
:type 'file
|
||||
:group 'pcomplete)
|
||||
|
||||
|
|
|
@ -80,6 +80,7 @@
|
|||
Used for syntax discovery and checking. Set to nil to disable
|
||||
the `compile-command' override. In that case, the ElDoc support
|
||||
will use a fallback syntax definition."
|
||||
:version "24.4"
|
||||
:group 'cfengine
|
||||
:type '(choice file (const nil)))
|
||||
|
||||
|
@ -138,7 +139,7 @@ bundle agent rcfiles
|
|||
perms => mog(\"600\", \"tzz\", \"tzz\");
|
||||
}
|
||||
"
|
||||
|
||||
:version "24.4"
|
||||
:group 'cfengine
|
||||
:type '(list
|
||||
(choice (const :tag "Anchor at beginning of promise" promise)
|
||||
|
|
|
@ -651,6 +651,7 @@ mode, include \"-q\" and \"--traditional\"."
|
|||
("warning:\\s-*\\([^:\n]+\\):.*at line \\([0-9]+\\), column \\([0-9]+\\)"
|
||||
1 2 3 1 1))
|
||||
"Value for `compilation-error-regexp-alist' in inferior octave."
|
||||
:version "24.4"
|
||||
:type '(repeat (choice (symbol :tag "Predefined symbol")
|
||||
(sexp :tag "Error specification")))
|
||||
:group 'octave)
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
;;; register.el --- register commands for Emacs -*- lexical-binding: t; -*-
|
||||
|
||||
;; Copyright (C) 1985, 1993-1994, 2001-2013 Free Software Foundation,
|
||||
;; Inc.
|
||||
;; Copyright (C) 1985, 1993-1994, 2001-2013 Free Software Foundation, Inc.
|
||||
|
||||
;; Maintainer: FSF
|
||||
;; Keywords: internal
|
||||
|
@ -91,6 +90,7 @@ text."
|
|||
|
||||
(defcustom register-preview-delay 1
|
||||
"If non-nil delay in seconds to pop up the preview window."
|
||||
:version "24.4"
|
||||
:type '(choice number (const :tag "Indefinitely" nil))
|
||||
:group 'register)
|
||||
|
||||
|
|
|
@ -878,6 +878,7 @@ have to define it using \\(?1:...\\) when adding new regexps.
|
|||
When changed from Lisp, make sure to call
|
||||
`reftex-compile-variables' afterwards to make the change
|
||||
effective."
|
||||
:version "24.4"
|
||||
:set (lambda (symbol value)
|
||||
(set symbol value)
|
||||
(when (fboundp 'reftex-compile-variables)
|
||||
|
|
|
@ -120,8 +120,9 @@ If SETUP is 'force, this variable has no effect."
|
|||
:type 'boolean)
|
||||
|
||||
(defcustom log-edit-setup-add-author nil
|
||||
"Non-nil means `log-edit' should add the `Author:' header when
|
||||
its SETUP argument is non-nil."
|
||||
"Non-nil means `log-edit' may add the `Author:' header.
|
||||
This applies when its SETUP argument is non-nil."
|
||||
:version "24.4"
|
||||
:group 'log-edit
|
||||
:type 'boolean
|
||||
:safe 'booleanp)
|
||||
|
|
Loading…
Add table
Reference in a new issue