From df793e6763c43546afbc0694d467213f01a9a8ae Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 9 Jul 2001 12:58:08 +0000 Subject: [PATCH] Fixed a typo ... --- src/GUI/gui.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI/gui.cxx b/src/GUI/gui.cxx index 27af469bd..985cfc60b 100644 --- a/src/GUI/gui.cxx +++ b/src/GUI/gui.cxx @@ -440,7 +440,7 @@ void helpCb (puObject *) if ( system("xwininfo -name Netscape > /dev/null 2>&1") == 0 ) { command = help_app + " -remote \"openURL(" + path.str() + ")\""; } else { - command = help_app + path.str(); + command = help_app + " " + path.str(); } #if !defined(WIN32) command += " &";