aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-02-08 00:07:24 -0800
committerGlenn Morris2012-02-08 00:07:24 -0800
commitc4077254f9de69f8204d58cadeecf122eff46ed3 (patch)
treeb3e482914f27d6cf1ce67480e928240ed261ed39
parentffb6157eccc8e08ae5c5ea3bb81136ad5bad4d29 (diff)
downloademacs-c4077254f9de69f8204d58cadeecf122eff46ed3.tar.gz
emacs-c4077254f9de69f8204d58cadeecf122eff46ed3.zip
Add missing :version tags for new erc defcustoms.
* 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.
-rw-r--r--etc/NEWS8
-rw-r--r--lisp/erc/ChangeLog6
-rw-r--r--lisp/erc/erc-backend.el1
-rw-r--r--lisp/erc/erc-join.el2
4 files changed, 12 insertions, 5 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 08214542d4c..d0993707cf1 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -701,11 +701,9 @@ The standard directory local variables feature replaces it.
701 701
702** ERC changes 702** ERC changes
703 703
704*** New vars `erc-autojoin-timing' and `erc-autojoin-delay'. 704---
705If the value of `erc-autojoin-timing' is 'ident, ERC autojoins after a 705*** New options `erc-autojoin-timing' and `erc-autojoin-delay',
706successful NickServ identification, or after `erc-autojoin-delay' 706controlling attempts to autojoin a channel.
707seconds. The default value, 'ident, means to autojoin immediately
708after connecting.
709 707
710*** New variable `erc-coding-system-precedence': If we use `undecided' 708*** New variable `erc-coding-system-precedence': If we use `undecided'
711as the server coding system, this variable will then be consulted. 709as the server coding system, this variable will then be consulted.
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog
index dcc7b8c90cf..af853c4e230 100644
--- a/lisp/erc/ChangeLog
+++ b/lisp/erc/ChangeLog
@@ -1,3 +1,9 @@
12012-02-08 Glenn Morris <rgm@gnu.org>
2
3 * erc-backend.el (erc-coding-system-precedence):
4 * erc-join.el (erc-autojoin-delay, erc-autojoin-timing):
5 Add missing :version settings.
6
12012-01-06 Glenn Morris <rgm@gnu.org> 72012-01-06 Glenn Morris <rgm@gnu.org>
2 8
3 * erc.el (erc-tls): Add autoload cookie. (Bug#10333) 9 * erc.el (erc-tls): Add autoload cookie. (Bug#10333)
diff --git a/lisp/erc/erc-backend.el b/lisp/erc/erc-backend.el
index 2c76b04e3ef..7bc56584eaf 100644
--- a/lisp/erc/erc-backend.el
+++ b/lisp/erc/erc-backend.el
@@ -329,6 +329,7 @@ Good luck."
329This will only be consulted if the coding system in 329This will only be consulted if the coding system in
330`erc-server-coding-system' is `undecided'." 330`erc-server-coding-system' is `undecided'."
331 :group 'erc-server 331 :group 'erc-server
332 :version "24.1"
332 :type '(repeat coding-system)) 333 :type '(repeat coding-system))
333 334
334(defcustom erc-server-coding-system (if (and (fboundp 'coding-system-p) 335(defcustom erc-server-coding-system (if (and (fboundp 'coding-system-p)
diff --git a/lisp/erc/erc-join.el b/lisp/erc/erc-join.el
index 855dde75542..da894ba5977 100644
--- a/lisp/erc/erc-join.el
+++ b/lisp/erc/erc-join.el
@@ -75,6 +75,7 @@ If the value is `ident', autojoin after successful NickServ
75identification, or after `erc-autojoin-delay' seconds. 75identification, or after `erc-autojoin-delay' seconds.
76Any other value means the same as `connect'." 76Any other value means the same as `connect'."
77 :group 'erc-autojoin 77 :group 'erc-autojoin
78 :version "24.1"
78 :type '(choice (const :tag "On Connection" 'connect) 79 :type '(choice (const :tag "On Connection" 'connect)
79 (const :tag "When Identified" 'ident))) 80 (const :tag "When Identified" 'ident)))
80 81
@@ -84,6 +85,7 @@ This only takes effect if `erc-autojoin-timing' is `ident'.
84If NickServ identification occurs before this delay expires, ERC 85If NickServ identification occurs before this delay expires, ERC
85autojoins immediately at that time." 86autojoins immediately at that time."
86 :group 'erc-autojoin 87 :group 'erc-autojoin
88 :version "24.1"
87 :type 'integer) 89 :type 'integer)
88 90
89(defcustom erc-autojoin-domain-only t 91(defcustom erc-autojoin-domain-only t