Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: [PATCH] [long] typeset doesn't report tied parameters (and related issues)
- X-seq: zsh-workers 43638
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: Peter Stephenson <p.stephenson@xxxxxxxxxxx>
- Subject: Re: [PATCH] [long] typeset doesn't report tied parameters (and related issues)
- Date: Mon, 8 Oct 2018 09:40:59 -0700
- Cc: "zsh-workers@xxxxxxx" <zsh-workers@xxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=kEXWrWqgAq808JdlRnp4pYFjvUYxrZ8rWb9n0Um8cPA=; b=ffd2lCx7LolOKdZ2XqJgFK2YIH7DaQQ5egOyIYAGH+zfK+/wLglthE8Ih8++kiH56c XvPG+wBusn2SkL7RsDdH42dBgEGcnzRTWkJLbZMaPX1kY8Zlme3+0Y0z2awBQJIwUFM2 mPJZSJS8TNwcw3YrDhDe6h/Zl53mmYA8ErcNoZ6YMNSUpwtt4iKtYxnoLGhWuOrgZL+z il4pKkIu5sFEFLDu7wPwuS0QKPEqig499Xwn1GCcUr/U/NBvRBIrmd6IW3EGwfBbtVHI zPBodv9DiJpyfjwmX6Yi8SXqNDa780HGeZTzHexLxoVC8Y60L8XYfbPH3XKxFsji6cpV ncSQ==
- In-reply-to: <CAH+w=7ZPEYRa2_z4s3wbxVeHY+U3L72mQm0JTsph1vy-1wViKA@mail.gmail.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <20180924210550.carijwjibarjivu4@chaz.gmail.com> <CGME20181007133632epcas5p43a3b4c7f0fe1863478748c5cf46ce8ef@epcas5p4.samsung.com> <20181007133545.zzkrbc3ed6shnk3e@chaz.gmail.com> <20181008090557eucas1p11f18ef9ca4a6e3cc09fd59242f344f96~bltk3bsqO1947719477eucas1p1q@eucas1p1.samsung.com> <CACeGjnUhNqca7jLAR0KKSxobzDd+xXdAe4BeUeRpxu2CTp_zkA@mail.gmail.com> <20181008141056eucas1p2a9a49ec055d2760e87c17832af9f6591~bp33g9vlR0328803288eucas1p2G@eucas1p2.samsung.com> <1539008917.1366329.1534632080.5313528C@webmail.messagingengine.com> <20181008152406eucas1p1660f190ddb4bcd4c0131c4c84492a9f2~bq3vkNlyg2997729977eucas1p1I@eucas1p1.samsung.com> <CAH+w=7ZPEYRa2_z4s3wbxVeHY+U3L72mQm0JTsph1vy-1wViKA@mail.gmail.com>
On Mon, Oct 8, 2018 at 8:54 AM Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx> wrote:
>
> function {
> local -rax zsh_exported_readonly_array=(2)
> local -rAx zsh_exported_readonly_hash=(3 3)
> local -rx zsh_exported_readonly_scalar=1
> print zsh:
> export -p | grep zsh_exported_readonly
> readonly -p | grep zsh_exported_readonly
> print sh:
> emulate -L sh
> export -p | grep zsh_exported_readonly
> readonly -p | grep zsh_exported_readonly
> print still asking for arrays:
> export -ap | grep zsh_exported_readonly
> readonly -ap | grep zsh_exported_readonly
> }
This runs to successful completion from an interactive Src/zsh -f. So
do the couple of tests immediately before it. I suspect it's some
kind of cascading effect from the series of tests in B02, but I'm not
sure how far I back one has to go.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author