aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-09-22 19:01:28 +0000
committerGlenn Morris2007-09-22 19:01:28 +0000
commit8a35aa368fc789b0729cc468a1c5d18996817dcb (patch)
treedda8b76c84119428c10e5a8d92ad4970d574bb71
parent600e5c79afe843bdc2986bac7101882e585b77bd (diff)
downloademacs-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/ChangeLog5
-rw-r--r--lisp/url/url-misc.el2
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 @@
12007-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
12007-09-21 Diane Murray <disumu@x3y2z1.net> 62007-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