From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32592 invoked by alias); 23 Mar 2007 23:00:49 -0000 Received: (qmail 32584 invoked by uid 22791); 23 Mar 2007 23:00:49 -0000 X-Spam-Check-By: sourceware.org Received: from hq.tensilica.com (HELO mailapp.tensilica.com) (65.205.227.29) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 23 Mar 2007 23:00:45 +0000 Received: from localhost ([127.0.0.1]) by mailapp.tensilica.com with esmtp (Exim 4.34) id 1HUskU-0003vW-5C for gdb-patches@sources.redhat.com; Fri, 23 Mar 2007 15:00:42 -0800 Received: from mailapp.tensilica.com ([127.0.0.1]) by localhost (mailapp [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14891-03 for ; Fri, 23 Mar 2007 15:00:42 -0800 (PST) Received: from heron.hq.tensilica.com ([192.168.11.123]) by mailapp.tensilica.com with esmtp (Exim 4.34) id 1HUskT-0003vN-MP for gdb-patches@sources.redhat.com; Fri, 23 Mar 2007 15:00:41 -0800 Received: from [192.168.11.123] (heron.hq.tensilica.com [192.168.11.123]) by heron.hq.tensilica.com (Postfix) with ESMTP id CE96DAC66E for ; Fri, 23 Mar 2007 16:00:41 -0700 (PDT) Message-ID: <46045C19.1020502@tensilica.com> Date: Fri, 23 Mar 2007 23:00:00 -0000 From: Bob Wilson User-Agent: Thunderbird 1.5.0.10 (X11/20070306) MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [PATCH] fix typos in GDB docs Content-Type: multipart/mixed; boundary="------------010208090405020401050101" Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2007-03/txt/msg00211.txt.bz2 This is a multi-part message in MIME format. --------------010208090405020401050101 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 463 I've been reviewing Tensilica's version of the GDB documentation and found a number of minor problems to fix. I dare say some of these are obvious, but as promised, I'm going to err on the side of caution and ask permission before committing anything. I'll start with the easiest ones first. 2007-03-23 Bob Wilson * gdb.texinfo (File Options): Add missing parenthesis. (Breakpoints, Special Fortran commands, PowerPC): Fix typos. --------------010208090405020401050101 Content-Type: text/plain; name="gdb-doc-typos.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gdb-doc-typos.patch" Content-length: 1855 Index: gdb.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v retrieving revision 1.389 diff -u -r1.389 gdb.texinfo --- gdb.texinfo 26 Feb 2007 20:10:17 -0000 1.389 +++ gdb.texinfo 23 Mar 2007 22:54:00 -0000 @@ -886,7 +886,7 @@ When @value{GDBN} starts, it reads any arguments other than options as specifying an executable file and core file (or process ID). This is the same as if the arguments were specified by the @samp{-se} and -@samp{-c} (or @samp{-p} options respectively. (@value{GDBN} reads the +@samp{-c} (or @samp{-p}) options respectively. (@value{GDBN} reads the first argument that does not have an associated option flag as equivalent to the @samp{-se} option followed by that argument; and the second argument that does not have an associated option flag, if any, as @@ -2824,7 +2824,7 @@ operate. A breakpoint range is either a single breakpoint number, like @samp{5}, or two such numbers, in increasing order, separated by a hyphen, like @samp{5-7}. When a breakpoint range is given to a command, -all breakpoint in that range are operated on. +all breakpoints in that range are operated on. @menu * Set Breaks:: Setting breakpoints @@ -9675,7 +9675,7 @@ @item info common @r{[}@var{common-name}@r{]} This command prints the values contained in the Fortran @code{COMMON} block whose name is @var{common-name}. With no argument, the names of -all @code{COMMON} blocks visible at current program location are +all @code{COMMON} blocks visible at the current program location are printed. @end table @@ -15117,7 +15117,7 @@ @end table @cindex SDS protocol -The following commands specify to the SDS protocol are supported +The following commands specific to the SDS protocol are supported by@value{GDBN}: @table @code --------------010208090405020401050101--