Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Nick Roberts <nickrob@snap.net.nz>
To: Eli Zaretskii <eliz@gnu.org>
Cc: gdb-patches@sources.redhat.com
Subject: Re: [PATCH] MI error messages
Date: Tue, 21 Jun 2005 21:43:00 -0000	[thread overview]
Message-ID: <17080.35377.519988.619664@farnswood.snap.net.nz> (raw)
In-Reply-To: <u8y13zb5u.fsf@gnu.org>

Eli Zaretskii writes:
 > > Which file should mi_error/mi_usage_error go in?  mi-cmds.c seems the best
 > > option to me as the mi-cmd-*.c files include mi-cmds.h.
 > 
 > I don't care much, but isn't mi-common.c a better place?

mi-common.c seems a bit of a misnomer.  Perhap common here means frequent
rather than shared.  mi-common.h isn't included in any of the c files apart
from mi-common.c

 > > I think it would be better to call it something like mi_usage_error
 > 
 > I have no problem with mi_usage_error.
 > 
 > > there are many other errors generated in MI e.g.
 > > 
 > >     error (_("mi_cmd_var_delete: Variable object not found."));
 > > 
 > > which, I guess should just be:
 > > 
 > >     error (_("Variable object not found."));
 > > 
 > > However, unlike the usage error messages which should only be seen by the
 > > person writing the frontend, these messages _will_ be seen by the user.
 > 
 > Yes.  And that is why they should go through `error', not through
 > `mi_usage_error'.

I presumed mi_usage_error would call error.  That way the error is caught and
any cleanups and rewinds are done.  However, you are right, it would be nicer
just to get:

(gdb) 
-stack-select-frame
Usage: FRAME_SPEC.
(gdb) 

instead of

(gdb) 
-stack-select-frame
&"Usage: -stack-select-frame FRAME_SPEC\n"
^error,msg="Usage: -stack-select-frame FRAME_SPEC"
(gdb) 

as these errors aren't intended for the user when the frontend is being used.

 > > Perhaps they should be made more transparent.
 > 
 > I guess you mean ``more self-explanatory''.  Yes, I agree.  One way of
 > doing that is not to hide relevant context information that is
 > available at the locus of the error message; in this case, that
 > context is the name of the object.  Thus,
 > 
 > 	Variable object `warranty' not found.
 > 
 > is IMHO much better, even though your suggestion is an additional
 > improvement.

I'll look at submitting a revised patch for mi-cmd-stack.c and mi-cmd-var.c

Nick


  reply	other threads:[~2005-06-21 21:43 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-06-17 22:51 [PATCH] -stack-info-frames Nick Roberts
2005-06-17 23:01 ` Daniel Jacobowitz
2005-06-17 23:14   ` Daniel Jacobowitz
2005-06-18  1:28     ` Nick Roberts
2005-06-18  1:58       ` Daniel Jacobowitz
2005-06-18  3:16         ` Nick Roberts
2005-06-18  8:25         ` Eli Zaretskii
2005-06-18  8:51           ` Nick Roberts
2005-06-18 10:20             ` Eli Zaretskii
2005-06-18 15:51               ` Daniel Jacobowitz
2005-06-18 22:48               ` Nick Roberts
2005-06-18 15:57             ` Daniel Jacobowitz
2005-06-18 22:48               ` Nick Roberts
2005-06-18 23:20                 ` Daniel Jacobowitz
2005-06-19  3:39                   ` Nick Roberts
2005-06-19 14:56                     ` Daniel Jacobowitz
2005-06-19 18:33                       ` Eli Zaretskii
2005-06-19 22:31                         ` Nick Roberts
2005-06-20  3:41                           ` Eli Zaretskii
2005-06-19 22:31                       ` Nick Roberts
2005-06-20  0:01                         ` Daniel Jacobowitz
2005-06-20  1:24                           ` Nick Roberts
2005-06-20  1:31                             ` Daniel Jacobowitz
2005-06-20  3:43                         ` Eli Zaretskii
2005-06-20  5:03                           ` Nick Roberts
2005-06-20 13:51                             ` Daniel Jacobowitz
2005-06-20 21:48                               ` [PATCH] MI error messages Nick Roberts
2005-06-20 22:10                                 ` Andreas Schwab
2005-06-21  3:40                                 ` Eli Zaretskii
2005-06-21  8:50                                   ` Andreas Schwab
2005-06-21  9:40                                   ` Nick Roberts
2005-06-21 19:51                                     ` Eli Zaretskii
2005-06-21 21:43                                       ` Nick Roberts [this message]
2005-06-21 21:59                                         ` Jason Molenda
2005-06-22  3:32                                           ` Daniel Jacobowitz
2005-06-22  3:41                                             ` Jason Molenda
2005-06-22  3:46                                               ` Daniel Jacobowitz
2005-06-22  7:27                                             ` Nick Roberts
2005-06-23  3:48                                               ` Daniel Jacobowitz
2005-06-22 13:04                                           ` Bob Rossi
2005-06-21 22:01                                         ` Bob Rossi
2005-06-22 11:06                                         ` Nick Roberts
2005-06-22 11:24                                           ` Andreas Schwab
2005-06-22 19:19                                           ` Jason Molenda
2005-06-22 21:55                                             ` Nick Roberts
2005-06-19 21:55                 ` [PATCH] -stack-info-frames Jason Molenda
2005-06-19 22:12                   ` Daniel Jacobowitz
2005-06-17 23:11 ` Jason Molenda
2005-06-17 23:31   ` Nick Roberts

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=17080.35377.519988.619664@farnswood.snap.net.nz \
    --to=nickrob@snap.net.nz \
    --cc=eliz@gnu.org \
    --cc=gdb-patches@sources.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