diff options
author | Masatake YAMATO <jet@gyve.org> | 2004-11-02 09:40:30 +0000 |
---|---|---|
committer | Masatake YAMATO <jet@gyve.org> | 2004-11-02 09:40:30 +0000 |
commit | 60b5eb7862e363b06cf38921228f658471e5ba4f (patch) | |
tree | 775d01164ad2b95677e1c50f3f1af8ce0008fda1 /lisp/url/url-irc.el | |
parent | 29bb7127341d58cdda011520188930dd92b630ab (diff) | |
download | emacs-60b5eb7862e363b06cf38921228f658471e5ba4f.tar.gz |
* url-imap.el (url-imap-open-host): Don't use
`string-to-int'. The port returned by `url-port'
is expected to be an integer.
* url-irc.el (url-irc): Ditto.
* url-news.el (url-news-open-host): Ditto.
* url-nfs.el (url-nfs-build-filename): Ditto.
Diffstat (limited to 'lisp/url/url-irc.el')
-rw-r--r-- | lisp/url/url-irc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/url/url-irc.el b/lisp/url/url-irc.el index 8b54b6d9222..31254dee451 100644 --- a/lisp/url/url-irc.el +++ b/lisp/url/url-irc.el @@ -61,7 +61,7 @@ PASSWORD - What password to use" ;;;###autoload (defun url-irc (url) (let* ((host (url-host url)) - (port (string-to-int (url-port url))) + (port (url-port url)) (pass (url-password url)) (user (url-user url)) (chan (url-filename url))) |