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
24 changed files
with
281 additions
and
240 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 |
---|---|---|
|
@@ -49,6 +49,12 @@ | |
* tree.c: Change to use cb_max_binary instead of constant | ||
* typeck.c: Change to use cb_max_binary instead of constant | ||
|
||
2023-01-30 Simon Sobisch <[email protected]> | ||
|
||
* parser.y (usage_clause_screen_report), typeck.c (validate_usage): have | ||
REPORT and SCREEN section only expecting the possibly USAGEs instead all | ||
removing the need to check for bad USAGE later | ||
|
||
2023-01-28 Simon Sobisch <[email protected]> | ||
|
||
* codeoptim.c: adjusted inline functions (cob_cmp_packed_int, | ||
|
@@ -92,6 +98,23 @@ | |
out of bounds | ||
* codeoptim.c: Fix cob_check_subscript_inline for min subscript value | ||
|
||
2023-01-19 Simon Sobisch <[email protected]> | ||
|
||
* help.c (cobc_print_usage): fixed msgid to match bin/cobcrun.c | ||
* flag.def: use correct option names in help output | ||
* config.def: fixed typos and spacing in msgids | ||
* flag.def: removed duplicated msgid - those are printed in help.c only | ||
* typeck.c (cb_emit_goto_entry), tree.h, parser.y: dropped duplicated | ||
function and msgid, using cb_emit_goto instead | ||
* parser.y (_goto_depending), typeck.c (cb_emit_goto): check via use of | ||
numeric_identifier in the parser instead of postponed checking | ||
* parser.y (assign_clause), typeck.c (cb_check_numeric_value, | ||
cb_validate_collating, validate_assign_name, | ||
cb_check_integer_value, error_if_not_int_field_or_has_pic_p): | ||
dropped very similar msgids using standard ones for the checks | ||
* tree.c (get_category_from_arguments, get_number_in_parentheses): msgid | ||
related changes | ||
|
||
2023-01-18 Simon Sobisch <[email protected]> | ||
|
||
* parser.y (cb_default_colseq, build_default_colseq, setup_default_colseq): | ||
|
@@ -7436,12 +7459,6 @@ | |
|
||
* Report Writer module | ||
|
||
201?-??-?? Sergey Kashyrin <[email protected]> | ||
|
||
* codeoptim.c : Fixed bug in COB_ADD_PACKED_INT. | ||
Computing COMP-3 failed in MSVC-build versions, | ||
in output_storage() calls '%' should be '%%'. | ||
|
||
2012-05-09 Simon Sobisch <[email protected]> | ||
|
||
* cobc.c: Added conversion for enabling options in WIN style | ||
|
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 |
---|---|---|
|
@@ -49,8 +49,10 @@ cobc_print_usage (char * prog) | |
"or (preferably) use the issue tracker via the home page."), | ||
"[email protected]"); | ||
putchar ('\n'); | ||
puts (_("GnuCOBOL home page: <https://www.gnu.org/software/gnucobol/>")); | ||
puts (_("General help using GNU software: <https://www.gnu.org/gethelp/>")); | ||
printf (_("GnuCOBOL home page: <%s>"), "https://www.gnu.org/software/gnucobol/"); | ||
putchar ('\n'); | ||
printf (_("General help using GNU software: <%s>"), "https://www.gnu.org/gethelp/"); | ||
putchar ('\n'); | ||
} | ||
|
||
void | ||
|
@@ -84,13 +86,14 @@ cobc_print_usage_common_options (void) | |
" see configuration files in directory config")); | ||
puts (_(" -F, --free use free source format (alias for -fformat=free)")); | ||
puts (_(" --fixed use fixed source format (default; alias for\n" | ||
" -fformat=fixed)")); | ||
" -fformat=fixed)")); | ||
puts (_(" -O, -O2, -O3, -Os enable optimization")); | ||
puts (_(" -O0 disable optimization")); | ||
puts (_(" -g enable C compiler debug and stack check")); | ||
puts (_(" -d, --debug enable all run-time error checking,\n" | ||
" equal to -fstack-check -fec=EC-ALL")); | ||
/* duplicated here from flags.def to place it next to -debug */ | ||
/* "duplicated" from flags.def where output is suppressed and untranslated, | ||
to place it next to --debug in the help output */ | ||
puts (_(" -fec=<exception-name>\tenable code generation for <exception-name>,\n" | ||
" see --list-exceptions for the possible values,\n" | ||
" sets -fsource-location")); | ||
|
Oops, something went wrong.