Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Joel Brobecker <brobecker@adacore.com>
To: gdb-patches@sourceware.org
Subject: Re: [RFA/Ada(v2) 3/3] Document "info exceptions" and "-info-ada-exception" new commands.
Date: Tue, 12 Nov 2013 04:07:00 -0000	[thread overview]
Message-ID: <20131112033804.GA21670@adacore.com> (raw)
In-Reply-To: <1383912219-13012-4-git-send-email-brobecker@adacore.com>

[-- Attachment #1: Type: text/plain, Size: 1746 bytes --]

> gdb/doc/ChangeLog:
> 
>         * gdb.texinfo (Ada): Add entry in menu for new "Ada Exceptions" node.
>         (Ada Exceptions): New node.
>         (GDB/MI): Add entry in menu for new "GDB/MI Ada Exceptions
>         Commands" node.
>         (GDB/MI Ada Exceptions Commands): New node.
>         (GDB/MI Miscellaneous Commands): Document new "info-ada-exceptions"
>         field in the output of the "-list-features" command.
>         * NEWS: Add entry for the new "info exceptions" CLI command,
>         and for the new "-info-ada-exceptions" GDB/MI command.

I noticed the following little oversight while merging that patch
into AdaCore's repository:

> @@ -34877,7 +34968,9 @@ Indicates support for the @code{-data-read-memory-bytes} and the
>  Indicates that changes to breakpoints and breakpoints created via the
>  CLI will be announced via async records.
>  @item ada-task-info
> -Indicates support for the @code{-ada-task-info} command.
> +indicates support for the @code{-ada-task-info} command.
> +@item info-ada-exceptions
> +indicates support for the @code{-info-ada-exceptions} command.
>  @end table

I accidentally changed the first "Indicates", removing the initial
capital letter, and then duplicated that error in the new entry.
I think that's a mistake I do fairly commonly, because 'y' (yank)
is next to 'u' (lowercase). So when I have a region selected, and
want to copy it, my fat fingers also sometimes lower-case it. Most
of the time, I catch it, but unfortunately not this time.

gdb/doc/ChangeLog:

        * gdb.texinfo (GDB/MI Miscellaneous Commands): Fix the first
        word of a couple of sentences to start with a capital letter.

Checked in as abvious.  And sorry about this little oversight.
-- 
Joel

[-- Attachment #2: 0001-Small-fix-first-word-of-sentence-to-start-with-capit.patch --]
[-- Type: text/x-diff, Size: 1772 bytes --]

From 6adcee1866fe6b700bc1cc5a9675479530af7205 Mon Sep 17 00:00:00 2001
From: Joel Brobecker <brobecker@adacore.com>
Date: Tue, 12 Nov 2013 07:31:04 +0400
Subject: [PATCH] Small fix (first word of sentence to start with capital
 letter)

gdb/doc/ChangeLog:

        * gdb.texinfo (GDB/MI Miscellaneous Commands): Fix the first
        word of a couple of sentences to start with a capital letter.
---
 gdb/doc/ChangeLog   | 5 +++++
 gdb/doc/gdb.texinfo | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog
index 49ac794..2b13843 100644
--- a/gdb/doc/ChangeLog
+++ b/gdb/doc/ChangeLog
@@ -1,5 +1,10 @@
 2013-11-12  Joel Brobecker  <brobecker@adacore.com>
 
+	* gdb.texinfo (GDB/MI Miscellaneous Commands): Fix the first
+	word of a couple of sentences to start with a capital letter.
+
+2013-11-12  Joel Brobecker  <brobecker@adacore.com>
+
 	* gdb.texinfo (Ada): Add entry in menu for new "Ada Exceptions" node.
 	(Ada Exceptions): New node.
 	(GDB/MI): Add entry in menu for new "GDB/MI Ada Exceptions
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
index dc79ca1..de419ea 100644
--- a/gdb/doc/gdb.texinfo
+++ b/gdb/doc/gdb.texinfo
@@ -35079,9 +35079,9 @@ Indicates support for the @code{-data-read-memory-bytes} and the
 Indicates that changes to breakpoints and breakpoints created via the
 CLI will be announced via async records.
 @item ada-task-info
-indicates support for the @code{-ada-task-info} command.
+Indicates support for the @code{-ada-task-info} command.
 @item info-ada-exceptions
-indicates support for the @code{-info-ada-exceptions} command.
+Indicates support for the @code{-info-ada-exceptions} command.
 @end table
 
 @subheading The @code{-list-target-features} Command
-- 
1.8.1.2


  parent reply	other threads:[~2013-11-12  3:38 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-08 12:04 RFA/Ada (v2) new CLI + GDB/MI commands to list Ada exceptions Joel Brobecker
2013-11-08 12:04 ` [RFA/Ada(v2) 3/3] Document "info exceptions" and "-info-ada-exception" new commands Joel Brobecker
2013-11-08 14:21   ` Eli Zaretskii
2013-11-10  9:49     ` Joel Brobecker
2013-11-12  4:07   ` Joel Brobecker [this message]
2013-11-08 12:05 ` [RFA/Ada(v2) 1/3] Add command to list Ada exceptions Joel Brobecker
2013-11-08 13:40   ` Pedro Alves
2013-11-08 14:10     ` Joel Brobecker
2013-11-08 15:47       ` Tom Tromey
2013-11-08 16:13         ` Joel Brobecker
2013-11-08 16:32           ` Tom Tromey
2013-11-10  6:29         ` Joel Brobecker
2013-11-11 14:48           ` Tom Tromey
2013-11-13 17:04   ` Tom Tromey
2013-11-13 18:29     ` Joel Brobecker
2013-11-15  7:28       ` Joel Brobecker
2013-11-15 15:53         ` Tom Tromey
2013-11-15 17:06           ` Joel Brobecker
2013-11-15 17:48             ` Tom Tromey
2013-11-15 18:01               ` Joel Brobecker
2013-11-15 18:23                 ` Tom Tromey
2013-11-16  3:51                   ` pushed: " Joel Brobecker
2013-11-08 12:27 ` [RFA/Ada(v2) 2/3] Implement GDB/MI equivalent of "info exceptions" CLI command Joel Brobecker
2013-11-12  3:38 ` RFA/Ada (v2) new CLI + GDB/MI commands to list Ada exceptions Joel Brobecker

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20131112033804.GA21670@adacore.com \
    --to=brobecker@adacore.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox