gdb/ChangeLog:
* utils.c (parse_escape): Add i18n markup in error message.
+2011-03-03 Joel Brobecker <brobecker@adacore.com>
+
+ * utils.c (parse_escape): Add i18n markup in error message.
+
2011-03-03 Yao Qi <yao@codesourcery.com>
* gdb/arm-tdep.c (shifted_reg_val): Replace magic number 15 with
}
if (!host_char_to_target (gdbarch, c, &target_char))
- error ("The escape sequence `\\%c' is equivalent to plain `%c',"
- " which has no equivalent\nin the `%s' character set.",
+ error (_("The escape sequence `\\%c' is equivalent to plain `%c',"
+ " which has no equivalent\nin the `%s' character set."),
c, c, target_charset (gdbarch));
return target_char;
}