mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-23 18:26:47 +08:00
Remove trailing whitespace.
Whitespace cleanup. * python/py-breakpoint.c: Remove trailing whitespace. * python/py-cmd.c: Ditto. * python/py-evts.c: Ditto. * python/py-finishbreakpoint.c: Ditto. * python/py-frame.c: Ditto. * python/py-function.c: Ditto. * python/py-inferior.c: Ditto. * python/py-infthread.c: Ditto. * python/py-param.c: Ditto. * python/py-prettyprint.c: Ditto. * python/py-symbol.c: Ditto. * python/py-type.c: Ditto. * python/py-utils.c: Ditto. * python/py-value.c: Ditto. * python/python-internal.h: Ditto. * python/python.c: Ditto.
This commit is contained in:
@ -308,14 +308,14 @@ cmdpy_completer (struct cmd_list_element *command,
|
||||
|
||||
/* Helper for cmdpy_init which locates the command list to use and
|
||||
pulls out the command name.
|
||||
|
||||
|
||||
NAME is the command name list. The final word in the list is the
|
||||
name of the new command. All earlier words must be existing prefix
|
||||
commands.
|
||||
|
||||
*BASE_LIST is set to the final prefix command's list of
|
||||
*sub-commands.
|
||||
|
||||
|
||||
START_LIST is the list in which the search starts.
|
||||
|
||||
This function returns the xmalloc()d name of the new command. On
|
||||
@ -464,16 +464,16 @@ cmdpy_init (PyObject *self, PyObject *args, PyObject *kw)
|
||||
return -1;
|
||||
|
||||
pfx_name = NULL;
|
||||
if (is_prefix != NULL)
|
||||
if (is_prefix != NULL)
|
||||
{
|
||||
cmp = PyObject_IsTrue (is_prefix);
|
||||
if (cmp == 1)
|
||||
{
|
||||
int i, out;
|
||||
|
||||
|
||||
/* Make a normalized form of the command name. */
|
||||
pfx_name = xmalloc (strlen (name) + 2);
|
||||
|
||||
|
||||
i = 0;
|
||||
out = 0;
|
||||
while (name[i])
|
||||
|
Reference in New Issue
Block a user