From 259e214960c23346628311d88427c7ca13bdb335 Mon Sep 17 00:00:00 2001
From: janekptacijarabaci <janekptacijarabaci@seznam.cz>
Date: Wed, 28 Feb 2018 08:49:42 +0100
Subject: Basilisk - the cmd line - help (the columns alignment, error
 improvements)

https://github.com/MoonchildProductions/moebius/pull/58
---
 toolkit/xre/nsAppRunner.cpp | 31 ++++++++++++++++---------------
 1 file changed, 16 insertions(+), 15 deletions(-)

(limited to 'toolkit/xre/nsAppRunner.cpp')

diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
index 4a1d3046f..1b5c2ed75 100644
--- a/toolkit/xre/nsAppRunner.cpp
+++ b/toolkit/xre/nsAppRunner.cpp
@@ -1589,28 +1589,29 @@ DumpHelp()
 
 #ifdef MOZ_X11
   printf("X11 options\n"
-         "  --display=DISPLAY  X display to use\n"
-         "  --sync             Make X calls synchronous\n");
+         "  --display=DISPLAY                            X display to use.\n"
+         "  --sync                                       Make X calls synchronous.\n");
 #endif
 #ifdef XP_UNIX
-  printf("  --g-fatal-warnings Make all warnings fatal\n"
+  printf("  --g-fatal-warnings                           Make all warnings fatal.\n"
          "\n%s options\n", gAppData->name);
 #endif
 
-  printf("  -h or --help       Print this message.\n"
-         "  -v or --version    Print %s version.\n"
-         "  -P <profile>       Start with <profile>.\n"
-         "  --profile <path>   Start with profile at <path>.\n"
-         "  --migration        Start with migration wizard.\n"
-         "  --ProfileManager   Start with ProfileManager.\n"
-         "  --no-remote        Do not accept or send remote commands; implies\n"
-         "                     --new-instance.\n"
-         "  --new-instance     Open new instance, not a new window in running instance.\n"
-         "  --UILocale <locale> Start with <locale> resources as UI Locale.\n"
-         "  --safe-mode        Disables extensions and themes for this session.\n", gAppData->name);
+  printf("  -h or --help                                 Print this message.\n"
+         "  -v or --version                              Print %s version.\n"
+         "  -P <profile>                                 Start with <profile>.\n"
+         "  --profile <path>                             Start with profile at <path>.\n"
+         "  --migration                                  Start with migration wizard.\n"
+         "  --ProfileManager                             Start with ProfileManager.\n"
+         "  --no-remote                                  Do not accept or send remote commands;\n"
+         "                                               implies --new-instance.\n"
+         "  --new-instance                               Open new instance, not a new window\n"
+         "                                               in running instance.\n"
+         "  --UILocale <locale>                          Start with <locale> resources as UI Locale.\n"
+         "  --safe-mode                                  Disables extensions and themes for this session.\n", (const char*) gAppData->name);
 
 #if defined(XP_WIN)
-  printf("  --console          Start %s with a debugging console.\n", gAppData->name);
+  printf("  --console                                    Start %s with a debugging console.\n", (const char*) gAppData->name);
 #endif
 
   // this works, but only after the components have registered.  so if you drop in a new command line handler, --help
-- 
cgit v1.2.3