Re: Possible bug in pattern processing for try/catch blocks

2020-10-24 Fir de Conversatie Yegappan Lakshmanan
Hi, On Sat, Oct 24, 2020 at 8:15 AM Jason Franklin wrote: > Greetings: > > I have discovered that the pattern matching in try/catch blocks does not > conform to my expectations. > > Try this example: > > try > echoerr 'foo bar baz' > catch /foo/ > echo 'caught' >

Possible bug in pattern processing for try/catch blocks

2020-10-24 Fir de Conversatie Jason Franklin
Greetings: I have discovered that the pattern matching in try/catch blocks does not conform to my expectations. Try this example: try echoerr 'foo bar baz' catch /foo/ echo 'caught' endtry The string "caught" is printed, as I would expect. Now try this: try