aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/py-cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/python/py-cmd.c')
-rw-r--r--gdb/python/py-cmd.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/python/py-cmd.c b/gdb/python/py-cmd.c
index ae462d9..d187d16 100644
--- a/gdb/python/py-cmd.c
+++ b/gdb/python/py-cmd.c
@@ -279,7 +279,7 @@ parse_command_name (char *text, struct cmd_list_element ***base_list)
;
if (i < 0)
{
- PyErr_SetString (PyExc_RuntimeError, _("no command name found"));
+ PyErr_SetString (PyExc_RuntimeError, _("No command name found."));
return NULL;
}
lastchar = i;
@@ -311,7 +311,7 @@ parse_command_name (char *text, struct cmd_list_element ***base_list)
elt = lookup_cmd_1 (&text, cmdlist, NULL, 1);
if (!elt || elt == (struct cmd_list_element *) -1)
{
- PyErr_Format (PyExc_RuntimeError, _("could not find command prefix %s"),
+ PyErr_Format (PyExc_RuntimeError, _("Could not find command prefix %s."),
prefix_text);
xfree (prefix_text);
xfree (result);
@@ -325,7 +325,7 @@ parse_command_name (char *text, struct cmd_list_element ***base_list)
return result;
}
- PyErr_Format (PyExc_RuntimeError, _("'%s' is not a prefix command"),
+ PyErr_Format (PyExc_RuntimeError, _("'%s' is not a prefix command."),
prefix_text);
xfree (prefix_text);
xfree (result);
@@ -374,7 +374,7 @@ cmdpy_init (PyObject *self, PyObject *args, PyObject *kw)
/* Note: this is apparently not documented in Python. We return
0 for success, -1 for failure. */
PyErr_Format (PyExc_RuntimeError,
- _("command object already initialized"));
+ _("Command object already initialized."));
return -1;
}
@@ -389,13 +389,13 @@ cmdpy_init (PyObject *self, PyObject *args, PyObject *kw)
&& cmdtype != class_trace && cmdtype != class_obscure
&& cmdtype != class_maintenance)
{
- PyErr_Format (PyExc_RuntimeError, _("invalid command class argument"));
+ PyErr_Format (PyExc_RuntimeError, _("Invalid command class argument."));
return -1;
}
if (completetype < -1 || completetype >= (int) N_COMPLETERS)
{
- PyErr_Format (PyExc_RuntimeError, _("invalid completion type argument"));
+ PyErr_Format (PyExc_RuntimeError, _("Invalid completion type argument."));
return -1;
}