gnucobol-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[open-cobol-list] Problem with the Source Code


From: Robert Sherry
Subject: [open-cobol-list] Problem with the Source Code
Date: Thu Aug 18 11:46:41 2005

 

     The following fragment is from the current version of the file parser.y:

 

func_args:

  /* empty */                                   { $$ = NULL }

| '(' list_func_args ')'            { $$ = $2   }

;

list_func_args:

  /* empty */                                   { $$ = NULL }

| e_list                            { $$ = $1   }

;

 

I claim that the above code is missing semicolons on the C assignment statements. As such, the code will not compile. I also believe that the top delta of parser.c

was not built from the top delta of parser.y.

 

Bob Sherry


reply via email to

[Prev in Thread] Current Thread [Next in Thread]