diff options
author | Josh Feinstein <jlf@foxtail.org> | 2012-08-21 20:45:51 -0700 |
---|---|---|
committer | Josh Feinstein <jlf@foxtail.org> | 2012-08-21 20:45:51 -0700 |
commit | cb7857924bcc4bc1a2c1cec1aa169d63447ac6f8 (patch) | |
tree | f26dc267129a9e1d894b79e935950a725f5ad1a6 /lisp/erc/erc-join.el | |
parent | 94e0e5592ad531a577f4249564da8688d9d9ebea (diff) | |
download | emacs-cb7857924bcc4bc1a2c1cec1aa169d63447ac6f8.tar.gz |
2012-08-21 Josh Feinstein <jlf@foxtail.org>
* erc-join.el (erc-autojoin-timing): Fix defcustom type.
Diffstat (limited to 'lisp/erc/erc-join.el')
-rw-r--r-- | lisp/erc/erc-join.el | 4 |
1 files changed, 2 insertions, 2 deletions
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. 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))) + :type '(choice (const :tag "On Connection" connect) + (const :tag "When Identified" ident))) (defcustom erc-autojoin-delay 30 "Number of seconds to wait before attempting to autojoin channels. |