From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25849 invoked by alias); 26 Mar 2007 17:20:29 -0000 Received: (qmail 25799 invoked by uid 22791); 26 Mar 2007 17:20:27 -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; Mon, 26 Mar 2007 18:20:24 +0100 Received: from localhost ([127.0.0.1]) by mailapp.tensilica.com with esmtp (Exim 4.34) id 1HVsrm-0000JM-4C for gdb-patches@sources.redhat.com; Mon, 26 Mar 2007 09:20:22 -0800 Received: from mailapp.tensilica.com ([127.0.0.1]) by localhost (mailapp [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00791-06 for ; Mon, 26 Mar 2007 09:20:22 -0800 (PST) Received: from heron.hq.tensilica.com ([192.168.11.123]) by mailapp.tensilica.com with esmtp (Exim 4.34) id 1HVsrl-0000JG-QB for gdb-patches@sources.redhat.com; Mon, 26 Mar 2007 09:20:21 -0800 Received: from [192.168.11.123] (heron.hq.tensilica.com [192.168.11.123]) by heron.hq.tensilica.com (Postfix) with ESMTP id D8CAFAC66C for ; Mon, 26 Mar 2007 10:20:21 -0700 (PDT) Message-ID: <460800D5.4090008@tensilica.com> Date: Mon, 26 Mar 2007 17:20: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] wrap long lines in doc Content-Type: multipart/mixed; boundary="------------060508070204070000050300" 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/msg00234.txt.bz2 This is a multi-part message in MIME format. --------------060508070204070000050300 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 236 Surely this must qualify as obvious, but I'll hold off committing it since I promised to be cautious about that. 2007-03-26 Bob Wilson * gdb.texinfo (Omissions from Ada, Additions to Ada): Wrap long lines. --------------060508070204070000050300 Content-Type: text/plain; name="gdb-doc-wrap.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gdb-doc-wrap.patch" Content-length: 3778 Index: gdb.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v retrieving revision 1.394 diff -u -r1.394 gdb.texinfo --- gdb.texinfo 26 Mar 2007 15:51:17 -0000 1.394 +++ gdb.texinfo 26 Mar 2007 17:12:22 -0000 @@ -10462,10 +10462,11 @@ @item The overloading algorithm is much more limited (i.e., less selective) -than that of real Ada. It makes only limited use of the context in which a subexpression -appears to resolve its meaning, and it is much looser in its rules for allowing -type matches. As a result, some function calls will be ambiguous, and the user -will be asked to choose the proper resolution. +than that of real Ada. It makes only limited use of the context in +which a subexpression appears to resolve its meaning, and it is much +looser in its rules for allowing type matches. As a result, some +function calls will be ambiguous, and the user will be asked to choose +the proper resolution. @item The @code{new} operator is not implemented. @@ -10490,19 +10491,19 @@ @itemize @bullet @item -If the expression @var{E} is a variable residing in memory -(typically a local variable or array element) and @var{N} is -a positive integer, then @code{@var{E}@@@var{N}} displays the values of -@var{E} and the @var{N}-1 adjacent variables following it in memory as an array. -In Ada, this operator is generally not necessary, since its prime use -is in displaying parts of an array, and slicing will usually do this in Ada. -However, there are occasional uses when debugging programs -in which certain debugging information has been optimized away. +If the expression @var{E} is a variable residing in memory (typically +a local variable or array element) and @var{N} is a positive integer, +then @code{@var{E}@@@var{N}} displays the values of @var{E} and the +@var{N}-1 adjacent variables following it in memory as an array. In +Ada, this operator is generally not necessary, since its prime use is +in displaying parts of an array, and slicing will usually do this in +Ada. However, there are occasional uses when debugging programs in +which certain debugging information has been optimized away. @item -@code{@var{B}::@var{var}} means ``the variable named @var{var} that appears -in function or file @var{B}.'' When @var{B} is a file name, you must typically -surround it in single quotes. +@code{@var{B}::@var{var}} means ``the variable named @var{var} that +appears in function or file @var{B}.'' When @var{B} is a file name, +you must typically surround it in single quotes. @item The expression @code{@{@var{type}@} @var{addr}} means ``the variable of type @@ -10513,8 +10514,8 @@ (@pxref{Convenience Vars}) or a machine register (@pxref{Registers}). @end itemize -In addition, @value{GDBN} provides a few other shortcuts and outright additions specific -to Ada: +In addition, @value{GDBN} provides a few other shortcuts and outright +additions specific to Ada: @itemize @bullet @item @@ -10549,8 +10550,8 @@ "One line.["0a"]Next line.["0a"]" @end smallexample @noindent -contains an ASCII newline character (@code{Ada.Characters.Latin_1.LF}) after each -period. +contains an ASCII newline character (@code{Ada.Characters.Latin_1.LF}) +after each period. @item The subtype used as a prefix for the attributes @t{'Pos}, @t{'Min}, and @@ -10564,7 +10565,8 @@ @item When printing arrays, @value{GDBN} uses positional notation when the array has a lower bound of 1, and uses a modified named notation otherwise. -For example, a one-dimensional array of three integers with a lower bound of 3 might print as +For example, a one-dimensional array of three integers with a lower bound +of 3 might print as @smallexample (3 => 10, 17, 1) --------------060508070204070000050300--