mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
2011-01-11 Michael Snyder <msnyder@vmware.com>
* arm-tdep.c: Internationalization. * c-lang.c: Ditto. * charset.c: Ditto. * fork-child.c: Ditto. * nto-procfs.c: Ditto. * ppc-sysv-tdep.c: Ditto. * procfs.c: Ditto. * remote-mips.c: Ditto. * remote.c: Ditto. * rs6000-nat.c: Ditto. * rs6000-tdep.c: Ditto. * target.c: Ditto. * valops.c: Ditto. * value.c: Ditto. * xml-support.c: Ditto. * mi/mi-cmd-break.c: Ditto. * mi/mi-cmd-var.c: Ditto. * mi/mi-interp.c: Ditto. * mi/mi-main.c: Ditto.
This commit is contained in:
@ -484,7 +484,8 @@ gdb_xml_fetch_external_entity (XML_Parser expat_parser,
|
||||
{
|
||||
text = fetch_xml_builtin (parser->dtd_name);
|
||||
if (text == NULL)
|
||||
internal_error (__FILE__, __LINE__, "could not locate built-in DTD %s",
|
||||
internal_error (__FILE__, __LINE__,
|
||||
_("could not locate built-in DTD %s"),
|
||||
parser->dtd_name);
|
||||
}
|
||||
else
|
||||
@ -529,7 +530,8 @@ gdb_xml_use_dtd (struct gdb_xml_parser *parser, const char *dtd_name)
|
||||
err = XML_UseForeignDTD (parser->expat_parser, XML_TRUE);
|
||||
if (err != XML_ERROR_NONE)
|
||||
internal_error (__FILE__, __LINE__,
|
||||
"XML_UseForeignDTD failed: %s", XML_ErrorString (err));
|
||||
_("XML_UseForeignDTD failed: %s"),
|
||||
XML_ErrorString (err));
|
||||
}
|
||||
|
||||
/* Invoke PARSER on BUFFER. BUFFER is the data to parse, which
|
||||
|
Reference in New Issue
Block a user