diff options
author | Glenn Morris <rgm@gnu.org> | 2007-09-22 19:01:28 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-09-22 19:01:28 +0000 |
commit | 8a35aa368fc789b0729cc468a1c5d18996817dcb (patch) | |
tree | dda8b76c84119428c10e5a8d92ad4970d574bb71 /lisp | |
parent | 600e5c79afe843bdc2986bac7101882e585b77bd (diff) | |
download | emacs-8a35aa368fc789b0729cc468a1c5d18996817dcb.tar.gz |
Diane Murray <disumu at x3y2z1.net>
(url-generic-emulator-loader): Send the port as a string to
`url-do-terminal-emulator'.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/url/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/url/url-misc.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index e7b441bf55e..05be493b74e 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,8 @@ +2007-09-22 Diane Murray <disumu@x3y2z1.net> + + * url-misc.el (url-generic-emulator-loader): Send the port as a + string to `url-do-terminal-emulator'. + 2007-09-21 Diane Murray <disumu@x3y2z1.net> * url-news.el (url-news-fetch-newsgroup): Fix formatting of Gnus diff --git a/lisp/url/url-misc.el b/lisp/url/url-misc.el index a793cacc5bc..f70726407d3 100644 --- a/lisp/url/url-misc.el +++ b/lisp/url/url-misc.el @@ -75,7 +75,7 @@ (let* ((type (intern (downcase (url-type url)))) (server (url-host url)) (name (url-user url)) - (port (url-port url))) + (port (number-to-string (url-port url)))) (url-do-terminal-emulator type server port name)) nil) |