From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29243 invoked by alias); 9 Aug 2015 19:47:22 -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: 36029 Received: (qmail 12697 invoked from network); 9 Aug 2015 19:47:20 -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.7 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,RCVD_IN_MSPIKE_H2 autolearn=ham autolearn_force=no version=3.4.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=zGsHMVhXugSUupin90cq2mHf/eTvjdg+TyWAem8YF8M=; b=0n4aGLgx0dR296qfd4CMIwJ+GF6IYrtIHhy5hxrQA/P7X0cRWVfAHgTrUqXpGkegpy kPhiazIdSMV0lS2Ocfi1F577OMvb3PtHh2Tk/fyPi56hnQn9vqizV4ndLvpSlJVYast0 Qs9YSeE6YuBVYP8hhkVhGuSTS2QH2bnR8C1ksunQ2WQAn4NFT2XAq46FMLvp6VplLCRq 10P74Q7MvayoHTLSyMiAov3jI+3Lfazmysy1BUlchatOHdS+LAYyjEqZT2nfqXGWmHVw SqavVtRZACvT15Vj+lpfOmiubnE0NZxTUTefVvkc0JIcHxf+0Quf0/qRLbEY7Etl8xKD A+hQ== MIME-Version: 1.0 X-Received: by 10.50.88.8 with SMTP id bc8mr8405366igb.46.1439149637947; Sun, 09 Aug 2015 12:47:17 -0700 (PDT) Date: Sun, 9 Aug 2015 21:47:17 +0200 Message-ID: Subject: typeset tied array initialization silently dropped for already tied params From: Mikael Magnusson To: zsh workers Content-Type: text/plain; charset=UTF-8 If you already tied SCALAR and array, then doing typeset -T SCALAR array=(a b c) silently has no effect, other than changing the separator to : or whatever you specified there. typeset -T SCALAR=foo:bar:baz array does update the value though, and specifying both gives an error as expected. -- Mikael Magnusson