From: "Marc Khouzam" <marc.khouzam@ericsson.com>
To: "Nick Roberts" <nickrob@snap.net.nz>, "Tom Tromey" <tromey@redhat.com>
Cc: <gdb@sourceware.org>, <gdb-patches@sourceware.org>
Subject: RE: [PATCH] util.c + doc [was Re: [RFC] Queries and frontends]
Date: Thu, 30 Jul 2009 00:42:00 -0000 [thread overview]
Message-ID: <6D19CA8D71C89C43A057926FE0D4ADAA07CA09F1@ecamlmw720.eamcs.ericsson.se> (raw)
In-Reply-To: <19056.57733.247579.68268@totara.tehura.co.nz>
> -----Original Message-----
> From: gdb-owner@sourceware.org
> [mailto:gdb-owner@sourceware.org] On Behalf Of Nick Roberts
> Sent: July-29-09 7:56 PM
> To: Tom Tromey
> Cc: Marc Khouzam; gdb@sourceware.org; gdb-patches@sourceware.org
> Subject: [PATCH] util.c + doc [was Re: [RFC] Queries and frontends]
>
>
> > I tend to think that the more generic change would be
> safe, and cleaner.
>
> This should do it.
> --
> Nick
> http://www.inet.net.nz/~nickrob
>
>
> 2009-07-30 Nick Roberts <nickrob@snap.net.nz>
>
> * utils.c (defaulted_query): Don't ask for confirmation
> if server
> prefix is used.
>
>
> 2009-07-30 Nick Roberts <nickrob@snap.net.nz>
>
> * gdb.texinfo (Server Prefix): Explain that server
> prefix suppresses
> confirmation request.
>
>
> *** utils.c.~1.215.~ 2009-07-22 15:29:54.000000000 +1200
> --- utils.c 2009-07-30 11:39:08.000000000 +1200
> *************** defaulted_query (const char *ctlstr, con
> *** 1436,1443 ****
> }
>
> /* Automatically answer the default value if the user did not want
> ! prompts. */
> ! if (! caution)
> return def_value;
>
> /* If input isn't coming from the user directly, just say what
> --- 1436,1443 ----
> }
>
> /* Automatically answer the default value if the user did not want
> ! prompts or the command was issued with the server prefix. */
> ! if (! caution || server_command)
> return def_value;
>
Doesn't this amount to using "set confirm off"?
I might have missed it, but I don't remember why you didn't want
use that instead?
And this solution does not help (some) frontends with
answering 'y' to nquery()
How about:
if (! caution)
return def_value;
if (server_command)
return 1;
> /* If input isn't coming from the user directly, just say what
>
>
>
> *** gdb.texinfo.~1.609.~ 2009-07-29 18:47:32.000000000 +1200
> --- gdb.texinfo 2009-07-30 11:49:16.000000000 +1200
> *************** The server prefix does not affect the re
> *** 25607,25612 ****
> --- 25607,25616 ----
> history; to print a value without recording it into the
> value history,
> use the @code{output} command instead of the @code{print} command.
>
> + It also disables confirmation requests irrespective of the value of
> + the @code{show confirm} command (@pxref{Messages/Warnings, ,Optional
> + Warnings and Messages}).
> +
> @node Prompting
> @section Annotation for @value{GDBN} Input
>
>
next prev parent reply other threads:[~2009-07-30 0:28 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <6D19CA8D71C89C43A057926FE0D4ADAA07C00023@ecamlmw720.eamcs.ericsson.se>
[not found] ` <19045.23703.743876.775308@totara.tehura.co.nz>
[not found] ` <m37hxwm3wr.fsf@fleche.redhat.com>
[not found] ` <19053.2107.342469.683795@totara.tehura.co.nz>
[not found] ` <m3iqheje2p.fsf@fleche.redhat.com>
[not found] ` <19054.23189.193878.534661@totara.tehura.co.nz>
[not found] ` <m3r5vztcpw.fsf@fleche.redhat.com>
2009-07-30 0:41 ` Nick Roberts
2009-07-30 0:42 ` Marc Khouzam [this message]
2009-07-30 7:24 ` Nick Roberts
2009-07-30 16:02 ` Marc Khouzam
2009-07-30 6:46 ` Eli Zaretskii
2009-08-04 10:12 ` Nick Roberts
2009-08-04 17:51 ` Eli Zaretskii
2009-08-06 5:21 ` Nick Roberts
2009-08-06 8:24 ` Andreas Schwab
2009-08-06 18:11 ` Eli Zaretskii
2009-08-04 16:32 ` [PATCH] util.c + doc Tom Tromey
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=6D19CA8D71C89C43A057926FE0D4ADAA07CA09F1@ecamlmw720.eamcs.ericsson.se \
--to=marc.khouzam@ericsson.com \
--cc=gdb-patches@sourceware.org \
--cc=gdb@sourceware.org \
--cc=nickrob@snap.net.nz \
--cc=tromey@redhat.com \
/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