* config/tc-m32r.c (md_show_usage): Fix typos in descriptions.

* config/tc-mt.c (md_assemble): Fix typos in warning messages.
	* cond.c (s_else): Fix typos in error messages.
	* config/tc-pj.c (md_assemble): Fix typo in error message.
This commit is contained in:
Nick Clifton
2011-05-17 16:15:59 +00:00
parent fe817eb1a3
commit 9fd07943ff
5 changed files with 17 additions and 10 deletions

View File

@ -311,10 +311,10 @@ s_elseif (int arg)
as_bad (_("\".elseif\" after \".else\""));
as_bad_where (current_cframe->else_file_line.file,
current_cframe->else_file_line.line,
_("here is the previous \"else\""));
_("here is the previous \".else\""));
as_bad_where (current_cframe->if_file_line.file,
current_cframe->if_file_line.line,
_("here is the previous \"if\""));
_("here is the previous \".if\""));
}
else
{
@ -414,13 +414,13 @@ s_else (int arg ATTRIBUTE_UNUSED)
}
else if (current_cframe->else_seen)
{
as_bad (_("duplicate \"else\""));
as_bad (_("duplicate \".else\""));
as_bad_where (current_cframe->else_file_line.file,
current_cframe->else_file_line.line,
_("here is the previous \"else\""));
_("here is the previous \".else\""));
as_bad_where (current_cframe->if_file_line.file,
current_cframe->if_file_line.line,
_("here is the previous \"if\""));
_("here is the previous \".if\""));
}
else
{