[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: GSoC gdb-mi.el changes
From: |
Stefan Monnier |
Subject: |
Re: GSoC gdb-mi.el changes |
Date: |
Wed, 12 Aug 2009 01:26:23 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) |
> Suggestion: don't show the -i=mi flag, users don't care about it (same
> way rgrep/lgrep don't show the -n flag they pass to grep)
GUD used to hide such flags and then was changed to try and show
them instead. The reason why it was changed to show them, is so that it
can be made to work with unusal ways to start the debugger. E.g.
make run cmd="gdb --i=mi foo"
if you don't make the flag explicit, then you have to guess where to
add it in the command the user has just typed (in the above case the
user would have then typed
make run cmd="gdb foo"
which makes it difficult to figure out where to place the --i=mi.
Stefan