From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4553 invoked by alias); 1 Mar 2008 22:14:07 -0000 Received: (qmail 4544 invoked by uid 22791); 1 Mar 2008 22:14:07 -0000 X-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_52,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sat, 01 Mar 2008 22:13:49 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m21MDmFS002305 for ; Sat, 1 Mar 2008 17:13:48 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [10.11.255.20]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m21MDlvq024096 for ; Sat, 1 Mar 2008 17:13:47 -0500 Received: from opsy.redhat.com (vpn-14-173.rdu.redhat.com [10.11.14.173]) by pobox.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m21MDlsM030049; Sat, 1 Mar 2008 17:13:47 -0500 Received: by opsy.redhat.com (Postfix, from userid 500) id A08683780C7; Sat, 1 Mar 2008 14:23:32 -0700 (MST) To: Frysk List Subject: typos From: Tom Tromey Reply-To: tromey@redhat.com X-Attribution: Tom Date: Sat, 01 Mar 2008 22:14:00 -0000 Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.990 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 X-IsSubscribed: yes Mailing-List: contact frysk-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-owner@sourceware.org X-SW-Source: 2008-q1/txt/msg00098.txt.bz2 This fixes a couple typos I happened across. There are actually a lot of inconsistencies in the in-program help, but I didn't feel like trying to clean that up, so I just filed a bug. Tom frysk-core/frysk/hpd/ChangeLog: 2008-03-01 Tom Tromey * RunCommand.java (RunCommand): Fix typo. * LoadCommand.java (LoadCommand): Add missing spaces. diff --git a/frysk-core/frysk/hpd/LoadCommand.java b/frysk-core/frysk/hpd/LoadCommand.java index c39ae2c..d402a23 100644 --- a/frysk-core/frysk/hpd/LoadCommand.java +++ b/frysk-core/frysk/hpd/LoadCommand.java @@ -64,8 +64,8 @@ public class LoadCommand extends ParameterizedCommand { "The load command lets the user examine information about" + " an executable file without actually running it. An" + " executable must be loaded with this command before it" - + " can be run with either the 'start' or 'run' command." - + " If no args are entered a list of the loaded procs(if any)" + + " can be run with either the 'start' or 'run' command. " + + " If no args are entered a list of the loaded procs (if any)" + " is displayed.\nNo arguments to be passed to the proc are" + " entered here. Those arguments are passed to the proc(s)" + " via the 'start' or 'run' commands."); diff --git a/frysk-core/frysk/hpd/RunCommand.java b/frysk-core/frysk/hpd/RunCommand.java index f78fb5e..30c6082 100644 --- a/frysk-core/frysk/hpd/RunCommand.java +++ b/frysk-core/frysk/hpd/RunCommand.java @@ -1,6 +1,6 @@ // This file is part of the program FRYSK. // -// Copyright 2007, Red Hat Inc. +// Copyright 2007, 2008, Red Hat Inc. // // FRYSK is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by @@ -43,7 +43,7 @@ class RunCommand extends StartRun { // Used to synchronize with updateAttached method RunCommand() { super("run program and immediately attach", - "run || <--norags>", + "run || <--noargs>", "The run command alllows the debugger to run a(any) program(s)" + " that has(have) been previously loaded via a load or" + " core command. The run command can accept arguments to"