From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16521 invoked by alias); 22 Jun 2015 17:10:33 -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: 35567 Received: (qmail 3624 invoked from network); 22 Jun 2015 17:10:31 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) 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, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.0 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:message-id:date:in-reply-to:comments :references:to:subject:mime-version:content-type; bh=gmUlfZNUgBxIEdcYfqoJ/D8ptiFX5G7liyOr0vIMXws=; b=Cd+yGK4kBv0k+Uutu1A/R790KdtwEE4+znrY1ZjQSwID6VfP/sK1G34zYpjvEo1yYn x/aNUC8rk7kNk0zG+rcBYtdRt8hDToDX7+YqQeGEeXF0+i46fJ00tKHu+KO763T17D7U Gr/QPEkjz/lYQZ4Rbi3YtEQknF8+9hBjFD+iiZqvU5fbm/JIhRh5/NSfEv4J575yUMYG zErohbFEXbNd2o7DBORLliWb2gCz8tWTVyNdeqO6bz74vZRzH4Yclq7IIJ6fzi2OXClh ZtI/fYQEkDCHJWkZydeiibSpfdnfItHqLaxJh2APthvwPQkdgJAazKqRwFBimIpNsrJk UIQQ== X-Gm-Message-State: ALoCoQmmRY2qb9RUsngvEXczm5WTnQiz0pOKtNnaQSGlRtSz710seBAubCXAfIcygv6EiF+tVRKa X-Received: by 10.182.71.72 with SMTP id s8mr10464826obu.80.1434993028787; Mon, 22 Jun 2015 10:10:28 -0700 (PDT) From: Bart Schaefer Message-Id: <150622101014.ZM1319@torch.brasslantern.com> Date: Mon, 22 Jun 2015 10:10:14 -0700 In-Reply-To: <20150622163559.2c2b737a@pwslap01u.europe.root.pri> Comments: In reply to Peter Stephenson "Typeset dpc (typeset-array)" (Jun 22, 4:35pm) References: <20150622163559.2c2b737a@pwslap01u.europe.root.pri> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: "Zsh Hackers' List" Subject: Re: Typeset dpc (typeset-array) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Jun 22, 4:35pm, Peter Stephenson wrote: } } +If the reserved word tt(declare), tt(export), tt(float), tt(integer), } +tt(local), tt(readonly) or tt(typeset) is matched when the line is "If any of the reserved words ..." ? } +parsed (N.B. not when it is executed), and the reserved word has not } +been disabled with tt(disable -r) Nit-pick: If the word has been disabled, will it ever be "matched"? } +The above creates a scalar parameter tt(svar) with the value `tt(one } +word)' and an array parameter tt(avar) with a value containing two Is there a way to put a non-breaking space between "one" and "word" in that sentence? } -item(tt(-T) [ var(scalar)[tt(=)var(value)] var(array) [ var(sep) ] ])( } +item(tt(-T) [ var(scalar)[tt(=)var(value)] var(array)[tt(=)LPAR()var(value...)RPAR()] [ var(sep) ] ])( We're not consistent about var(thing ...) / var(thing...) / var(thing)... usage. Hrm.