aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Francoise2006-03-27 21:02:19 +0000
committerRomain Francoise2006-03-27 21:02:19 +0000
commit354330cf16c79b22265f83aba0be2c014058898d (patch)
tree9cc4d649fd9320018e12486a043c6258871b3172
parentf55658040dbc67b3acf345d82d017e47389b0727 (diff)
downloademacs-354330cf16c79b22265f83aba0be2c014058898d.tar.gz
emacs-354330cf16c79b22265f83aba0be2c014058898d.zip
Fix last change.
-rw-r--r--lisp/url/url-irc.el3
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"
69 69
70(defun url-irc-erc (host port channel user password) 70(defun url-irc-erc (host port channel user password)
71 (erc-select :server host :port port :nick user :password password) 71 (erc-select :server host :port port :nick user :password password)
72 (erc-join-channel channel)) 72 (when channel
73 (erc-join-channel channel)))
73 74
74;;;###autoload 75;;;###autoload
75(defun url-irc (url) 76(defun url-irc (url)