diff options
| author | Glenn Morris | 2007-09-22 19:01:28 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-09-22 19:01:28 +0000 |
| commit | 8a35aa368fc789b0729cc468a1c5d18996817dcb (patch) | |
| tree | dda8b76c84119428c10e5a8d92ad4970d574bb71 | |
| parent | 600e5c79afe843bdc2986bac7101882e585b77bd (diff) | |
| download | emacs-8a35aa368fc789b0729cc468a1c5d18996817dcb.tar.gz emacs-8a35aa368fc789b0729cc468a1c5d18996817dcb.zip | |
Diane Murray <disumu at x3y2z1.net>
(url-generic-emulator-loader): Send the port as a string to
`url-do-terminal-emulator'.
| -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 @@ | |||
| 1 | 2007-09-22 Diane Murray <disumu@x3y2z1.net> | ||
| 2 | |||
| 3 | * url-misc.el (url-generic-emulator-loader): Send the port as a | ||
| 4 | string to `url-do-terminal-emulator'. | ||
| 5 | |||
| 1 | 2007-09-21 Diane Murray <disumu@x3y2z1.net> | 6 | 2007-09-21 Diane Murray <disumu@x3y2z1.net> |
| 2 | 7 | ||
| 3 | * url-news.el (url-news-fetch-newsgroup): Fix formatting of Gnus | 8 | * 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 @@ | |||
| 75 | (let* ((type (intern (downcase (url-type url)))) | 75 | (let* ((type (intern (downcase (url-type url)))) |
| 76 | (server (url-host url)) | 76 | (server (url-host url)) |
| 77 | (name (url-user url)) | 77 | (name (url-user url)) |
| 78 | (port (url-port url))) | 78 | (port (number-to-string (url-port url)))) |
| 79 | (url-do-terminal-emulator type server port name)) | 79 | (url-do-terminal-emulator type server port name)) |
| 80 | nil) | 80 | nil) |
| 81 | 81 | ||