Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Is this a side effect of RC_EXPAND_PARAM?
- X-seq: zsh-users 9740
- From: DervishD <zsh@xxxxxxxxxxxx>
- To: Zsh Users <zsh-users@xxxxxxxxxx>
- Subject: Is this a side effect of RC_EXPAND_PARAM?
- Date: Fri, 2 Dec 2005 22:04:56 +0100
- Mail-followup-to: Zsh Users <zsh-users@xxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- Organization: DervishD
    Hi all :)
    $ zsh -f
    $ emulate -LR zsh
    $ var="one|two||four|five"
    $ vara=("${(s:|:)var}")
    $ print $vara[3]
    four
    $ setopt rcexpandparam
    $ vara=("${(s:|:)var}")
    $ print ·$vara[3]·
    ··
    I didn't expect this, there is no array expansions (except in the
print command of course, but that shouldn't be affected by
RC_EXPAND_PARAM) :???????????? If I add "^" to the vara assignment,
then it works as expected, so the RC_EXPAND_PARAM is making a
difference there!
    What am I doing wrong? Is this a bug or a feature?
    Thanks in advance :)
    Raúl Núñez de Arenas Coronado
-- 
Linux Registered User 88736 | http://www.dervishd.net
http://www.pleyades.net & http://www.gotesdelluna.net
It's my PC and I'll cry if I want to...
Messages sorted by:
Reverse Date,
Date,
Thread,
Author