* python/py-symbol.c (sympy_value): Use _().
authorTom Tromey <tromey@redhat.com>
Wed, 15 Feb 2012 17:51:04 +0000 (17:51 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 15 Feb 2012 17:51:04 +0000 (17:51 +0000)
gdb/ChangeLog
gdb/python/py-symbol.c

index 5462b5b..09cb9c2 100644 (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
index 1c00b48..00a8477 100644 (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);
     }