2012-11-27  Yao Qi  <yao@codesourcery.com>

	* symtab.c (symtab_symbol_info): Fix a -Wformat-extra-args
	warning.
	Add i18n markup.
This commit is contained in:
Yao Qi 2012-11-27 07:41:43 +00:00
parent d8dd7f930d
commit ca242aadec
2 changed files with 12 additions and 5 deletions

View file

@ -1,3 +1,9 @@
2012-11-27 Yao Qi <yao@codesourcery.com>
* symtab.c (symtab_symbol_info): Fix a -Wformat-extra-args
warning.
Add i18n markup.
2012-11-26 Alexander Larsson <alexl@redhat.com> 2012-11-26 Alexander Larsson <alexl@redhat.com>
Jan Kratochvil <jan.kratochvil@redhat.com> Jan Kratochvil <jan.kratochvil@redhat.com>
Tom Tromey <tromey@redhat.com> Tom Tromey <tromey@redhat.com>

View file

@ -3778,10 +3778,11 @@ symtab_symbol_info (char *regexp, enum search_domain kind, int from_tty)
search_symbols (regexp, kind, 0, (char **) NULL, &symbols); search_symbols (regexp, kind, 0, (char **) NULL, &symbols);
old_chain = make_cleanup_free_search_symbols (symbols); old_chain = make_cleanup_free_search_symbols (symbols);
printf_filtered (regexp if (regexp != NULL)
? "All %ss matching regular expression \"%s\":\n" printf_filtered (_("All %ss matching regular expression \"%s\":\n"),
: "All defined %ss:\n", classnames[kind], regexp);
classnames[kind], regexp); else
printf_filtered (_("All defined %ss:\n"), classnames[kind]);
for (p = symbols; p != NULL; p = p->next) for (p = symbols; p != NULL; p = p->next)
{ {
@ -3791,7 +3792,7 @@ symtab_symbol_info (char *regexp, enum search_domain kind, int from_tty)
{ {
if (first) if (first)
{ {
printf_filtered ("\nNon-debugging symbols:\n"); printf_filtered (_("\nNon-debugging symbols:\n"));
first = 0; first = 0;
} }
print_msymbol_info (p->msymbol); print_msymbol_info (p->msymbol);