Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: workers/40626 (commit 6c476c22) causes multiple test failures
- X-seq: zsh-workers 40672
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: Re: workers/40626 (commit 6c476c22) causes multiple test failures
- Date: Tue, 28 Feb 2017 11:04:24 -0800
- Authentication-results: amavisd4.gkg.net (amavisd-new); dkim=pass (2048-bit key) header.d=brasslantern-com.20150623.gappssmtp.com
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=resent-from:resent-message-id:resent-date:resent-to:from:message-id :date:in-reply-to:comments:references:to:subject:mime-version; bh=v9NyeLHSiXEwx8MDPmflAvViH/SnX2baw8zsk50X7b4=; b=etZFdRIc/twPm6MxuT9Q29UFQ6hQvtyW3gIB3plCwWIamwOHGyFe2NZhusTZjXKYGb nMWxuspwlyEMjb32MKIe/PvuKJEyPdcfDcWWDFTEjs6w4Vjrj+yBwGsrnriMA5jfHLhI yfcQ2mFDUq8WWbAIIROqIOsNktOqPpBFyq33a9Y3IhZGzPZpg0gvGSviUneNUn6XkQF6 EHEBsIZsCWWpJyVvN0H/LwUBE3bfAqHecnpfJywmHbmi2devKH4bt6cmkT9uNjIxRZtY 5H6vz/fVOec2OkHk7CrQ/o241UuMK8IACm5jaOSLVqiQIWzvIrQWE97FjGgvCSHReE9y RxGA==
- In-reply-to: <20170228170329.GA9204@fujitsu.shahaf.local2>
- 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
- References: <170225160455.ZM15040@torch.brasslantern.com> <20170226061620.GA3729@fujitsu.shahaf.local2> <170226114216.ZM4201@torch.brasslantern.com> <20170228074549.GA8753@fujitsu.shahaf.local2> <170228083855.ZM7434@torch.brasslantern.com> <20170228170329.GA9204@fujitsu.shahaf.local2>
On Feb 28, 5:03pm, Daniel Shahaf wrote:
}
} > So here's my question ... why would you ever attempt to append to the
} > options parameter, empty append or otherwise?
}
} To set multiple options at once:
}
} local -a options_to_set=( printexitvalue on warncreateglobal off )
} options+=( $options_to_set )
My point is you don't need append for that.
options=( $options_to_set )
will do exactly the same thing, because it's not possible to delete any
of the hash keys even if you don't appear to be assigning them.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author