Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: lexing
- X-seq: zsh-users 21021
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: zsh-users@xxxxxxx
- Subject: Re: lexing
- Date: Mon, 30 Nov 2015 08:23:54 -0800
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=from:message-id:date:in-reply-to:comments:references:to:subject :mime-version:content-type; bh=bspjmsSMWZSe35RVIip0wdzOHqmmySzIFOAiwHqPajI=; b=gtx9lamtI3H0P8xXRf7fKiedDlghs/eUk32V13fpkTU/QcIC1EfbiJhJfpGKTksatD MnspMJRBpLbeHdMXz8c3VUTCe01sq2R20d9nLYgZ4w+a8W9zWEnq4nIOf0rCAL7y9Bz9 wNpVDKZjlGCr4AkeW6yNjIlWg8TyRTt5OLmVN/N5yOleAySSkPAWjJFp1G3oIiYpOrTz tLMp1d2RAfD1jsfEHo6CdkQ4lZrmyXft1jIWajn1iUFGCIEPDfMTn+2Fr8lZmy1vcS3O dEXvg+gHeFjN5m7l6tQ4bOPNGFgFm8/Tp1bki69vH2UnbHrBnjsjWHD/I/mPAGGyugiH hbSA==
- In-reply-to: <565BD4C5.1070608@eastlink.ca>
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
- References: <565B18C6.6090707@eastlink.ca> <151129100735.ZM24525@torch.brasslantern.com> <565BB016.6020905@eastlink.ca> <20151130033348.GJ2504@tarsus.local2> <565BCE96.4070406@eastlink.ca> <565BD4C5.1070608@eastlink.ca>
On Nov 29, 8:47pm, Ray Andrews wrote:
}
} $(( ##\e )) is 27,
} (( #VAR ))
} $(( #var ))
}
} ... but, given that there is preceding whitespace, would these three not
} break Bart's rule? Perhaps the whitespace here is does not qualify as
} 'word separating'? Or is the " $(()) " construct an exception?
The whitespace is not "word separating" because (( stuff )) is shorthand
for
let "stuff"
so the spaces are quoted, at the level at which comments apply. $(( ))
is just a way to substitute inline the "let".
Messages sorted by:
Reverse Date,
Date,
Thread,
Author