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:
Fernando Nasser 2000-12-06 23:53:03 +00:00
parent c64601c792
commit 69da3468fd
2 changed files with 18 additions and 18 deletions

View File

@ -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.

View File

@ -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)