diff options
| author | Glenn Morris | 2013-12-27 18:16:05 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-12-27 18:16:05 -0800 |
| commit | bb0980751eb1640de3e1699ce6256e282e7c6521 (patch) | |
| tree | 9d24be7d8704a0a0a350457da3fe71b92ee0778e /lisp/cedet | |
| parent | 9c61f806fb122612fc7bc1ddb2cb5ea00e5621f1 (diff) | |
| download | emacs-bb0980751eb1640de3e1699ce6256e282e7c6521.tar.gz emacs-bb0980751eb1640de3e1699ce6256e282e7c6521.zip | |
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.
Diffstat (limited to 'lisp/cedet')
| -rw-r--r-- | lisp/cedet/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/cedet/ede/linux.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/cedet/ChangeLog b/lisp/cedet/ChangeLog index a00d9877206..e11c8b8770e 100644 --- a/lisp/cedet/ChangeLog +++ b/lisp/cedet/ChangeLog | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | 2013-12-28 Glenn Morris <rgm@gnu.org> | 1 | 2013-12-28 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * ede/linux.el (project-linux-build-directory-default) | 3 | * ede/linux.el (project-linux-build-directory-default) |
| 4 | (project-linux-architecture-default): Fix custom types. | 4 | (project-linux-architecture-default): Fix custom types. Add version. |
| 5 | 5 | ||
| 6 | 2013-12-12 David Engster <deng@randomsample.de> | 6 | 2013-12-12 David Engster <deng@randomsample.de> |
| 7 | 7 | ||
diff --git a/lisp/cedet/ede/linux.el b/lisp/cedet/ede/linux.el index 0d89f0ece18..9e80f466baa 100644 --- a/lisp/cedet/ede/linux.el +++ b/lisp/cedet/ede/linux.el | |||
| @@ -50,12 +50,14 @@ | |||
| 50 | 50 | ||
| 51 | (defcustom project-linux-build-directory-default 'ask | 51 | (defcustom project-linux-build-directory-default 'ask |
| 52 | "Build directory." | 52 | "Build directory." |
| 53 | :version "24.4" | ||
| 53 | :group 'project-linux | 54 | :group 'project-linux |
| 54 | :type '(choice (const :tag "Same as source directory" same) | 55 | :type '(choice (const :tag "Same as source directory" same) |
| 55 | (const :tag "Ask the user" ask))) | 56 | (const :tag "Ask the user" ask))) |
| 56 | 57 | ||
| 57 | (defcustom project-linux-architecture-default 'ask | 58 | (defcustom project-linux-architecture-default 'ask |
| 58 | "Target architecture to assume when not auto-detected." | 59 | "Target architecture to assume when not auto-detected." |
| 60 | :version "24.4" | ||
| 59 | :group 'project-linux | 61 | :group 'project-linux |
| 60 | :type '(choice (string :tag "Architecture name") | 62 | :type '(choice (string :tag "Architecture name") |
| 61 | (const :tag "Ask the user" ask))) | 63 | (const :tag "Ask the user" ask))) |