Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Is this a bug or a thinko?
- X-seq: zsh-workers 12791
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx
- Subject: Is this a bug or a thinko?
- Date: Mon, 11 Sep 2000 00:53:25 +0000
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
I've just been noticing several places where the completion system does
comparisons like
[[ CURRENT -eq 1 ]]
In my patched version of 3.1.9-dev-6, CURRENT in this context is NOT being
interpreted as a math expression. That is, one must do
[[ $CURRENT -eq 1 ]]
to get the correct result.
Is failure to use math context in this situation a recently-introduced bug?
Or have the completion functions been wrong all along?
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.brasslantern.com
Zsh: http://www.zsh.org | PHPerl Project: http://phperl.sourceforge.net
Messages sorted by:
Reverse Date,
Date,
Thread,
Author