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.
autodetection of fixed/free source format
In cobc: * cobc.c (main): initialize cb_config_text_column to 72 to avoid a race condition in config files. * pplex.l (ppopen): try to autodetect the format of a file after checking the BOM of a file * pplex.l (cobc_set_source_format): add new format name "AUTO" to activate auto-detection of file format
- Loading branch information
lefessan
committed
Jan 31, 2023
1 parent
647f0a2
commit fdbe408
Showing
8 changed files
with
175 additions
and
20 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
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 |
---|---|---|
|
@@ -4,6 +4,15 @@ | |
* codeoptim.c: adjusted inline functions (cob_cmp_packed_int, | ||
cob_get_packed_int) to use register types and less intermediate values | ||
|
||
2023-01-28 Fabrice Le Fessant <[email protected]> | ||
|
||
* cobc.c (main): initialize cb_config_text_column to 72 to avoid a | ||
race condition in config files. | ||
* pplex.l (ppopen): try to autodetect the format of a file after | ||
checking the BOM of a file | ||
* pplex.l (cobc_set_source_format): add new format name "AUTO" to | ||
activate auto-detection of file format | ||
|
||
2023-01-26 Simon Sobisch <[email protected]> | ||
|
||
* codegen.c: generate field offsets and indexes as long long to | ||
|
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