Use filtered output in language_info

Change language_info to use filtered output.  This is ok because the
sole caller uses filtered output elsewhere, and because this function
calls show_language_command, which also uses filtered output.
This commit is contained in:
Tom Tromey
2021-12-26 18:17:55 -07:00
parent a037434531
commit b68178b9cb

View File

@ -383,7 +383,7 @@ language_info ()
return;
expected_language = current_language;
printf_unfiltered (_("Current language: %s\n"), language);
printf_filtered (_("Current language: %s\n"), language);
show_language_command (NULL, 1, NULL, NULL);
}