zsh-workers
 help / color / mirror / code / Atom feed
From: Stephane Chazelas <stephane.chazelas@gmail.com>
To: Eric Cook <llua@gmx.com>
Cc: zsh-workers@zsh.org
Subject: Re: f() { local -ar path=(/bin); };f gives an error
Date: Mon, 27 Nov 2017 20:17:21 +0000	[thread overview]
Message-ID: <20171127201721.GA1897@chaz.gmail.com> (raw)
In-Reply-To: <7a5807b1-0c5e-8134-a651-83e8b3df4d82@gmx.com>

2017-11-26 18:28:17 -0500, Eric Cook:
> On 11/26/2017 06:21 PM, Stephane Chazelas wrote:
> > FYI,
> > 
> > someone reported this on unix.stackexchange.com:
> > https://unix.stackexchange.com/questions/407125/why-cant-i-define-a-readonly-variable-named-path-in-zsh
> > 
> > Which looks like a bug:
> > 
> > $ zsh -c 'f() { local -ar path=(/bin); }; f'
> > f: read-only variable: path
> > $ /zsh --version
> > zsh 5.4.2-dev-0 (x86_64-unknown-linux-gnu)
> > 
> > See also the answer there by someone would did some investigation already.
> > 
> () { local -har path=(/foo); typeset -p path }
> typeset -ar path=( /foo )
> 
> -h     Hide: only useful for special  parameters  (those  marked
>        `<S>' in the table in zshparam(1)), and for local parame‐
>        ters with the same name as a  special  parameter...

Thanks.

But that creates a non-special local "path" variable.

The issue here is that when you're trying to make $path (the
special array variable tied to $PATH) readonly (with a value)
locally in a function, that doesn't work.

it also doesn't work with the scalar variant:

() { local -r PATH=/foo; }

same goes with the $cdpath/$CDPATH variable.

-- 
Stephane


  reply	other threads:[~2017-11-27 20:17 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-26 23:21 Stephane Chazelas
2017-11-26 23:28 ` Eric Cook
2017-11-27 20:17   ` Stephane Chazelas [this message]
2017-11-27 21:03     ` Eric Cook
2017-11-27 21:34       ` Bart Schaefer
2017-11-27 21:35         ` Bart Schaefer
2017-11-29 22:12         ` Stephane Chazelas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171127201721.GA1897@chaz.gmail.com \
    --to=stephane.chazelas@gmail.com \
    --cc=llua@gmx.com \
    --cc=zsh-workers@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).