Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Possibly unexpected difference between builtin and reserved typeset
- X-seq: zsh-workers 39375
- From: Mikael Magnusson <mikachu@xxxxxxxxx>
- To: zsh workers <zsh-workers@xxxxxxx>
- Subject: Possibly unexpected difference between builtin and reserved typeset
- Date: Thu, 15 Sep 2016 11:29:28 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to; bh=N/aeNh6jDiEctS89rEeS1u2tbt24iF5Vulvka+rbv/A=; b=kM0OCEp9Qf2PBdQ0CszN1YILEcQ4neM59C6VGViVYzG8SOOdOQIm8AYsZEsoBmQ4B2 q7ErUlLHPQG9RaYeXnqaCWGFVQ4F/9wuDvF94B/98tE+yPsZnlPdDz/120HIWpCmYRYC lXMR2j15zOgCbbTIFrdr0eHC6DrYeXQo//4yHxgFJyQoLp+7K2zb8PYfQ6jJNU1nkOCb Nnbfivk4BEfxzabIGMI6fSODx/67bJy85QrmL2o1iXYrSrDODLPtVA+uRx9Ftpxiw1Ga 2qFGtyH/o4/3p77aDWDzQLSAQiroxUaqT203LlOmhXa/ZEe1hReF77g8uiFh+mx9E0fp APhA==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
% foo=bar \typeset foo; echo . $foo .
foo=bar
. .
% foo=bar typeset foo; echo . $foo .
foo=bar
. bar .
Out of the ones I tried in $reswords, typeset and friends seem to be
the only ones that aren't a syntax error after parameter assignments,
so I guess that might be why the code doesn't handle it?
--
Mikael Magnusson
Messages sorted by:
Reverse Date,
Date,
Thread,
Author