This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH] Prompt user to report bugs
- From: Gary Benson <gbenson at redhat dot com>
- To: Doug Evans <dje at google dot com>
- Cc: Paul Koning <Paul_Koning at dell dot com>, gdb-patches <gdb-patches at sourceware dot org>, Tom Tromey <tromey at redhat dot com>
- Date: Thu, 15 May 2014 12:39:44 +0100
- Subject: Re: [PATCH] Prompt user to report bugs
- Authentication-results: sourceware.org; auth=none
- References: <20140514110742 dot GA25550 at blade dot nx> <CADPb22T0DvL237NkheQ1h0onABvTPUKkXXxZu2Uzh3WdpSbgVA at mail dot gmail dot com> <1B70C5D6-D845-4F9A-A874-63DF77FB9030 at dell dot com> <CADPb22TU7YqQ_k=0e1v2wHRMQUu9Ecmuk3j0N6HVfBgjtes_fQ at mail dot gmail dot com>
Doug Evans wrote:
> On Wed, May 14, 2014 at 2:11 PM, <Paul_Koning@dell.com> wrote:
> > On May 14, 2014, at 5:05 PM, Doug Evans <dje@google.com> wrote:
> > > On Wed, May 14, 2014 at 4:07 AM, Gary Benson <gbenson@redhat.com> wrote:
> > > > 2014-05-14 Gary Benson <gbenson@redhat.com>
> > > >
> > > > * utils.c (internal_vproblem): Prompt the user to file a report.
> > > >
> > > > diff --git a/gdb/utils.c b/gdb/utils.c
> > > > index a8a7cb3..905ce6d 100644
> > > > --- a/gdb/utils.c
> > > > +++ b/gdb/utils.c
> > > > @@ -746,6 +746,14 @@ internal_vproblem (struct internal_problem *problem,
> > > > else
> > > > internal_error (__FILE__, __LINE__, _("bad switch"));
> > > >
> > > > + fputs_unfiltered (_("\nThis is a bug, please report it."), gdb_stderr);
> > > > + if (REPORT_BUGS_TO[0])
> > > > + {
> > > > + fputs_unfiltered (_(" For instructions, see:\n"), gdb_stderr);
> > > > + fprintf_unfiltered (gdb_stderr, _("%s."), REPORT_BUGS_TO);
> > > > + }
> > > > + fputs_unfiltered ("\n\n", gdb_stderr);
> > > > +
> > > > if (problem->should_dump_core == internal_problem_ask)
> > > > {
> > > > if (!can_dump_core (reason))
> > > >
> > >
> > > top.c doesn't wrap "%s." in _().
> > > I don't know if it matters, it's just odd to see "%s." wrapped.
> >
> > It also seems odd to see â%s.â inside _( ) since thereâs nothing
> > to translate there.
>
> That's why it seemed odd to me too. :-)
> [Though what do I know ... maybe someone might want to use something
> other than "." at the end.]
Japanese has a different sentence terminator:
http://en.wikipedia.org/wiki/Japanese_punctuation#Full_stop
Possibly other languages do to.
I'm easy either way, if people want it wrapped I'll wrap it,
if people want it bare I can do that too :)
Cheers,
Gary
--
http://gbenson.net/