From d7e79cde818b6a09c453e8ffc036e9551e889dc5 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Fri, 13 Jul 2007 16:52:01 +0000 Subject: [PATCH] fix dangling quote svn: r6906 --- collects/net/sendurl.ss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/collects/net/sendurl.ss b/collects/net/sendurl.ss index 0c9d0be2cd..2687610371 100644 --- a/collects/net/sendurl.ss +++ b/collects/net/sendurl.ss @@ -56,8 +56,7 @@ (cond [(procedure? external) (external url-str)] [(eq? stype 'macosx) - (browser-process - (format "open \"~a\"'" url-str))] + (browser-process (format "open \"~a\"" url-str))] [(eq? stype 'windows) (shell-execute #f url-str "" (current-directory) 'SW_SHOWNORMAL)] [(not (eq? stype 'unix))