From: Romain Francoise Date: Mon, 27 Mar 2006 21:02:19 +0000 (+0000) Subject: Fix last change. X-Git-Tag: emacs-pretest-22.0.90~3410 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=354330cf16c79b22265f83aba0be2c014058898d;p=emacs.git Fix last change. --- 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)