aboutsummaryrefslogtreecommitdiff
path: root/gdb/utils.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2011-03-03 03:51:30 +0000
committerJoel Brobecker <brobecker@gnat.com>2011-03-03 03:51:30 +0000
commit3351ea09d2187a84d3b3fbca715d571748128a3e (patch)
tree1251bfcbcb582695e2662f4982d1e2aeeeb355cf /gdb/utils.c
parentbf9f652ab6728e11fb3e993c57a9e7133045aad1 (diff)
downloadbinutils-3351ea09d2187a84d3b3fbca715d571748128a3e.zip
binutils-3351ea09d2187a84d3b3fbca715d571748128a3e.tar.gz
binutils-3351ea09d2187a84d3b3fbca715d571748128a3e.tar.bz2
add i18n markup in error message (utils.c:parse_escape)
gdb/ChangeLog: * utils.c (parse_escape): Add i18n markup in error message.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r--gdb/utils.c4
1 files changed, 2 insertions, 2 deletions
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;
}