diff options
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/bookmark.el | 5 | ||||
| -rw-r--r-- | lisp/cedet/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/cedet/ede/linux.el | 2 | ||||
| -rw-r--r-- | lisp/doc-view.el | 1 | ||||
| -rw-r--r-- | lisp/emacs-lisp/smie.el | 5 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/gnus-icalendar.el | 4 | ||||
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 1 | ||||
| -rw-r--r-- | lisp/gnus/gnus-sync.el | 5 | ||||
| -rw-r--r-- | lisp/net/shr.el | 1 | ||||
| -rw-r--r-- | lisp/pcmpl-x.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/cfengine.el | 3 | ||||
| -rw-r--r-- | lisp/progmodes/octave.el | 1 | ||||
| -rw-r--r-- | lisp/register.el | 4 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-vars.el | 1 | ||||
| -rw-r--r-- | lisp/vc/log-edit.el | 5 |
17 files changed, 47 insertions, 11 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ec743e384a7..37ab0c8b5c1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,17 @@ | |||
| 1 | 2013-12-28 Glenn Morris <rgm@gnu.org> | 1 | 2013-12-28 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * emacs-lisp/smie.el (smie-config): Add type, version, initialize. | ||
| 4 | * bookmark.el (bookmark-bmenu-use-header-line): | ||
| 5 | * doc-view.el (doc-view-scale-internally): | ||
| 6 | * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program): | ||
| 7 | * register.el (register-preview-delay): | ||
| 8 | * net/shr.el (shr-bullet): | ||
| 9 | * progmodes/cfengine.el (cfengine-cf-promises) | ||
| 10 | (cfengine-parameters-indent): | ||
| 11 | * progmodes/octave.el (inferior-octave-error-regexp-alist): | ||
| 12 | * textmodes/reftex-vars.el (reftex-label-regexps): | ||
| 13 | * vc/log-edit.el (log-edit-setup-add-author): Add version. | ||
| 14 | |||
| 3 | * net/tls.el (tls-certtool-program): Fix default value. | 15 | * net/tls.el (tls-certtool-program): Fix default value. |
| 4 | 16 | ||
| 5 | * desktop.el (desktop-restore-in-current-display): | 17 | * desktop.el (desktop-restore-in-current-display): |
diff --git a/lisp/bookmark.el b/lisp/bookmark.el index ce0d6831a3a..6e319dfe3a4 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el | |||
| @@ -130,8 +130,9 @@ recently set ones come first, oldest ones come last)." | |||
| 130 | :group 'bookmark) | 130 | :group 'bookmark) |
| 131 | 131 | ||
| 132 | (defcustom bookmark-bmenu-use-header-line t | 132 | (defcustom bookmark-bmenu-use-header-line t |
| 133 | "Non-nil means to use an immovable header line, as opposed to inline | 133 | "Non-nil means to use an immovable header line. |
| 134 | text at the top of the buffer." | 134 | This is as opposed to inline text at the top of the buffer." |
| 135 | :version "24.4" | ||
| 135 | :type 'boolean | 136 | :type 'boolean |
| 136 | :group 'bookmark) | 137 | :group 'bookmark) |
| 137 | 138 | ||
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))) |
diff --git a/lisp/doc-view.el b/lisp/doc-view.el index 71a865a7a49..c01eb190ac6 100644 --- a/lisp/doc-view.el +++ b/lisp/doc-view.el | |||
| @@ -198,6 +198,7 @@ Higher values result in larger images." | |||
| 198 | If nil, the document is re-rendered every time the scaling factor is modified. | 198 | If nil, the document is re-rendered every time the scaling factor is modified. |
| 199 | This only has an effect if the image libraries linked with Emacs support | 199 | This only has an effect if the image libraries linked with Emacs support |
| 200 | scaling." | 200 | scaling." |
| 201 | :version "24.4" | ||
| 201 | :type 'boolean) | 202 | :type 'boolean) |
| 202 | 203 | ||
| 203 | (defcustom doc-view-image-width 850 | 204 | (defcustom doc-view-image-width 850 |
diff --git a/lisp/emacs-lisp/smie.el b/lisp/emacs-lisp/smie.el index 08bf7348aa9..27ac5df80a1 100644 --- a/lisp/emacs-lisp/smie.el +++ b/lisp/emacs-lisp/smie.el | |||
| @@ -1923,6 +1923,11 @@ Each RULE element should be of the form (NEW KIND TOKEN NORMAL), | |||
| 1923 | where KIND and TOKEN are the elements passed to `smie-rules-function', | 1923 | where KIND and TOKEN are the elements passed to `smie-rules-function', |
| 1924 | NORMAL is the value returned by `smie-rules-function' and NEW is the | 1924 | NORMAL is the value returned by `smie-rules-function' and NEW is the |
| 1925 | value with which to replace it." | 1925 | value with which to replace it." |
| 1926 | :version "24.4" | ||
| 1927 | ;; FIXME improve value-type. | ||
| 1928 | :type '(choice (const nil) | ||
| 1929 | (alist :key-type symbol)) | ||
| 1930 | :initialize 'custom-initialize-default | ||
| 1926 | :set #'smie-config--setter) | 1931 | :set #'smie-config--setter) |
| 1927 | 1932 | ||
| 1928 | (defun smie-config-local (rules) | 1933 | (defun smie-config-local (rules) |
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index c38cf16e082..bb944c14351 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2013-12-28 Glenn Morris <rgm@gnu.org> | 1 | 2013-12-28 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * gnus-icalendar.el (gnus-icalendar-org, gnus-icalendar): | ||
| 4 | * gnus-sum.el (gnus-subthread-sort-functions): Add version. | ||
| 5 | * gnus-sync.el (gnus-sync-file-encrypt-to): Add type and version. | ||
| 6 | |||
| 3 | * auth-source.el (auth-sources): | 7 | * auth-source.el (auth-sources): |
| 4 | * nnmairix.el (nnmairix-propagate-marks-upon-close): | 8 | * nnmairix.el (nnmairix-propagate-marks-upon-close): |
| 5 | Fix custom types. | 9 | Fix custom types. |
diff --git a/lisp/gnus/gnus-icalendar.el b/lisp/gnus/gnus-icalendar.el index 1abcb6e27e4..4ceec60ed6e 100644 --- a/lisp/gnus/gnus-icalendar.el +++ b/lisp/gnus/gnus-icalendar.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; gnus-icalendar.el --- reply to iCalendar meeting requests | 1 | ;;; gnus-icalendar.el --- reply to iCalendar meeting requests |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Jan Tatarik <Jan.Tatarik@gmail.com> | 5 | ;; Author: Jan Tatarik <Jan.Tatarik@gmail.com> |
| 6 | ;; Keywords: mail, icalendar, org | 6 | ;; Keywords: mail, icalendar, org |
| @@ -344,6 +344,7 @@ on the IDENTITIES list." | |||
| 344 | 344 | ||
| 345 | (defgroup gnus-icalendar-org nil | 345 | (defgroup gnus-icalendar-org nil |
| 346 | "Settings for Calendar Event gnus/org integration." | 346 | "Settings for Calendar Event gnus/org integration." |
| 347 | :version "24.4" | ||
| 347 | :group 'gnus-icalendar | 348 | :group 'gnus-icalendar |
| 348 | :prefix "gnus-icalendar-org-") | 349 | :prefix "gnus-icalendar-org-") |
| 349 | 350 | ||
| @@ -644,6 +645,7 @@ is searched." | |||
| 644 | 645 | ||
| 645 | (defgroup gnus-icalendar nil | 646 | (defgroup gnus-icalendar nil |
| 646 | "Settings for inline display of iCalendar invitations." | 647 | "Settings for inline display of iCalendar invitations." |
| 648 | :version "24.4" | ||
| 647 | :group 'gnus-article | 649 | :group 'gnus-article |
| 648 | :prefix "gnus-icalendar-") | 650 | :prefix "gnus-icalendar-") |
| 649 | 651 | ||
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 49e5aa7fabf..f6caf8a8120 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -897,6 +897,7 @@ subthreads, customize `gnus-subthread-sort-functions'." | |||
| 897 | "*List of functions used for sorting subthreads in the summary buffer. | 897 | "*List of functions used for sorting subthreads in the summary buffer. |
| 898 | By default, subthreads are sorted the same as threads, i.e., | 898 | By default, subthreads are sorted the same as threads, i.e., |
| 899 | according to the value of `gnus-thread-sort-functions'." | 899 | according to the value of `gnus-thread-sort-functions'." |
| 900 | :version "24.4" | ||
| 900 | :group 'gnus-summary-sort | 901 | :group 'gnus-summary-sort |
| 901 | :type '(choice | 902 | :type '(choice |
| 902 | (const :tag "Sort subthreads like threads" gnus-thread-sort-functions) | 903 | (const :tag "Sort subthreads like threads" gnus-thread-sort-functions) |
diff --git a/lisp/gnus/gnus-sync.el b/lisp/gnus/gnus-sync.el index 8cf92df5b91..0b63e519695 100644 --- a/lisp/gnus/gnus-sync.el +++ b/lisp/gnus/gnus-sync.el | |||
| @@ -139,8 +139,9 @@ and `gnus-topic-alist'. Also see `gnus-variable-list'." | |||
| 139 | "Carrier for newsrc data") | 139 | "Carrier for newsrc data") |
| 140 | 140 | ||
| 141 | (defcustom gnus-sync-file-encrypt-to nil | 141 | (defcustom gnus-sync-file-encrypt-to nil |
| 142 | "If non-nil, `epa-file-encrypt-to' is set from this for encrypting the Sync | 142 | "If non-nil, set `epa-file-encrypt-to' from this for encrypting the Sync file." |
| 143 | file." | 143 | :version "24.4" |
| 144 | :type '(choice string (repeat string)) | ||
| 144 | :group 'gnus-sync) | 145 | :group 'gnus-sync) |
| 145 | 146 | ||
| 146 | (defcustom gnus-sync-lesync-name (system-name) | 147 | (defcustom gnus-sync-lesync-name (system-name) |
diff --git a/lisp/net/shr.el b/lisp/net/shr.el index b29ae6ce848..1604ebbd7e2 100644 --- a/lisp/net/shr.el +++ b/lisp/net/shr.el | |||
| @@ -90,6 +90,7 @@ used." | |||
| 90 | Alternative suggestions are: | 90 | Alternative suggestions are: |
| 91 | - \" \" | 91 | - \" \" |
| 92 | - \" \"" | 92 | - \" \"" |
| 93 | :version "24.4" | ||
| 93 | :type 'string | 94 | :type 'string |
| 94 | :group 'shr) | 95 | :group 'shr) |
| 95 | 96 | ||
diff --git a/lisp/pcmpl-x.el b/lisp/pcmpl-x.el index 8e09c660301..23fa0836ecd 100644 --- a/lisp/pcmpl-x.el +++ b/lisp/pcmpl-x.el | |||
| @@ -31,6 +31,7 @@ | |||
| 31 | 31 | ||
| 32 | (defcustom pcmpl-x-tlmgr-program "tlmgr" | 32 | (defcustom pcmpl-x-tlmgr-program "tlmgr" |
| 33 | "Name of the tlmgr program." | 33 | "Name of the tlmgr program." |
| 34 | :version "24.4" | ||
| 34 | :type 'file | 35 | :type 'file |
| 35 | :group 'pcomplete) | 36 | :group 'pcomplete) |
| 36 | 37 | ||
| @@ -154,6 +155,7 @@ | |||
| 154 | (executable-find "ack") | 155 | (executable-find "ack") |
| 155 | "ack")) | 156 | "ack")) |
| 156 | "Name of the ack program." | 157 | "Name of the ack program." |
| 158 | :version "24.4" | ||
| 157 | :type 'file | 159 | :type 'file |
| 158 | :group 'pcomplete) | 160 | :group 'pcomplete) |
| 159 | 161 | ||
diff --git a/lisp/progmodes/cfengine.el b/lisp/progmodes/cfengine.el index b5210ce0c74..06265d31a9e 100644 --- a/lisp/progmodes/cfengine.el +++ b/lisp/progmodes/cfengine.el | |||
| @@ -80,6 +80,7 @@ | |||
| 80 | Used for syntax discovery and checking. Set to nil to disable | 80 | Used for syntax discovery and checking. Set to nil to disable |
| 81 | the `compile-command' override. In that case, the ElDoc support | 81 | the `compile-command' override. In that case, the ElDoc support |
| 82 | will use a fallback syntax definition." | 82 | will use a fallback syntax definition." |
| 83 | :version "24.4" | ||
| 83 | :group 'cfengine | 84 | :group 'cfengine |
| 84 | :type '(choice file (const nil))) | 85 | :type '(choice file (const nil))) |
| 85 | 86 | ||
| @@ -138,7 +139,7 @@ bundle agent rcfiles | |||
| 138 | perms => mog(\"600\", \"tzz\", \"tzz\"); | 139 | perms => mog(\"600\", \"tzz\", \"tzz\"); |
| 139 | } | 140 | } |
| 140 | " | 141 | " |
| 141 | 142 | :version "24.4" | |
| 142 | :group 'cfengine | 143 | :group 'cfengine |
| 143 | :type '(list | 144 | :type '(list |
| 144 | (choice (const :tag "Anchor at beginning of promise" promise) | 145 | (choice (const :tag "Anchor at beginning of promise" promise) |
diff --git a/lisp/progmodes/octave.el b/lisp/progmodes/octave.el index ace4ef343db..f3ad8de6014 100644 --- a/lisp/progmodes/octave.el +++ b/lisp/progmodes/octave.el | |||
| @@ -651,6 +651,7 @@ mode, include \"-q\" and \"--traditional\"." | |||
| 651 | ("warning:\\s-*\\([^:\n]+\\):.*at line \\([0-9]+\\), column \\([0-9]+\\)" | 651 | ("warning:\\s-*\\([^:\n]+\\):.*at line \\([0-9]+\\), column \\([0-9]+\\)" |
| 652 | 1 2 3 1 1)) | 652 | 1 2 3 1 1)) |
| 653 | "Value for `compilation-error-regexp-alist' in inferior octave." | 653 | "Value for `compilation-error-regexp-alist' in inferior octave." |
| 654 | :version "24.4" | ||
| 654 | :type '(repeat (choice (symbol :tag "Predefined symbol") | 655 | :type '(repeat (choice (symbol :tag "Predefined symbol") |
| 655 | (sexp :tag "Error specification"))) | 656 | (sexp :tag "Error specification"))) |
| 656 | :group 'octave) | 657 | :group 'octave) |
diff --git a/lisp/register.el b/lisp/register.el index cad26124fdd..945fb28bffe 100644 --- a/lisp/register.el +++ b/lisp/register.el | |||
| @@ -1,7 +1,6 @@ | |||
| 1 | ;;; register.el --- register commands for Emacs -*- lexical-binding: t; -*- | 1 | ;;; register.el --- register commands for Emacs -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1985, 1993-1994, 2001-2013 Free Software Foundation, | 3 | ;; Copyright (C) 1985, 1993-1994, 2001-2013 Free Software Foundation, Inc. |
| 4 | ;; Inc. | ||
| 5 | 4 | ||
| 6 | ;; Maintainer: FSF | 5 | ;; Maintainer: FSF |
| 7 | ;; Keywords: internal | 6 | ;; Keywords: internal |
| @@ -91,6 +90,7 @@ text." | |||
| 91 | 90 | ||
| 92 | (defcustom register-preview-delay 1 | 91 | (defcustom register-preview-delay 1 |
| 93 | "If non-nil delay in seconds to pop up the preview window." | 92 | "If non-nil delay in seconds to pop up the preview window." |
| 93 | :version "24.4" | ||
| 94 | :type '(choice number (const :tag "Indefinitely" nil)) | 94 | :type '(choice number (const :tag "Indefinitely" nil)) |
| 95 | :group 'register) | 95 | :group 'register) |
| 96 | 96 | ||
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el index 3d82a9f7b31..842d9680d93 100644 --- a/lisp/textmodes/reftex-vars.el +++ b/lisp/textmodes/reftex-vars.el | |||
| @@ -878,6 +878,7 @@ have to define it using \\(?1:...\\) when adding new regexps. | |||
| 878 | When changed from Lisp, make sure to call | 878 | When changed from Lisp, make sure to call |
| 879 | `reftex-compile-variables' afterwards to make the change | 879 | `reftex-compile-variables' afterwards to make the change |
| 880 | effective." | 880 | effective." |
| 881 | :version "24.4" | ||
| 881 | :set (lambda (symbol value) | 882 | :set (lambda (symbol value) |
| 882 | (set symbol value) | 883 | (set symbol value) |
| 883 | (when (fboundp 'reftex-compile-variables) | 884 | (when (fboundp 'reftex-compile-variables) |
diff --git a/lisp/vc/log-edit.el b/lisp/vc/log-edit.el index 791215b8000..f324f248094 100644 --- a/lisp/vc/log-edit.el +++ b/lisp/vc/log-edit.el | |||
| @@ -120,8 +120,9 @@ If SETUP is 'force, this variable has no effect." | |||
| 120 | :type 'boolean) | 120 | :type 'boolean) |
| 121 | 121 | ||
| 122 | (defcustom log-edit-setup-add-author nil | 122 | (defcustom log-edit-setup-add-author nil |
| 123 | "Non-nil means `log-edit' should add the `Author:' header when | 123 | "Non-nil means `log-edit' may add the `Author:' header. |
| 124 | its SETUP argument is non-nil." | 124 | This applies when its SETUP argument is non-nil." |
| 125 | :version "24.4" | ||
| 125 | :group 'log-edit | 126 | :group 'log-edit |
| 126 | :type 'boolean | 127 | :type 'boolean |
| 127 | :safe 'booleanp) | 128 | :safe 'booleanp) |