From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12397 invoked by alias); 6 Dec 2014 10:55:38 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 33883 Received: (qmail 22219 invoked from network); 6 Dec 2014 10:55:35 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.7 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=x-sasl-enc:date:from:to:subject:message-id :mime-version:content-type; s=mesmtp; bh=stGxtnmweHCspWWMB6m/LHz 3acU=; b=l+lEhmlTcObo88LLVdkqAlu9CAhgDUh5f5MPAh+2kA1IXYOFVisgyWx xcH/D2LH36raQFXc5Zor9wXFNFJ3l1EC5GDZXoSlhSoUHAnVvIJYbMObp9YuOsaI 4SSV46DE/HGetAlAGtKUmKuFJAssmf1lhBJOiPTGZW8q2MlZu5wg= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=x-sasl-enc:date:from:to:subject :message-id:mime-version:content-type; s=smtpout; bh=stGxtnmweHC spWWMB6m/LHz3acU=; b=jM+ReLluzRwvuhitm6940MCSMlxLGwsTG9RtkUpHd9I PwWyesiblcsHMaAMTWCmvpDVGIQc/3uKQrJMbdo+J1UFfHTA9F4TdZO5bSTkOWdJ O3H8vjdsvLJPjCNb0xi6/uh5AJO5D7Y48UrDTFlSiI2xuzGx+xWSC2IENlVF/vW8 = X-Sasl-enc: 0ZS1yJ9NTdliMqfoAg5K1+uA4lJi2UTgnvBANs28crdn 1417863333 Date: Sat, 6 Dec 2014 10:55:30 +0000 From: Daniel Shahaf To: zsh-workers@zsh.org Subject: [PATCH] docs bugfix: glob qualifiers Message-ID: <20141206105530.GD3292@tarsus.local2> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) The (*) qualifier was underdocumented. While there, grammar the completion of the (p) qualifier. diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo index 5ed78f0..8728803 100644 --- a/Doc/Zsh/expn.yo +++ b/Doc/Zsh/expn.yo @@ -2388,7 +2388,7 @@ item(tt(p))( named pipes (FIFOs) ) item(tt(*))( -executable plain files (0100) +executable plain files (0100 or 0010 or 0001) ) item(tt(%))( device files (character or block special) diff --git a/Completion/Zsh/Type/_globquals b/Completion/Zsh/Type/_globquals index 37db161..042b274 100644 --- a/Completion/Zsh/Type/_globquals +++ b/Completion/Zsh/Type/_globquals @@ -213,7 +213,7 @@ case $state in ".:plain files" "@:symbolic links" "=:sockets" - "p:name pipes (FIFOS)" + "p:named pipes (FIFOs)" "*:executable plain files" "%:device files" "r:owner-readable"