* top.c (init_main): Make `set history file name' complete on file
names.
This commit is contained in:
parent
21a12a30df
commit
7a1bd56a08
2 changed files with 11 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-03-07 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* top.c (init_main): Make `set history file name' complete on file
|
||||
names.
|
||||
|
||||
2001-03-06 J.T. Conklin <jtc@redback.com>
|
||||
|
||||
* Makefile.in (LINTFLAGS): Update to contain all of the macros
|
||||
|
|
11
gdb/top.c
11
gdb/top.c
|
@ -2081,11 +2081,12 @@ ie. the number of previous commands to keep a record of.", &sethistlist);
|
|||
add_show_from_set (c, &showhistlist);
|
||||
c->function.sfunc = set_history_size_command;
|
||||
|
||||
add_show_from_set
|
||||
(add_set_cmd ("filename", no_class, var_filename, (char *) &history_filename,
|
||||
"Set the filename in which to record the command history\n\
|
||||
(the list of previous commands of which a record is kept).", &sethistlist),
|
||||
&showhistlist);
|
||||
c = add_set_cmd ("filename", no_class, var_filename,
|
||||
(char *) &history_filename,
|
||||
"Set the filename in which to record the command history\n\
|
||||
(the list of previous commands of which a record is kept).", &sethistlist);
|
||||
c->completer = filename_completer;
|
||||
add_show_from_set (c, &showhistlist);
|
||||
|
||||
add_show_from_set
|
||||
(add_set_cmd ("confirm", class_support, var_boolean,
|
||||
|
|
Loading…
Reference in a new issue