From: Joel Brobecker Date: Thu, 3 Mar 2011 03:51:30 +0000 (+0000) Subject: add i18n markup in error message (utils.c:parse_escape) X-Git-Tag: cgen-snapshot-20110401~433 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3351ea09d2187a84d3b3fbca715d571748128a3e;p=external%2Fbinutils.git add i18n markup in error message (utils.c:parse_escape) gdb/ChangeLog: * utils.c (parse_escape): Add i18n markup in error message. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0d92274..9e2787f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2011-03-03 Joel Brobecker + + * utils.c (parse_escape): Add i18n markup in error message. + 2011-03-03 Yao Qi * gdb/arm-tdep.c (shifted_reg_val): Replace magic number 15 with diff --git a/gdb/utils.c b/gdb/utils.c index 46b4612..91e6af4 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -2001,8 +2001,8 @@ parse_escape (struct gdbarch *gdbarch, char **string_ptr) } 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; }