diff options
Diffstat (limited to 'lisp/url/url-irc.el')
-rw-r--r-- | lisp/url/url-irc.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/url/url-irc.el b/lisp/url/url-irc.el index 17755ff88e1..6a7a62573e9 100644 --- a/lisp/url/url-irc.el +++ b/lisp/url/url-irc.el @@ -69,7 +69,8 @@ PASSWORD - What password to use" (defun url-irc-erc (host port channel user password) (erc-select :server host :port port :nick user :password password) - (erc-join-channel channel)) + (when channel + (erc-join-channel channel))) ;;;###autoload (defun url-irc (url) |