1
2 AT58 Level 68 Multics Fortran Manual
3
4
5 02/15/89 Errata Information for MR 12.2
6
7
8 Page 2-6 change the line:
9
10 The maximum number of characters allowed in a single character string
11 is 256.
12
13 to read:
14
15 The maximum number of characters allowed in a single character string
16 constant is 512. The maximum size of a character variable is 1301071
17 128K-1.
18
19 The use of large character variables may cause the compiler to
20 indicate that it has overflowed the limit of 62000 words of automatic
21 storage, or 128K words of static storage. This can be avoided by
22 compiling with the -large_array -la option.
23
24
25 Page 6-8 under the section entitled "Equivalence Statement".
26
27 Change the first line from
28 > Syntax
29 equivalence e ee... e e e......
30 where each e is a variable or array name.
31 to
32 > Syntax
33 equivalence e ee...e e e......
34 where each e is a variable, array, array element or character substring
35 name.
36
37 Add the following line:
38
39 > Substring indexes are unsigned integer constants and can only take on
40 positive values.
41 after
42 > Subscripts are all unsigned integer constants or constant expressions,
43 and they may take on negative values.
44
45
46 Add the following line into "Examples of valid equivalence group" section:
47 > equivalence x1:4 y2:
48
49
50