Re: [PATCH] COBOL 7/15 492K par: parser

2025-02-17 Thread Eric Gallager
On Mon, Feb 17, 2025 at 1:43 PM James K. Lowden wrote: > > On Sat, 15 Feb 2025 23:35:16 -0500 > David Malcolm wrote: > > On better messages ... > > > + if( ($$ & $2) == $2 ) { > > +error_msg(@2, "%s clause repeated", clause); > > +YYERROR;

Re: [PATCH] COBOL 7/15 492K par: parser

2025-02-17 Thread David Malcolm
On Mon, 2025-02-17 at 13:42 -0500, James K. Lowden wrote: > On Sat, 15 Feb 2025 23:35:16 -0500 > David Malcolm wrote: > > On better messages ... > > > +  if( ($$ & $2) == $2 ) { > > +    error_msg(@2, "%s clause repeated", clause); > > +    YYERROR

Re: [PATCH] COBOL 7/15 492K par: parser

2025-02-17 Thread James K. Lowden
On Sat, 15 Feb 2025 23:35:16 -0500 David Malcolm wrote: On better messages ... > + if( ($$ & $2) == $2 ) { > +error_msg(@2, "%s clause repeated", clause); > +YYERROR; > + } > > Obviously not needed for initial release, bu

Re: [PATCH] COBOL 7/15 492K par: parser

2025-02-15 Thread David Malcolm
On Sat, 2025-02-15 at 16:01 -0500, James K. Lowden wrote: > From 5d53920602e234e4d99ae2d502e662ee3699978e 4 Oct 2024 12:01:22 - > 0400 > From: "James K. Lowden" > Date: Sat 15 Feb 2025 12:50:53 PM EST > Subject: [PATCH] 1 new 'cobol' FE file > + if( ($$ & $2) == $2 ) { +