From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17926 invoked by alias); 27 Dec 2011 21:35:52 -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: 30069 Received: (qmail 16904 invoked from network); 27 Dec 2011 21:35:42 -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.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 Received-SPF: none (ns1.primenet.com.au: domain at brasslantern.com does not designate permitted sender hosts) MIME-Version: 1.0 Date: Tue, 27 Dec 2011 13:35:36 -0800 Message-ID: Subject: Missing LPAR/RPAR in options.yo From: Bart Schaefer To: Zsh hackers list Content-Type: text/plain; charset=ISO-8859-1 iIncluding file Zsh/options.yo options.yo:577: No macro: args(...) options.yo:577: No macro: args(...) Index: Doc/Zsh/options.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/options.yo,v retrieving revision 1.104 diff -u -r1.104 options.yo --- Doc/Zsh/options.yo 8 Dec 2011 19:42:07 -0000 1.104 +++ Doc/Zsh/options.yo 27 Dec 2011 21:32:13 -0000 @@ -567,12 +567,12 @@ For example, with both options unset a function may be defined in the following fashion: -example(args() { echo $# }) +example(args+LPAR()RPAR() { echo $# }) while if either option is set, this does not work and something equivalent to the following is required: -example(args() { echo $#; }) +example(args+LPAR()RPAR() { echo $#; }) ) pindex(KSH_GLOB)