From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18253 invoked from network); 20 Aug 2006 20:44:32 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO,SUBJ_HAS_UNIQ_ID,UNPARSEABLE_RELAY autolearn=ham version=3.1.4 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 20 Aug 2006 20:44:32 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 6329 invoked from network); 20 Aug 2006 20:44:26 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 20 Aug 2006 20:44:26 -0000 Received: (qmail 7002 invoked by alias); 20 Aug 2006 20:44:24 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 22648 Received: (qmail 6992 invoked from network); 20 Aug 2006 20:44:23 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 20 Aug 2006 20:44:23 -0000 Received: (qmail 6023 invoked from network); 20 Aug 2006 20:44:23 -0000 Received: from vms042pub.verizon.net (206.46.252.42) by a.mx.sunsite.dk with SMTP; 20 Aug 2006 20:44:22 -0000 Received: from torch.brasslantern.com ([71.121.0.226]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4B0076BDLWYVH3@vms042.mailsrvcs.net> for zsh-workers@sunsite.dk; Sun, 20 Aug 2006 15:44:21 -0500 (CDT) Received: from torch.brasslantern.com (localhost.localdomain [127.0.0.1]) by torch.brasslantern.com (8.13.1/8.13.1) with ESMTP id k7KKiKBm004074 for ; Sun, 20 Aug 2006 13:44:20 -0700 Received: (from schaefer@localhost) by torch.brasslantern.com (8.13.1/8.13.1/Submit) id k7KKiJOO004073 for zsh-workers@sunsite.dk; Sun, 20 Aug 2006 13:44:19 -0700 Date: Sun, 20 Aug 2006 13:44:19 -0700 From: Bart Schaefer Subject: Re: zstyle is badly broken as of 20060817 In-reply-to: <20060820175434.07ec703c.p.w.stephenson@ntlworld.com> To: zsh-workers@sunsite.dk Message-id: <060820134419.ZM4072@torch.brasslantern.com> MIME-version: 1.0 X-Mailer: OpenZMail Classic (0.9.2 24April2005) Content-type: text/plain; charset=us-ascii References: <060819111155.ZM28512@torch.brasslantern.com> <20060820175434.07ec703c.p.w.stephenson@ntlworld.com> Comments: In reply to Peter Stephenson "Re: zstyle is badly broken as of 20060817" (Aug 20, 5:54pm) On Aug 20, 5:54pm, Peter Stephenson wrote: } Subject: Re: zstyle is badly broken as of 20060817 } } > So the list-prompt style is still there even after supposedly being } > deleted, but zstyle -L does not list it (and completion behaves as } > if it is still set, which is how I even noticed). } } Your subject line implies this is something new, but it isn't. I didn't know whether it was new or not, but I've concluded lately that I ought to mention when I encountered a bug so that people using later builds aren't confused. This is one of the drawbacks of using the mailing list to report bugs rather than having a tracking system where they can be marked resolved. (No, I'm not suggesting we change.) } > schaefer<545> zstyle -s ":completion:${curcontext}:default" list-prompt tmp } > schaefer<546> echo $? } > 0 } } I didn't seem to get this effect. The way I noticed the trouble in the first place was that once I set a list-prompt style I always got the scrolling display, even after I'd supposedly deleted the style. } It would have to be a different bug, You're right, it is. Now the style goes away, but complist continues to have the scrolling behavior. Also now there's no way to get the style back again: schaefer<501> zstyle ":completion:*:default" list-prompt '' schaefer<502> zstyle | grep list-prompt list-prompt schaefer<503> zstyle -d ":completion:*:default" list-prompt schaefer<504> zstyle | grep list-prompt schaefer<505> zstyle ":completion:*:default" list-prompt "Go On" schaefer<506> zstyle | grep list-prompt schaefer<507> echo $? 1 schaefer<508> And yet I if I invoke completion after 502, then I still get the list displayed scrolling after 508.