forked from OCamlPro/gnucobol
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
439 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -640,6 +640,12 @@ | |
COBOL 202x Message Control System (MCS) statements SEND and RECEIVE | ||
* scanner.l: return WORD token if SUPPRESS is not reserved | ||
|
||
2021-09-05 Simon Sobisch <[email protected]> | ||
|
||
* cobc.h (cb_exception), cobc.c: add fatal attribute | ||
* reserved.c, tree.h, cobc.c, help.c: added cb_list_exceptions / | ||
--list-exceptions | ||
|
||
2021-09-02 Simon Sobisch <[email protected]> | ||
|
||
* reserved.c (cb_toupper): extracted and used in different places | ||
|
@@ -670,6 +676,14 @@ | |
|
||
* general: fix local includes to use "local" instead of <system> | ||
|
||
2021-08-28 Simon Sobisch <[email protected]> | ||
|
||
* typeck.c (cb_build_assignment_name): fix SELECT filename ASSIGN filename | ||
to lead to "redefinition of filename" when (the default) dialect option | ||
assign-clause=dynamic is active; identical names are now always seen | ||
as literal (similar to assign-clause=external, but without label | ||
handling), see bug 669 | ||
|
||
2021-08-26 Ron Norman <[email protected]> | ||
|
||
* codegen.c: Fix to use P_switch when computed-goto is not supported | ||
|
@@ -693,14 +707,6 @@ | |
own storage area and to have the REPORT field offset and report_column | ||
as computed to be exactly where the data should be in the print line | ||
|
||
2021-08-28 Simon Sobisch <[email protected]> | ||
|
||
* typeck.c (cb_build_assignment_name): fix SELECT filename ASSIGN filename | ||
to lead to "redefinition of filename" when (the default) dialect option | ||
assign-clause=dynamic is active; identical names are now always seen | ||
as literal (similar to assign-clause=external, but without label | ||
handling), see bug 669 | ||
|
||
2021-07-29 Simon Sobisch <[email protected]> | ||
|
||
* parser.y, config.def: changed the auto-setting of the RECURSIVE attribute | ||
|
@@ -759,6 +765,7 @@ | |
* codegen.c: Emit setting of module compile dialect | ||
|
||
2021-05-28 Ron Norman <[email protected]> | ||
|
||
* tree.c: Allow PIC clause not handled by precendence table | ||
Count decimals in $.$$ style PICTURE | ||
* typeck.c: Format numeric value for display in error message | ||
|
@@ -790,6 +797,13 @@ | |
section/paragraph/statement comes to not confuse tools like GDB | ||
with the wrong line reference (especially if we have DECLARATIVES) | ||
|
||
2021-04-08 Simon Sobisch <[email protected]> | ||
|
||
* cobc.c (print_with_overflow): extracted from print_errors_for_line, | ||
fixed potential overflow on HPUX and MSVC | ||
* flag.def, cobc.c: new -ftcmd (cb_listing_cmd) to include command line in | ||
listing summary | ||
|
||
2021-04-01 Ron Norman <[email protected]> | ||
|
||
* codegen.c: Use cob_trace_get_stmt to get a number for the statement | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -609,6 +609,12 @@ | |
than one open file | ||
* fextfh.c: Removed update of FCD-NAME-LENGTH | ||
|
||
2021-10-06 Simon Sobisch <[email protected]> | ||
|
||
* fileio.c (save_status): only internally distinguish between | ||
COB_EC_I_O_EOP and COB_EC_I_O_EOP_OVERFLOW for now as otherwise | ||
recompilation of modules would be necessary (-> postponed) | ||
|
||
2021-10-06 Simon Sobisch <[email protected]> | ||
|
||
* common.c (cob_get_environment, cob_display_environment): move strlen | ||
|
@@ -741,6 +747,14 @@ | |
|
||
* fextfh.c: Add check for record address being available | ||
|
||
2021-09-06 Simon Sobisch <[email protected]> | ||
|
||
* exception.def, exception-io.def: update for COBOL 202x, | ||
also adding some entries from COBOL 2014 and dropping one wrong | ||
* fileio.c: handling of COB_EC_I_O_RECORD_CONTENT, | ||
distinguish between COB_EC_I_O_EOP and COB_EC_I_O_EOP_OVERFLOW | ||
* fileio.c (update_fcd_to_file): don't set error status at 0x | ||
|
||
2021-08-31 Simon Sobisch <[email protected]> | ||
|
||
* intrinsic.c, common.h: implemented (cob_intr_bit_of), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.