]> git.eshelyaron.com Git - emacs.git/commitdiff
Add missing :version tags for new erc defcustoms.
authorGlenn Morris <rgm@gnu.org>
Wed, 8 Feb 2012 08:07:24 +0000 (00:07 -0800)
committerGlenn Morris <rgm@gnu.org>
Wed, 8 Feb 2012 08:07:24 +0000 (00:07 -0800)
* lisp/erc/erc-backend.el (erc-coding-system-precedence):
* lisp/erc/erc-join.el (erc-autojoin-delay, erc-autojoin-timing):
Add missing :version settings.

* etc/NEWS: We don't need to duplicate the doc-strings of variables.

etc/NEWS
lisp/erc/ChangeLog
lisp/erc/erc-backend.el
lisp/erc/erc-join.el

index 08214542d4c83931dfe84898a6e942be4763b6ad..d0993707cf159ebeae75fd949dbdc29cd0cfcb35 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -701,11 +701,9 @@ The standard directory local variables feature replaces it.
 
 ** ERC changes
 
-*** New vars `erc-autojoin-timing' and `erc-autojoin-delay'.
-If the value of `erc-autojoin-timing' is 'ident, ERC autojoins after a
-successful NickServ identification, or after `erc-autojoin-delay'
-seconds.  The default value, 'ident, means to autojoin immediately
-after connecting.
+---
+*** New options `erc-autojoin-timing' and `erc-autojoin-delay',
+controlling attempts to autojoin a channel.
 
 *** New variable `erc-coding-system-precedence': If we use `undecided'
 as the server coding system, this variable will then be consulted.
index dcc7b8c90cfa02f1f6edadb7fde637fe66d1311b..af853c4e230740968fc5460fcebab41fca6fce3b 100644 (file)
@@ -1,3 +1,9 @@
+2012-02-08  Glenn Morris  <rgm@gnu.org>
+
+       * erc-backend.el (erc-coding-system-precedence):
+       * erc-join.el (erc-autojoin-delay, erc-autojoin-timing):
+       Add missing :version settings.
+
 2012-01-06  Glenn Morris  <rgm@gnu.org>
 
        * erc.el (erc-tls): Add autoload cookie.  (Bug#10333)
index 2c76b04e3ef32bbb46b413add6494129d221eb0c..7bc56584eafe42541cc47edad30cc98d5f5587ec 100644 (file)
@@ -329,6 +329,7 @@ Good luck."
 This will only be consulted if the coding system in
 `erc-server-coding-system' is `undecided'."
   :group 'erc-server
+  :version "24.1"
   :type '(repeat coding-system))
 
 (defcustom erc-server-coding-system (if (and (fboundp 'coding-system-p)
index 855dde755421c01aef9d07425abdeb0dd2bbe447..da894ba5977ea9e61bf348cabeddd41823d8e76b 100644 (file)
@@ -75,6 +75,7 @@ If the value is `ident', autojoin after successful NickServ
 identification, or after `erc-autojoin-delay' seconds.
 Any other value means the same as `connect'."
   :group 'erc-autojoin
+  :version "24.1"
   :type  '(choice (const :tag "On Connection" 'connect)
                  (const :tag "When Identified" 'ident)))
 
@@ -84,6 +85,7 @@ This only takes effect if `erc-autojoin-timing' is `ident'.
 If NickServ identification occurs before this delay expires, ERC
 autojoins immediately at that time."
   :group 'erc-autojoin
+  :version "24.1"
   :type  'integer)
 
 (defcustom erc-autojoin-domain-only t