Skip to content

Commit 8e38b12

Browse files
committed
V1.2JのChangelog, NEWS, バージョン表示(-V)更新です。
V1.2J update of Changelog, NEWS, version description (-V).
1 parent 23dc1d0 commit 8e38b12

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2012-07-31 OSS Consortium <[email protected]>
2+
3+
* opensource COBOL Version 1.2J released.
4+
15
2008-11-17 Roger While <[email protected]>
26

37
* configure.ac : Correct sed usage

NEWS

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
NEWS - user visible changes -*- outline -*-
22

3+
* Changes in opensource COBOL 1.2J
4+
5+
** Support Feature of Japanese, such as constant and definition of data and operation of data.
6+
7+
** New compile option '-assign_external' and variable 'assign_external=[yes|no]'. Set the
8+
file assign to the EXTERNAL file.
9+
10+
** New compile option '-free_1col_aster'. In free format COBOL mode, this option causes the
11+
compiler to regard as line comment when first column is asterisk for free format COBOL mode.
12+
13+
** New runtime environment variable OC_USERFH, which enable to run user-defined program in
14+
operation OPEN, CLOSE, DELETE, READ, REWRITE, START, WRITE, COMMIT, ROLLBACK and UNLOCK.
15+
16+
** Support currency symbol for Japanese yen, and modify default currency symbol to
17+
Japanese yen.
18+
19+
** Changed to apply the alphabetic manner as comparison method in case its operands include
20+
group fields.
21+
22+
** Fixed the problem that INSPECT causes incorrect result in case given the AFTER/BEFORE
23+
clause with negative value or SIGN SEPARATE field.
24+
25+
** Fixed the problem that value comparison on SIGN SEPARATE fields in IF or EVALUATE
26+
statements fails treating such field values as if their sign character were a part of
27+
digits.
28+
29+
** Fixed the problem that applying INITIALIZE on 01-level records in EXTERNAL files causes
30+
incorrect behavior of following I/O instructions.
31+
32+
** Changed the default actions on unhandled SIZE ERROR according to that specified in
33+
Programmer's Guide.
34+
35+
** Fixed the problem that applying INITIALIZE or MOVE ZERO on numeric field of SIGN SEPARATE
36+
destroys sign byte.
37+
38+
** Fixed the problem that COPY statement ignores the last line of each copybook when it does
39+
not end with line break.
40+
341
* OpenCOBOL 1.0 released
442

543
* Changes in OpenCOBOL 0.33

cobc/cobc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -519,6 +519,9 @@ cobc_sig_handler (int sig)
519519
static void
520520
cobc_print_version (void)
521521
{
522+
puts ("Opensource COBOL 1.2J");
523+
puts ("OSS Consortium's patched version of OpenCOBOL1.1(Feb.06 2009)");
524+
puts ("----");
522525
printf ("cobc (%s) %s.%d\n",
523526
PACKAGE_NAME, PACKAGE_VERSION, PATCH_LEVEL);
524527
puts ("Copyright (C) 2001-2009 Keisuke Nishida / Roger While");

0 commit comments

Comments
 (0)