aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Feinstein2012-08-21 20:45:51 -0700
committerJosh Feinstein2012-08-21 20:45:51 -0700
commitcb7857924bcc4bc1a2c1cec1aa169d63447ac6f8 (patch)
treef26dc267129a9e1d894b79e935950a725f5ad1a6
parent94e0e5592ad531a577f4249564da8688d9d9ebea (diff)
downloademacs-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/ChangeLog4
-rw-r--r--lisp/erc/erc-join.el4
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 @@
12012-08-21 Josh Feinstein <jlf@foxtail.org>
2
3 * erc-join.el (erc-autojoin-timing): Fix defcustom type.
4
12012-08-21 Julien Danjou <julien@danjou.info> 52012-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.
84Any other value means the same as `connect'." 84Any 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.