Re: 'time' not recognized as reserved when first word after 'if'

2014-06-10 Thread Dan Douglas
On Tue, Jun 10, 2014 at 8:39 AM, Dale R. Worley wrote: >> From: Dan Douglas >> >> On Mon, Jun 9, 2014 at 7:51 PM, Dale R. Worley wrote: >> > But if I add braces around the condition, 'time' is recognized: >> >> That's not too surprising. That "!" is unaffected is. "if ! ! time :; >> then ..." is

Re: 'time' not recognized as reserved when first word after 'if'

2014-06-10 Thread Andreas Schwab
wor...@alum.mit.edu (Dale R. Worley) writes: > Part of the problem is that the manual page defines "simple command", > "pipeline", "list", and "complex command", but it doesn't seem to > define "command", and it is "command" which appears as a component in > the definitions of "pipeline", "list",

Re: 'time' not recognized as reserved when first word after 'if'

2014-06-10 Thread Dale R. Worley
> From: Dan Douglas > > On Mon, Jun 9, 2014 at 7:51 PM, Dale R. Worley wrote: > > But if I add braces around the condition, 'time' is recognized: > > That's not too surprising. That "!" is unaffected is. "if ! ! time :; > then ..." is an equivalent but working pipeline. "if time { :; };" > shou