diff options
| author | Glenn Morris | 2012-02-08 00:07:24 -0800 |
|---|---|---|
| committer | Glenn Morris | 2012-02-08 00:07:24 -0800 |
| commit | c4077254f9de69f8204d58cadeecf122eff46ed3 (patch) | |
| tree | b3e482914f27d6cf1ce67480e928240ed261ed39 | |
| parent | ffb6157eccc8e08ae5c5ea3bb81136ad5bad4d29 (diff) | |
| download | emacs-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/NEWS | 8 | ||||
| -rw-r--r-- | lisp/erc/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/erc/erc-backend.el | 1 | ||||
| -rw-r--r-- | lisp/erc/erc-join.el | 2 |
4 files changed, 12 insertions, 5 deletions
| @@ -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 | --- |
| 705 | If the value of `erc-autojoin-timing' is 'ident, ERC autojoins after a | 705 | *** New options `erc-autojoin-timing' and `erc-autojoin-delay', |
| 706 | successful NickServ identification, or after `erc-autojoin-delay' | 706 | controlling attempts to autojoin a channel. |
| 707 | seconds. The default value, 'ident, means to autojoin immediately | ||
| 708 | after 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' |
| 711 | as the server coding system, this variable will then be consulted. | 709 | as 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 @@ | |||
| 1 | 2012-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 | |||
| 1 | 2012-01-06 Glenn Morris <rgm@gnu.org> | 7 | 2012-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." | |||
| 329 | This will only be consulted if the coding system in | 329 | This 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 | |||
| 75 | identification, or after `erc-autojoin-delay' seconds. | 75 | identification, or after `erc-autojoin-delay' seconds. |
| 76 | Any other value means the same as `connect'." | 76 | Any 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'. | |||
| 84 | If NickServ identification occurs before this delay expires, ERC | 85 | If NickServ identification occurs before this delay expires, ERC |
| 85 | autojoins immediately at that time." | 86 | autojoins 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 |