From 0486afd7a8795cc49d532cca514dc4da60191ba2 Mon Sep 17 00:00:00 2001 From: "timeless%mac.com" Date: Tue, 6 Mar 2001 15:51:05 +0000 Subject: [PATCH] fix bug 46127 -console option missing from -help listing patch by anedah-9@sm.luth.se r=timeless, sr=alecf git-svn-id: svn://10.0.0.236/trunk@88659 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpfe/bootstrap/nsAppRunner.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mozilla/xpfe/bootstrap/nsAppRunner.cpp b/mozilla/xpfe/bootstrap/nsAppRunner.cpp index e989f0a29f2..f84e863bea9 100644 --- a/mozilla/xpfe/bootstrap/nsAppRunner.cpp +++ b/mozilla/xpfe/bootstrap/nsAppRunner.cpp @@ -1057,6 +1057,9 @@ static void DumpHelp(char *appname) printf("%s-ProfileWizard%sStart with profile wizard.\n",HELP_SPACER_1,HELP_SPACER_2); printf("%s-ProfileManager%sStart with profile manager.\n",HELP_SPACER_1,HELP_SPACER_2); printf("%s-SelectProfile%sStart with profile selection dialog.\n",HELP_SPACER_1,HELP_SPACER_2); +#ifdef XP_WIN32 + printf("%s-console%sStart Mozilla with a debugging console.\n",HELP_SPACER_1,HELP_SPACER_2); +#endif #ifdef MOZ_ENABLE_XREMOTE printf("%s-remote %sExecute in an already running\n" "%sMozilla process. For more info, see:\n"