C++ translation improvement
Zack Weinberg
zack@codesourcery.com
Mon Apr 7 05:33:00 GMT 2003
Zack Weinberg <zack@codesourcery.com> writes:
> Will apply if bootstrap finishes successfully.
Agh, silly error. The version I've committed has an addition here:
> - str = "candidates are:";
> - for (; candidates; candidates = candidates->next)
> - {
> - print_z_candidate (str, candidates, error);
> - str = " ";
+ if (!candidates)
+ return;
> + str = _("candidates are:");
> + print_z_candidate (str, candidates);
zw
More information about the Gcc-patches
mailing list