mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 20:49:43 +00:00
2000-12-06 Fernando Nasser <fnasser@redhat.com>
* cli/cli-decode.c (add_abbrev_cmd): Reinstate. Add comment saying that is not currently used.
This commit is contained in:
parent
c64601c792
commit
69da3468fd
@ -1,3 +1,8 @@
|
||||
2000-12-06 Fernando Nasser <fnasser@redhat.com>
|
||||
|
||||
* cli/cli-decode.c (add_abbrev_cmd): Reinstate. Add comment saying
|
||||
that is not currently used.
|
||||
|
||||
2000-12-06 Fernando Nasser <fnasser@redhat.com>
|
||||
|
||||
* cli/cli-decode.c (lookup_cmd): Change disabled code into comment.
|
||||
|
@ -109,6 +109,19 @@ add_cmd (char *name, enum command_class class, void (*fun) (char *, int),
|
||||
return c;
|
||||
}
|
||||
|
||||
/* Same as above, except that the abbrev_flag is set. */
|
||||
/* Note: Doesn't seem to be used anywhere currently. */
|
||||
|
||||
struct cmd_list_element *
|
||||
add_abbrev_cmd (char *name, enum command_class class, void (*fun) (char *, int),
|
||||
char *doc, struct cmd_list_element **list)
|
||||
{
|
||||
register struct cmd_list_element *c
|
||||
= add_cmd (name, class, fun, doc, list);
|
||||
|
||||
c->abbrev_flag = 1;
|
||||
return c;
|
||||
}
|
||||
|
||||
/* Deprecates a command CMD.
|
||||
REPLACEMENT is the name of the command which should be used in place
|
||||
@ -133,24 +146,6 @@ deprecate_cmd (struct cmd_list_element *cmd, char *replacement)
|
||||
return cmd;
|
||||
}
|
||||
|
||||
|
||||
/* Same as above, except that the abbrev_flag is set. */
|
||||
|
||||
#if 0 /* Currently unused */
|
||||
|
||||
struct cmd_list_element *
|
||||
add_abbrev_cmd (char *name, enum command_class class, void (*fun) (char *, int),
|
||||
char *doc, struct cmd_list_element **list)
|
||||
{
|
||||
register struct cmd_list_element *c
|
||||
= add_cmd (name, class, fun, doc, list);
|
||||
|
||||
c->abbrev_flag = 1;
|
||||
return c;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
struct cmd_list_element *
|
||||
add_alias_cmd (char *name, char *oldname, enum command_class class,
|
||||
int abbrev_flag, struct cmd_list_element **list)
|
||||
|
Loading…
Reference in New Issue
Block a user