changeset 78877:34c4022cc356

Diane Murray <disumu at x3y2z1.net> (url-generic-emulator-loader): Send the port as a string to `url-do-terminal-emulator'.
author Glenn Morris <rgm@gnu.org>
date Sat, 22 Sep 2007 19:00:22 +0000
parents 6824f67c5a37
children e76d093430d8
files lisp/url/url-misc.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/url/url-misc.el	Sat Sep 22 17:52:17 2007 +0000
+++ b/lisp/url/url-misc.el	Sat Sep 22 19:00:22 2007 +0000
@@ -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)