]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last change.
authorRomain Francoise <romain@orebokech.com>
Mon, 27 Mar 2006 21:02:19 +0000 (21:02 +0000)
committerRomain Francoise <romain@orebokech.com>
Mon, 27 Mar 2006 21:02:19 +0000 (21:02 +0000)
lisp/url/url-irc.el

index 17755ff88e1a04bc8d63ff29af53886e26cf98b1..6a7a62573e9154178a212cec3834050d26298a86 100644 (file)
@@ -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)