mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-28 14:08:09 +08:00
* python/py-symbol.c (sympy_value): Use _().
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user