* python/py-symbol.c (sympy_value): Use _().

This commit is contained in:
Tom Tromey 2012-02-15 17:51:04 +00:00
parent a2e0062d4b
commit c691065997
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2012-02-15 Tom Tromey <tromey@redhat.com>
* python/py-symbol.c (sympy_value): Use _().
2012-02-15 Pedro Alves <palves@redhat.com>
* remote.c (remote_detach_1, extended_remote_attach_1): Tweak

View File

@ -268,11 +268,11 @@ sympy_value (PyObject *self, PyObject *args)
{
frame_info = frame_object_to_frame_info (frame_obj);
if (frame_info == NULL)
error ("invalid frame");
error (_("invalid frame"));
}
if (symbol_read_needs_frame (symbol) && frame_info == NULL)
error ("symbol requires a frame to compute its value");
error (_("symbol requires a frame to compute its value"));
value = read_var_value (symbol, frame_info);
}