diff options
| author | Josh Feinstein | 2012-08-21 20:45:51 -0700 |
|---|---|---|
| committer | Josh Feinstein | 2012-08-21 20:45:51 -0700 |
| commit | cb7857924bcc4bc1a2c1cec1aa169d63447ac6f8 (patch) | |
| tree | f26dc267129a9e1d894b79e935950a725f5ad1a6 | |
| parent | 94e0e5592ad531a577f4249564da8688d9d9ebea (diff) | |
| download | emacs-cb7857924bcc4bc1a2c1cec1aa169d63447ac6f8.tar.gz emacs-cb7857924bcc4bc1a2c1cec1aa169d63447ac6f8.zip | |
2012-08-21 Josh Feinstein <jlf@foxtail.org>
* erc-join.el (erc-autojoin-timing): Fix defcustom type.
| -rw-r--r-- | lisp/erc/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/erc/erc-join.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index 27b1fe8617a..37e755e7655 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-08-21 Josh Feinstein <jlf@foxtail.org> | ||
| 2 | |||
| 3 | * erc-join.el (erc-autojoin-timing): Fix defcustom type. | ||
| 4 | |||
| 1 | 2012-08-21 Julien Danjou <julien@danjou.info> | 5 | 2012-08-21 Julien Danjou <julien@danjou.info> |
| 2 | 6 | ||
| 3 | * erc-match.el (erc-match-message): Use | 7 | * erc-match.el (erc-match-message): Use |
diff --git a/lisp/erc/erc-join.el b/lisp/erc/erc-join.el index 85d1edf6427..ae7f90003a6 100644 --- a/lisp/erc/erc-join.el +++ b/lisp/erc/erc-join.el | |||
| @@ -84,8 +84,8 @@ identification, or after `erc-autojoin-delay' seconds. | |||
| 84 | Any other value means the same as `connect'." | 84 | Any other value means the same as `connect'." |
| 85 | :group 'erc-autojoin | 85 | :group 'erc-autojoin |
| 86 | :version "24.1" | 86 | :version "24.1" |
| 87 | :type '(choice (const :tag "On Connection" 'connect) | 87 | :type '(choice (const :tag "On Connection" connect) |
| 88 | (const :tag "When Identified" 'ident))) | 88 | (const :tag "When Identified" ident))) |
| 89 | 89 | ||
| 90 | (defcustom erc-autojoin-delay 30 | 90 | (defcustom erc-autojoin-delay 30 |
| 91 | "Number of seconds to wait before attempting to autojoin channels. | 91 | "Number of seconds to wait before attempting to autojoin channels. |