From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eli Zaretskii To: gdb-patches@sources.redhat.com Subject: Completion in "set history filename" Date: Sun, 04 Mar 2001 09:36:00 -0000 Message-id: <200103041736.MAA25617@indy.delorie.com> X-SW-Source: 2001-03/msg00056.html One more command which didn't complete as God intended... Okay to commit? 2001-03-04 Eli Zaretskii * top.c (init_main): Make `set history filename' complete on file names. --- gdb/top.c~0 Thu Jan 25 17:19:30 2001 +++ gdb/top.c Sun Mar 4 19:21:10 2001 @@ -2080,11 +2080,12 @@ ie. the number of previous commands to k 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,