Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 68579 invoked from network); 21 Sep 2006 17:16:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 21 Sep 2006 17:16:41 -0000 Received: (qmail 83953 invoked by uid 500); 21 Sep 2006 17:16:40 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 83853 invoked by uid 500); 21 Sep 2006 17:16:40 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 83842 invoked by uid 99); 21 Sep 2006 17:16:40 -0000 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Sep 2006 10:16:39 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id BBE431A981D; Thu, 21 Sep 2006 10:16:19 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r448609 - /incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/parse_arguments.cpp Date: Thu, 21 Sep 2006 17:16:19 -0000 To: harmony-commits@incubator.apache.org From: geirm@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060921171619.BBE431A981D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: geirm Date: Thu Sep 21 10:16:19 2006 New Revision: 448609 URL: http://svn.apache.org/viewvc?view=rev&rev=448609 Log: HARMONY-1525 Fix the -X help to show the correct colon rather than space for some options Modified: incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/parse_arguments.cpp Modified: incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/parse_arguments.cpp URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/parse_arguments.cpp?view=diff&rev=448609&r1=448608&r2=448609 ============================================================================== --- incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/parse_arguments.cpp (original) +++ incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/parse_arguments.cpp Thu Sep 21 10:16:19 2006 @@ -574,7 +574,7 @@ #endif //_DEBUG #ifdef VM_STATS # define STATS_OPTIONS_HELP \ - " -Xstats \n" \ + " -Xstats:\n" \ " Generates different statistics\n" #else # define STATS_OPTIONS_HELP @@ -624,9 +624,9 @@ STATS_OPTIONS_HELP " -Xint\n" " Use interpreter to execute the program\n" - " -Xgc \n" + " -Xgc:\n" " Specify gc specific options\n" - " -Xem \n" + " -Xem:\n" " Specify em specific options\n" " -Xdumpstubs\n" " Writes stubs generated by LIL to disk\n" @@ -634,7 +634,7 @@ " Launch compilation in parallel (default)\n" " -Xno_parallel_jit\n" " Do not launch compilation in parallel\n" - " -Xdumpfile \n" + " -Xdumpfile:\n" " Specifies a file name for the dump\n" " -XcleanupOnExit\n" " Excplicitly free VM resources before exit\n");