2011-05-20 Pedro Alves <pedro@codesourcery.com>

gdb/
	* inf-loop.c (inferior_event_handler): Only output a message if
	verbose.
This commit is contained in:
Pedro Alves 2011-05-20 18:24:41 +00:00
parent 29ef4c4686
commit 46cf51e660
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-05-20 Pedro Alves <pedro@codesourcery.com>
* inf-loop.c (inferior_event_handler): Only output a message if
verbose.
2011-05-20 Luis Machado <lgustavo@codesourcery.com>
* MAINTAINERS: Update my e-mail address.

View File

@ -121,7 +121,8 @@ inferior_event_handler (enum inferior_event_type event_type,
else
do_all_continuations ();
if (current_language != expected_language
if (info_verbose
&& current_language != expected_language
&& language_mode == language_mode_auto)
language_info (1); /* Print what changed. */