From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31575 invoked by alias); 1 Feb 2004 05:51:23 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 31462 invoked from network); 1 Feb 2004 05:51:21 -0000 Received: from unknown (HELO nevyn.them.org) (66.93.172.17) by sources.redhat.com with SMTP; 1 Feb 2004 05:51:21 -0000 Received: from drow by nevyn.them.org with local (Exim 4.30 #1 (Debian)) id 1AnAVt-0005a7-Ah for ; Sun, 01 Feb 2004 00:51:21 -0500 Date: Sun, 01 Feb 2004 05:51:00 -0000 From: Daniel Jacobowitz To: gdb-patches@sources.redhat.com Subject: Re: complete command doesn't work for files... Message-ID: <20040201055121.GA28002@nevyn.them.org> Mail-Followup-To: gdb-patches@sources.redhat.com References: <20040119162247.GA9812@nevyn.them.org> <9924DAB4-4B96-11D8-A43A-000A277A8808@apple.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9924DAB4-4B96-11D8-A43A-000A277A8808@apple.com> User-Agent: Mutt/1.5.1i X-SW-Source: 2004-02/txt/msg00001.txt.bz2 On Tue, Jan 20, 2004 at 02:18:39PM -0800, Jim Ingham wrote: > >2004-01-19 Daniel Jacobowitz > > > > * cli/cli-cmds.c: Include readline.h. > > (complete_command): Pass the start of the last word to > > complete_line. > > > >2004-01-19 Daniel Jacobowitz > > > > * gdb.base/completion.exp: Kill a stray backslash. > > > >2004-01-19 Jim Ingham > > > > * gdb.base/completion.exp: Test that "complete file ./gdb.base/compl" > > agrees with the result from sending a tab. Checked in. And this, too. -- Daniel Jacobowitz MontaVista Software Debian GNU/Linux Developer 2004-02-01 Daniel Jacobowitz * Makefile.in (cli-cmds.o): Add $(readline_h). Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.483 diff -u -p -r1.483 Makefile.in --- Makefile.in 29 Jan 2004 21:54:22 -0000 1.483 +++ Makefile.in 1 Feb 2004 05:50:23 -0000 @@ -2543,7 +2543,7 @@ cli-cmds.o: $(srcdir)/cli/cli-cmds.c $(d $(linespec_h) $(expression_h) $(frame_h) $(value_h) $(language_h) \ $(filenames_h) $(objfiles_h) $(source_h) $(disasm_h) $(ui_out_h) \ $(top_h) $(cli_decode_h) $(cli_script_h) $(cli_setshow_h) \ - $(cli_cmds_h) + $(cli_cmds_h) $(readline_h) $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-cmds.c cli-decode.o: $(srcdir)/cli/cli-decode.c $(defs_h) $(symtab_h) \ $(gdb_regex_h) $(gdb_string_h) $(ui_out_h) $(cli_cmds_h) \