From 21c494d839230343b6c68e2e85f88744137af2c1 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 22 Sep 2007 19:01:39 +0000 Subject: [PATCH] Diane Murray (url-generic-emulator-loader): Send the port as a string to `url-do-terminal-emulator'. --- lisp/url/ChangeLog | 5 +++++ lisp/url/url-misc.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 7fc6fdb85e4..6cdf672d7ab 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,8 @@ +2007-09-22 Diane Murray + + * url-misc.el (url-generic-emulator-loader): Send the port as a + string to `url-do-terminal-emulator'. + 2007-09-21 Diane Murray * 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) -- 2.39.2