From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4756 invoked by alias); 10 Jan 2015 09:23:21 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 4744 invoked by uid 89); 10 Jan 2015 09:23:20 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00,SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: mtaout24.012.net.il Received: from mtaout24.012.net.il (HELO mtaout24.012.net.il) (80.179.55.180) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 10 Jan 2015 09:23:18 +0000 Received: from conversion-daemon.mtaout24.012.net.il by mtaout24.012.net.il (HyperSendmail v2007.08) id <0NHY00000EF4LV00@mtaout24.012.net.il> for gdb-patches@sourceware.org; Sat, 10 Jan 2015 11:15:14 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by mtaout24.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NHY00N3PF1EWF50@mtaout24.012.net.il>; Sat, 10 Jan 2015 11:15:14 +0200 (IST) Date: Sat, 10 Jan 2015 09:23:00 -0000 From: Eli Zaretskii Subject: Re: [PATCH 3/3 v2] Implement completion limiting In-reply-to: <21680.36641.315766.209208@ruffy2.mtv.corp.google.com> To: Doug Evans Cc: gbenson@redhat.com, gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: <83a91r6lbd.fsf@gnu.org> References: <1417094168-25868-1-git-send-email-gbenson@redhat.com> <1417094168-25868-4-git-send-email-gbenson@redhat.com> <20141210122233.GA7299@blade.nx> <21671.20308.262958.475080@ruffy2.mtv.corp.google.com> <20150107084255.GA17867@blade.nx> <21680.36641.315766.209208@ruffy2.mtv.corp.google.com> X-IsSubscribed: yes X-SW-Source: 2015-01/txt/msg00255.txt.bz2 > From: Doug Evans > Date: Fri, 9 Jan 2015 18:32:01 -0800 > Cc: gdb-patches@sourceware.org > > +If the number of possible completions is large, @value{GDBN} will > +print as much of the list as it has collected, as well as a message > +indicating that the list may be truncated. > + > +@smallexample > +(@value{GDBP}) b m@key{TAB}@key{TAB} > +m *** List may be truncated, max-completions reached. *** > +main > +<... the rest of the possible completions ...> > +(@value{GDBP}) b m Doesn't the "list may be truncated" message scrolls off the screen, if the list is long enough? If so, wouldn't it be better to display that message at the end instead, saying something like (More completions follow; max-completions exceeded.) The documentation parts are OK, thanks.