summaryrefslogtreecommitdiff
path: root/lib/tools/doc/src/notes.xml
blob: 09ae5ef04aa6ea1c7a61e252ad125603807bf556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE chapter SYSTEM "chapter.dtd">

<chapter>
  <header>
    <copyright>
      <year>2004</year><year>2018</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at
 
          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.

    </legalnotice>

    <title>Tools Release Notes</title>
    <prepared></prepared>
    <docno></docno>
    <date></date>
    <rev></rev>
    <file>notes.xml</file>
  </header>
  <p>This document describes the changes made to the Tools application.</p>

<section><title>Tools 3.2</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Add <c>cprof</c> and <c>tags</c> modules to .app file so
	    that they are included in releases.</p>
          <p>
	    Own Id: OTP-15534 Aux Id: PR-2078 </p>
        </item>
        <item>
          <p>
	    Improved documentation parsing in emacs erldoc
	    functionality.</p>
          <p>
	    Own Id: OTP-15699 Aux Id: PR-2184 </p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
	    <p>The <c>cover</c> tool now uses the <c>counters</c>
	    module instead of <c>ets</c> for updating the counters
	    for how many times a line has been executed. By default,
	    Cover will work with distributed nodes, but a new
	    function <c>cover:local_only/0</c> allows running the
	    Cover in a restricted but faster local-only mode.</p>
	    <p>The increase in speed will vary depending on the type
	    of code being cover-compiled, but as an example, the
	    compiler test suite runs more than twice as fast with the
	    new Cover.</p>
          <p>
	    Own Id: OTP-15575</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 3.1.0.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
	    <p><c>cover</c> would fail to start if two processes
	    tried to start it at the exact same time.</p>
          <p>
	    Own Id: OTP-15813 Aux Id: ERL-943 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 3.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Minor fixes for <c>make clean</c>.</p>
          <p>
	    Own Id: OTP-15657</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    In the HTML file generated by
	    <c>cover:analyse_to_file/1,2</c>, a link is now added to
	    the line number. This makes it easier to share pointers
	    to specific lines.</p>
          <p>
	    Own Id: OTP-15541</p>
        </item>
        <item>
          <p>
	    Uncovered lines are now marked with a sad face,
	    <c>:-(</c>, in the HTML output from
	    <c>cover:analyse_to_file/1,2</c>. This is to make these
	    lines easier to find by search.</p>
          <p>
	    Own Id: OTP-15542</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 3.0.2</title>

    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Remove emacs warnings and added more tests.</p>
          <p>
	    Own Id: OTP-15476</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 3.0.1</title>

    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    The HTML pages generated by cover:analyse_to_file/1 and
	    related functions is improved for readability.</p>
          <p>
	    Own Id: OTP-15213 Aux Id: PR-1807 </p>
        </item>
        <item>
          <p>
	    Add alignment functionality in emacs.</p>
          <p>
	    Own Id: OTP-15239 Aux Id: PR-1728 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 3.0</title>

    <section><title>Improvements and New Features</title>
      <list>
        <item>
	    <p>Added <c>instrument:allocations</c> and
	    <c>instrument:carriers</c> for retrieving information
	    about memory utilization and fragmentation.</p>
	    <p>The old <c>instrument</c> interface has been removed,
	    as have the related options <c>+Mim</c> and
	    <c>+Mis</c>.</p>
          <p>
	    *** POTENTIAL INCOMPATIBILITY ***</p>
          <p>
	    Own Id: OTP-14961</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.11.2.2</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
	    <p><c>cover</c> would fail to start if two processes
	    tried to start it at the exact same time.</p>
          <p>
	    Own Id: OTP-15813 Aux Id: ERL-943 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.11.2.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Minor fixes for <c>make clean</c>.</p>
          <p>
	    Own Id: OTP-15657</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.11.2</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
	    <p> A counting bug is corrected in <c>Cover</c>. The bug
	    was introduced in Erlang/OTP 18.0. </p>
          <p>
	    Own Id: OTP-14817 Aux Id: PR 1641 </p>
        </item>
        <item>
	    <p>The <c>lcnt</c> server will no longer crash if
	    <c>lcnt:information/0</c> is called before
	    <c>lcnt:collect/0</c>.</p>
          <p>
	    Own Id: OTP-14912</p>
        </item>
        <item>
	    <p><c>lcnt:collect</c> will now implicitly start the
	    <c>lcnt</c> server, as per the documentation.</p>
          <p>
	    Own Id: OTP-14913</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Improved indentation in emacs and various other updates.</p>
          <p>
	    Own Id: OTP-14944</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.11.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
	    <p> Removed all old unused files in the documentation.
	    </p>
          <p>
	    Own Id: OTP-14475 Aux Id: ERL-409, PR-1493 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.11</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
	    <p> The predefined Xref analysis <c>locals_not_used</c>
	    no longer reports unused functions with the
	    <c>-on_load()</c> attribute.</p> <p> The new predefined
	    Xref variable <c>OL</c> holds all functions with the
	    <c>-on_load()</c> attribute. </p>
          <p>
	    Own Id: OTP-14344</p>
        </item>
        <item>
          <p>
	    In fprof when sampling multiple processes and analyzing
	    with totals set to true, the output now sums together all
	    caller and callee entries which concerns the same
	    function. Previous behaviour was to report each
	    contributing entry separately.</p>
          <p>
	    Own Id: OTP-14500</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
	    <p>Lock counting can now be fully toggled at runtime in
	    the lock counting emulator (<c>-emu_type lcnt</c>).
	    Everything is enabled by default to match the old
	    behavior, but specific categories can be toggled at will
	    with minimal runtime overhead when disabled. Refer to the
	    documentation on <c>lcnt:rt_mask/1</c> for details.</p>
          <p>
	    Own Id: OTP-13170</p>
        </item>
        <item>
	    <p><c>lcnt:collect</c> and <c>lcnt:clear</c> will no
	    longer block all other threads in the runtime system.</p>
          <p>
	    Own Id: OTP-14412</p>
        </item>
        <item>
          <p>
	    General Unicode improvements.</p>
          <p>
	    Own Id: OTP-14462</p>
        </item>
        <item>
          <p>
	    Tools are updated to show Unicode atoms correctly.</p>
          <p>
	    Own Id: OTP-14464</p>
        </item>
        <item>
	    <p>Add <c>erlang:iolist_to_iovec/1</c>, which converts an
	    iolist() to an erlang:iovec(), which suitable for use
	    with <c>enif_inspect_iovec</c>.</p>
          <p>
	    Own Id: OTP-14520</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.10.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    In OTP-20.0, the behavior of c, make, and ct_make was
	    changed so that in some cases the beam files by default
	    would be written to the directory where the source files
	    were found. This is now changed back to the old behavior
	    so beam files are by default written to current
	    directory.</p>
          <p>
	    Own Id: OTP-14489 Aux Id: ERL-438 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.10</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    In some situations, <c>make:all()</c> and friends did not
	    detect changes in include files located in the current
	    directory. This is now corrected.</p>
          <p>
	    Own Id: OTP-14339 Aux Id: ERL-395 </p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
	    <p>The <c>make</c> module now accepts the
	    <c>{emake,Emake}</c> option.</p>
          <p>
	    Own Id: OTP-14253</p>
        </item>
        <item>
	    <p> Miscellaneous updates due to atoms containing
	    arbitrary Unicode characters. </p>
          <p>
	    Own Id: OTP-14285</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.9.1</title>

    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Improved edoc support in emacs mode.</p>
          <p>
	    Own Id: OTP-14217 Aux Id: PR-1282 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.9</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Fix unhandled trace event send_to_non_existing_process in
	    fprof.</p>
          <p>
	    Own Id: OTP-13998</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Improved edoc support in emacs erlang-mode.</p>
          <p>
	    Own Id: OTP-13945 Aux Id: PR-1157 </p>
        </item>
        <item>
          <p>
	    Added erldoc to emacs mode which opens html documentation
	    in browser from emacs. For example <c>M-x erldoc-browse
	    RET lists:foreach/2</c>.</p>
          <p>
	    Own Id: OTP-14018 Aux Id: PR-1197 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.8.6</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Errors in type specification and Emacs template
	    generation for <c>gen_statem:code_change/4</c> has been
	    fixed from bugs.erlang.org's Jira cases ERL-172 and
	    ERL-187.</p>
          <p>
	    Own Id: OTP-13746 Aux Id: ERL-172, ERL-187 </p>
        </item>
        <item>
          <p>
	    Fix gc_start/gc_end in fprof tags when parsing old trace
	    logs.</p>
          <p>
	    Own Id: OTP-13778 Aux Id: PR-1136 </p>
        </item>
        <item>
	    <p><c>make</c> (tools) and <c>ct_make</c> (common_test)
	    would crash if an Erlang source file contained a
	    <c>-warning()</c> directive.</p>
          <p>
	    Own Id: OTP-13855</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.8.5</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
	    <p>Correct a bug when adding multiple modules to an Xref
	    server. The bug was introduced in OTP-19.0. </p>
          <p>
	    Own Id: OTP-13708 Aux Id: ERL-173 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.8.4</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Update fprof to use the new 'spawned' trace event to
	    determine when a process has been created.</p>
          <p>
	    Own Id: OTP-13499</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
	    <p>Optimize adding multiple modules to an Xref server.
	    </p>
          <p>
	    Own Id: OTP-13593</p>
        </item>
        <item>
          <p>
	    Various emacs mode improvements, such as better tags
	    support.</p>
          <p>
	    Own Id: OTP-13610</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.8.3</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    <c>cover:compile_beam/1</c> and
	    <c>cover:compile_beam_directory/1,2</c> crashed when
	    trying to compile a beam file without a <c>'file'</c>
	    attribute. This has been corrected and an error is
	    returned instead.</p>
          <p>
	    Thanks to Louis-Philippe Gauthier for reporting this bug.</p>
          <p>
	    Own Id: OTP-13200</p>
        </item>
        <item>
	    <p>Fix a bit string comprehension bug in Cover. </p>
          <p>
	    Own Id: OTP-13277 Aux Id: PR 856 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.8.2</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    The emacs mode does not add a newline after the arrow on
	    -callback lines anymore.</p>
          <p>
	    Own Id: OTP-13042</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.8.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    If a module includes eunit.hrl, a parse transform adds
	    the function test/0 on line 0 in the module. A bug in
	    OTP-18.0 caused cover:analyse_to_file/1 to fail to insert
	    cover data in the output file when line 0 existed in the
	    cover data table. This is now corrected.</p>
          <p>
	    Own Id: OTP-12981</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.8</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    In order to improve performance of the cover tool, new
	    functions are added for cover compilation and analysis on
	    multiple files. This allows for more parallelisation.</p>
          <p>
	    Some improvements of the data base access is also done in
	    order to improve the performance when analysing and
	    resetting cover data.</p>
          <p>
	    Minor incompatibility: An error reason from
	    analyse_to_file is changed from no_source_code_found to
	    {no_source_code_found,Module}.</p>
          <p>
	    *** POTENTIAL INCOMPATIBILITY ***</p>
          <p>
	    Own Id: OTP-12330 Aux Id: seq12757 </p>
        </item>
        <item>
	    <p>Attempting to do a <c>cover</c> analysis when neither
	    source code nor beam file could be found would hang the
	    <c>cover</c> server. Corrected to return a proper
	    error.</p>
          <p>
	    Own Id: OTP-12806</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Allow maps for supervisor flags and child specs</p>
          <p>
	    Earlier, supervisor flags and child specs were given as
	    tuples. While this is kept for backwards compatibility,
	    it is now also allowed to give these parameters as maps,
	    see <seealso
	    marker="stdlib:supervisor#sup_flags">sup_flags</seealso>
	    and <seealso
	    marker="stdlib:supervisor#child_spec">child_spec</seealso>.</p>
          <p>
	    Own Id: OTP-11043</p>
        </item>
        <item>
          <p>
	    Remove Mnemosyne rules support.</p>
          <p>
	    Own Id: OTP-12511</p>
        </item>
        <item>
          <p>
	    Add printout of total number of calls and time in eprof</p>
          <p>
	    Own Id: OTP-12681</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.7.2</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Fix lcnt sorting and printout of histograms.</p>
          <p>
	    Own Id: OTP-12364</p>
        </item>
        <item>
	    <p> Fix a Unicode bug in the <c>tags</c> module. </p>
          <p>
	    Own Id: OTP-12567</p>
        </item>
        <item>
          <p>
	    Fix tags completion in erlang.el for GNU Emacs 23+</p>
          <p>
	    Own Id: OTP-12583</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.7.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Fixed a typo in erlang-mode comment.</p>
          <p>
	    Own Id: OTP-12214</p>
        </item>
        <item>
          <p>
	    Add a skeleton for -spec in Erlang mode for Emacs</p>
          <p>
	    Own Id: OTP-12283</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Cover no longer crashes when compiling <c>receive</c> and
	    the like with just an <c>after</c> clause. Thanks to
	    José Valim for providing a fix.</p>
          <p>
	    Own Id: OTP-12328</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.7</title>

    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Add log2 histogram to lcnt for lock wait time</p>
          <p>
	    Own Id: OTP-12059</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.15</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Removed <c>erlang:bitstr_to_list/1</c> and
	    <c>erlang:list_to_bitstr/1</c>. They were added by
	    mistake, and have always raised an <c>undefined</c>
	    exception when called.</p>
          <p>
	    Own Id: OTP-11942</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.14</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Removed the support for the query keyword from emacs mode
	    (Thanks to Paul Oliver)</p>
          <p>
	    Own Id: OTP-11568</p>
        </item>
        <item>
          <p>
	    Emacs mode improvements (Thanks to Steve Vinoski)</p>
          <p>
	    Own Id: OTP-11601</p>
        </item>
        <item>
          <p>
	    Application upgrade (appup) files are corrected for the
	    following applications: </p>
          <p>
	    <c>asn1, common_test, compiler, crypto, debugger,
	    dialyzer, edoc, eldap, erl_docgen, et, eunit, gs, hipe,
	    inets, observer, odbc, os_mon, otp_mibs, parsetools,
	    percept, public_key, reltool, runtime_tools, ssh,
	    syntax_tools, test_server, tools, typer, webtool, wx,
	    xmerl</c></p>
          <p>
	    A new test utility for testing appup files is added to
	    test_server. This is now used by most applications in
	    OTP.</p>
          <p>
	    (Thanks to Tobias Schlager)</p>
          <p>
	    Own Id: OTP-11744</p>
        </item>
        <item>
          <p>
	    The emacs erlang mode now match erlang keywords more
	    carefully (Thanks to Steve Vinoski)</p>
          <p>
	    Own Id: OTP-11786</p>
        </item>
        <item>
          <p>
	    The emacs erlang-mode now auto loads for more file types
	    (Thanks to Phil Hagelberg)</p>
          <p>
	    Own Id: OTP-11788</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    <c>cover</c> can run on itself. Also, support for reading
	    BEAM files produced by ancient OTP versions before R9C
	    has been removed.</p>
          <p>
	    Own Id: OTP-11692</p>
        </item>
        <item>
          <p>
	    Support maps in cover</p>
          <p>
	    Own Id: OTP-11764</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.13</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Erlang-specific compilation error regexp is added in
	    erlang-eunit.el. This defvar was earlier in erlang.el,
	    but was erroneously removed in R15B02, while still used
	    by erlang-eunit.el.</p>
          <p>
	    Own Id: OTP-11417 Aux Id: seq12447 </p>
        </item>
        <item>
          <p>
	    Take compiler options from beam in cover:compile_beam.
	    Thanks to Péter Gömöri.</p>
          <p>
	    Own Id: OTP-11439</p>
        </item>
        <item>
          <p>
	    Silence warnings (Thanks to Anthony Ramine)</p>
          <p>
	    Own Id: OTP-11517</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Add iodata, nonempty_string to built-in type highlighting
	    for emacs. Thanks to Paul Oliver.</p>
          <p>
	    Own Id: OTP-11394</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.12</title>

    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Remove trailing spaces in Emacs templates. Thanks to
	    Roberto Aloi.</p>
          <p>
	    Own Id: OTP-11198</p>
        </item>
        <item>
          <p>
	    Fixed the Emacs erlang-mode to accommodate the coding
	    style where lists written across several lines have each
	    line starting with a comma. Thanks to Magnus Henoch.</p>
          <p>
	    Own Id: OTP-11242</p>
        </item>
        <item>
          <p>
	    Make the Emacs Erlang mode TRAMP-aware when compiling.
	    Thanks to Tomas Abrahamsson.</p>
          <p>
	    Own Id: OTP-11270</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.11</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    When cover:stop(Node) was called on a non-existing node,
	    a process waiting for cover data from the node would hang
	    forever. This has been corrected.</p>
          <p>
	    Own Id: OTP-10979</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Make cover smarter about finding source from beam.</p>
          <p>
	    In particular, search using the source path in
	    module_info if the current heuristic fails.</p>
          <p>
	    Own Id: OTP-10902</p>
        </item>
        <item>
          <p>
	    Remove Flymake dependency in erlang-pkg.el. Thanks to
	    Magnus Henoch.</p>
          <p>
	    Own Id: OTP-10930</p>
        </item>
        <item>
          <p>
	    Erlang-mode: Add autoload cookies for file extension
	    associations. Thanks to Magnus Henoch.</p>
          <p>
	    Own Id: OTP-10999</p>
        </item>
        <item>
	    <p> Postscript files no longer needed for the generation
	    of PDF files have been removed. </p>
          <p>
	    Own Id: OTP-11016</p>
        </item>
        <item>
          <p>
	    Fix a race condition when there're several applications
	    in apps directory. Thanks to Manuel Rubio.</p>
          <p>
	    Own Id: OTP-11028</p>
        </item>
        <item>
          <p>
	    New option for eprof, 'set_on_spawn'. This option was
	    previously always on and is also the default.</p>
          <p>
	    Own Id: OTP-11144</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.10</title>

    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Fix a bug in cover when used with no_auto_import. Thanks
	    to José Valim.</p>
          <p>
	    Own Id: OTP-10778</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.9</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Add missing modules in app-file</p>
          <p>
	    Own Id: OTP-10439</p>
        </item>
        <item>
          <p>
	    Make erlang-mode more compatible with package.el (Thanks
	    to Gleb Peregud)</p>
          <p>
	    Own Id: OTP-10465</p>
        </item>
        <item>
          <p>
	    Fix various typos (thanks to Tuncer Ayaz)</p>
          <p>
	    Own Id: OTP-10611</p>
        </item>
        <item>
          <p>
	    Add separate face for exported functions (Thanks to
	    Thomas Järvstrand)</p>
          <p>
	    Own Id: OTP-10637</p>
        </item>
        <item>
          <p>
	    The BIF highlighting in the emacs mode has been updated
	    to correspond with the correct BIFs.</p>
          <p>
	    Own Id: OTP-10774</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
	    <p> Support for Unicode has been implemented. </p>
          <p>
	    Own Id: OTP-10302</p>
        </item>
        <item>
          <p>
	    A new function, cover:flush(Nodes), is added which will
	    fetch data from remote nodes without stopping cover on
	    those nodes. This is used by test_server and common_test
	    when it is safe to assume that the node will be
	    terminated after the test anyway. The purpose is to avoid
	    processes crashing when re-loading the original beam if
	    the processes is still running old code.</p>
          <p>
	    Remote nodes will now continue to count code coverage if
	    the connection to the main node is broken. Earlier, a
	    broken connection would cause the cover_server on the
	    remote node to die and thus any still cover compiled
	    modules would cause process crash when trying to insert
	    cover data in ets tables that used to exist on the
	    cover_server. The new functionality also involves
	    synchronization with the main node if the nodes are
	    reconnected.</p>
          <p>
	    *** POTENTIAL INCOMPATIBILITY ***</p>
          <p>
	    Own Id: OTP-10523 Aux Id: OTP-10427 </p>
        </item>
        <item>
	    <p>Where necessary a comment stating encoding has been
	    added to Erlang files. The comment is meant to be removed
	    in Erlang/OTP R17B when UTF-8 becomes the default
	    encoding. </p>
          <p>
	    Own Id: OTP-10630</p>
        </item>
        <item>
          <p>
	    Fix syntax highlighting of $\' in Emacs mode. Thanks to
	    Magnus Henoch.</p>
          <p>
	    Own Id: OTP-10766</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.8</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    The last tuple fun call has been removed from fprof.</p>
          <p>
	    Own Id: OTP-10091 Aux Id: seq12067 </p>
        </item>
        <item>
          <p>
	    Fix indentation of record fields in Emacs (Thanks to
	    Tomas Abrahamsson)</p>
          <p>
	    Own Id: OTP-10120</p>
        </item>
        <item>
          <p>
	    Documentation fixes (Thanks to Ricardo Catalinas Jiménez
	    )</p>
          <p>
	    Own Id: OTP-10121</p>
        </item>
        <item>
          <p>
	    Remove Erlang-specific compilation error regexp in
	    erlang.el</p>
          <p>
	    Own Id: OTP-10168</p>
        </item>
        <item>
          <p>
	    Fix highlighting of atoms ending with a dollar sign</p>
          <p>
	    Like this: 'atom$'. In that example, the last single
	    quote should be recognised as ending the atom. This needs
	    a font-lock workaround similar to the one for strings.
	    Thanks to Magnus Henoch</p>
          <p>
	    Own Id: OTP-10178</p>
        </item>
        <item>
	    <p> Xref now accepts filenames with character codes
	    greater than 126. (Thanks to Emile Joubert for reporting
	    the issue.) </p>
          <p>
	    Own Id: OTP-10192</p>
        </item>
        <item>
          <p>
	    Add test_indentation target to lib/tools/emacs/Makefile</p>
          <p>
	    Automatically indent test.erl.orig, save to test.erl, and
	    compare to test.erl.intended. Thanks to Magnus Henoch.</p>
          <p>
	    Own Id: OTP-10226</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.7</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Makefiles in erts, hipe and tools have been corrected to
	    enable parallel make, i.e MAKEFLAGS=-jX where X is the
	    parallelity number. As a result of this dependencies were
	    corrected since that is what is needed for parallel make
	    to work.</p>
          <p>
	    Own Id: OTP-9857 Aux Id: OTP-9451 </p>
        </item>
        <item>
	    <p>Minor suppressions and fixes of compilation
	    warnings</p>
          <p>
	    Own Id: OTP-10016</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.6.6</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
	    <p>Update system profiling principles to reflect eprof
	    performance improvements.</p>
          <p>
	    Own Id: OTP-9656</p>
        </item>
        <item>
          <p>
	    [cover] fix leftover {'DOWN', ..} msg in callers queue</p>
          <p>
	    After stopping cover with cover:stop() there could still
	    be a {'DOWN',...} leftover message in the calling
	    process's message queue. This unexpected leftover could
	    be eliminated if erlang:demonitor/2 with option flush
	    would be used in certain points</p>
          <p>
	    Own Id: OTP-9694</p>
        </item>
        <item>
          <p>
	    Add deps as erlang-flymake include directory.</p>
          <p>
	    Update erlang-flymake to recognize the "deps" folder as
	    an include directory. This makes erlang-flymake
	    compatible with the rebar dependency management tool's
	    default folder structure, which puts included
	    dependencies in "deps".(Thanks to Kevin Albrecht)</p>
          <p>
	    Own Id: OTP-9791</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
	    <p>Variables are now now allowed in '<c>fun M:F/A</c>' as
	    suggested by Richard O'Keefe in EEP-23.</p>
	    <p>The representation of '<c>fun M:F/A</c>' in the
	    abstract format has been changed in an incompatible way.
	    Tools that directly read or manipulate the abstract
	    format (such as parse transforms) may need to be updated.
	    The compiler can handle both the new and the old format
	    (i.e. extracting the abstract format from a pre-R15 BEAM
	    file and compiling it using compile:forms/1,2 will work).
	    The <c>syntax_tools</c> application can also handle both
	    formats.</p>
          <p>
	    *** POTENTIAL INCOMPATIBILITY ***</p>
          <p>
	    Own Id: OTP-9643</p>
        </item>
        <item>
          <p>
	    Tuple funs (a two-element tuple with a module name and a
	    function) are now officially deprecated and will be
	    removed in R16. Use '<c>fun M:F/A</c>' instead. To make
	    you aware that your system uses tuple funs, the very
	    first time a tuple fun is applied, a warning will be sent
	    to the error logger.</p>
          <p>
	    Own Id: OTP-9649</p>
        </item>
        <item>
          <p>
	    Eliminate use of deprecated regexp module</p>
          <p>
	    Own Id: OTP-9810</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.6.5</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Teach the emacs mode to compile yecc and leex files</p>
          <p>
	    If visiting a .yrl or .xrl file in emacs with
	    erlang-mode, then the `erlang-compile' function (normally
	    bound to C-c C-k), now knows how to compile yecc and leex
	    files, and then, if that compilation succeeds, also
	    compiles the resulting .erl files.</p>
          <p>
	    Also introduce a `erlang-compile-command-function-alist'
	    to make it possible to hook in other functions for
	    computing compilation commands/expressions, depending on
	    file name. (Thanks to Tomas Abrahamsson )</p>
          <p>
	    Own Id: OTP-9503</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
	    <p> Bugs in xref(3) have been fixed. (Thanks to Matthias
	    Lang.) </p>
          <p>
	    Own Id: OTP-9416</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.6.4</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Change make:files to behave more like erlc</p>
          <p>
	    This change removes the unnecessary checks on the files
	    when make:files is called and allows the error checking
	    to be done in compile:file, where the error messages are
	    produced. It does not affect the return value.</p>
          <p>
	    (Thanks to Sam bobroff)</p>
          <p>
	    Own Id: OTP-9179</p>
        </item>
        <item>
          <p>
	    add user specified compiler options on form reloading</p>
          <p>
	    In order to be able to test non-exported functions from
	    another (test) module it is necessary to compile the
	    specific module (at least during the test phase) with the
	    export_all compiler option. This allows complete
	    separation of testing and productive code. At the moment
	    it is not possible to combine this with a test code
	    coverage using the cover module. The problem is that when
	    cover compiling a module using cover:compile_* the code
	    is reloaded into the emulator omitting/filtering the
	    passed user options. In my example above the export_all
	    option would be removed and the non-exported functions
	    cannot be called any more. (Thanks to Tobias Schlager)</p>
          <p>
	    Own Id: OTP-9204</p>
        </item>
        <item>
          <p>
	    Inhibit electric newline after "-&gt;" when inside a type
	    spec</p>
          <p>
	    The Erlang mode for Emacs inserts a newline after every
	    "-&gt;", which saves you one keystroke when writing a
	    function, but that is inappropriate when writing a type
	    spec, as you'd normally keep the spec on one line. This
	    change inhibits the automatic insertion when the current
	    line starts with "-spec" or "-type".(Thanks to Magnus
	    Henoch)</p>
          <p>
	    Own Id: OTP-9255</p>
        </item>
        <item>
          <p>
	    Add a check logic to prevent file descriptor leak</p>
          <p>
	    cover module handle files as raw in export and import.
	    Assert counts of ports are the same at the beginning and
	    at the end of the test case.(Thanks to Shunichi
	    Shinohara)</p>
          <p>
	    Own Id: OTP-9300</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.6.3</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    Declare indentation options as "safe" in erlang-mode for
	    Emacs</p>
          <p>
	    Emacs has a facility for setting options on a per-file
	    basis based on comments in the source file. By default,
	    all options are considered "unsafe", and the user is
	    queried before the variable is set. This patch declares
	    the variables erlang-indent-level, erlang-indent-guard
	    and erlang-argument-indent to be safe, if the value
	    specified in the source file is valid.</p>
          <p>
	    Such declarations usually look like this:</p>
          <p>
	    %% -*- erlang-indent-level: 2 -*-</p>
          <p>
	    and appear on the first line of the file. (thanks to
	    Magnus Henoch)</p>
          <p>
	    Own Id: OTP-9122</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
	    Cover has been improved to take less memory and allow
	    parallel analysis of cover data. Data collection from
	    nodes is now done in parallel and it is now possible to
	    issue multiple analyse and analyse_to_file requests at
	    the same time. A new function call async_analyse_to_file
	    has also been introduced, see the documentation for more
	    details.</p>
          <p>
	    Own Id: OTP-9043 Aux Id: seq11771 </p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.6.2</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
	    <p>eprof: API sort mismatch has now been fixed. </p>
          <p>
	    Own Id: OTP-8853</p>
        </item>
        <item>
          <p>
	    eprof: fix division by zero in statistics</p>
          <p>
	    Own Id: OTP-8963</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.6.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    <c>cover</c> will now show ampersand characters in the
	    source code correctly. (Thanks to Tom Moertel.)</p>
          <p>
	    Own Id: OTP-8776</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.6</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
	    <p>A race condition affecting Cover has been removed.</p>
          <p>
	    Own Id: OTP-8469</p>
        </item>
        <item>
          <p>
	    Emacs improvements:</p>
          <p>
	    Fixed emacs-mode installation problems.</p>
          <p>
	    Fixed a couple of -spec and -type indentation and
	    font-lock problems.</p>
          <p>
	    Fixed error messages on emacs-21.</p>
          <p>
	    Magnus Henoch fixed several issues.</p>
          <p>
	    Ralf Doering, Klas Johansson and Chris Bernard
	    contributed various emacs-eunit improvements.</p>
          <p>
	    Klas Johansson and Dave Peticolas added emacs-flymake
	    support.</p>
          <p>
	    Own Id: OTP-8530</p>
        </item>
      </list>
    </section>


    <section><title>Improvements and New Features</title>
      <list>
        <item>
	    <p>Xref has been updated to use the <c>re</c> module
	    instead of the deprecated <c>regexp</c> module.</p>
          <p>
	    *** POTENTIAL INCOMPATIBILITY ***</p>
          <p>
	    Own Id: OTP-8472</p>
        </item>
        <item>
	    <p>When given the option <c>{builtins,true}</c> Xref now
	    adds calls to operators.</p>
          <p>
	    Own Id: OTP-8647</p>
        </item>
        <item>
	    <p><c>eprof</c> has been reimplemented with support in
	    the Erlang virtual machine and is now both faster (i.e.
	    slows down the code being measured less) and scales much
	    better. In measurements we saw speed-ups compared to the
	    old eprof ranging from 6 times (for sequential code that
	    only uses one scheduler/core) up to 84 times (for
	    parallel code that uses 8 cores).</p>
	    <p>Note: The API for the <c>eprof</c> has been cleaned up
	    and extended. See the documentation.</p>
          <p>
	    *** POTENTIAL INCOMPATIBILITY ***</p>
          <p>
	    Own Id: OTP-8706</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.5.1</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
            <p>A bug concerning bit comprehensions has been fixed
            in Cover. The bug was introduced in R13B03. 
            (Thanks to Matthew Sackman.)</p>
          <p>Own Id: OTP-8340</p>
        </item>
      </list>
    </section>

    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
        Add lock profiling tool.</p>
          <p>
        The Lock profiling tool, lcnt, can make use of the
        internal lock statistics when the runtime system is built
        with this feature enabled.</p>
          <p>
        This provides a mechanism to examine potential lock
        bottlenecks within the runtime itself.</p>
          <p>
        - Add erts_debug:lock_counters({copy_save, bool()}). This
        option enables or disables statistics saving for
        destroyed processes and ets-tables. Enabling this might
        consume a lot of memory.</p>
          <p>
        - Add id-numbering for lock classes which is otherwise
        undefined.</p>
          <p>
        Own Id: OTP-8424</p>
        </item>
        <item>
          <p>
        emacs: Moved code skeletons to a separate file and and
        added a configurable variable to choose skeleton. Thanks
        Dave Peticolas.</p>
          <p>
        Own Id: OTP-8446</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.5</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
            <p>The coverage analysis tool <c>cover</c> has been
            improved when it comes to handling list and bit string
            comprehensions (a counter for each qualifier), bit syntax
            expressions (the Value and Size expressions), and try
            expressions (the body called <c>Exprs</c> in the Reference
            Manual). A few (not all) situations where several
            expressions are put on the same line are also handled
            better than before.</p>
          <p>Own Id: OTP-8188 Aux Id: seq11397</p>
        </item>
        <item>
            <p>When loading Cover compiled code on remote nodes 
            running code in the loaded module, a <c>badarg</c>
            failure was sometimes the result. This bug has been fixed.</p>
          <p>Own Id: OTP-8270 Aux Id: seq11423</p>
        </item>
        <item>
            <p>The short-circuit operators <c>andalso</c> and
            <c>orelse</c> are now handled correctly by the coverage
            analysis tool <c>cover</c> (it is no longer checked
            that the second argument returns a Boolean value.)</p>
          <p>Own Id: OTP-8273</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.4</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
	    <p><c>cover</c> now properly escapes greater-than and
	    less-than characters in comments in HTML reports. (Thanks
	    to Magnus Henoch.)</p>
          <p>
	    Own Id: OTP-7939</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.3</title>

    <section><title>Improvements and New Features</title>
      <list>
        <item>
          <p>
            xref:start/1 does now allow anonymous XREF processes to
            be started</p>
          <p>
            Own Id: OTP-7831</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.2</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
	    <p>A bug in the Xref scanner has been fixed.</p>
          <p>
	    Own Id: OTP-7423</p>
        </item>
        <item>
	    <p>A bug in Fprof where the function 'undefined' appeared
	    to call 'undefined' has been corrected.</p>
          <p>
	    Own Id: OTP-7509</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6.1</title>

    <section><title>Improvements and New Features</title>
      <list>
        <item>
	    <p>The documentation has been updated so as to reflect
	    the last updates of the Erlang shell as well as the minor
	    modifications of the control sequence <c>p</c> of the
	    <c>io_lib</c> module.</p> <p>Superfluous empty lines have
	    been removed from code examples and from Erlang shell
	    examples.</p>
          <p>
	    Own Id: OTP-6944 Aux Id: OTP-6554, OTP-6911 </p>
        </item>
        <item>
	    <p><c>tuple_size/1</c> and <c>byte_size/1</c> have been
	    substituted for <c>size/1</c>.</p>
          <p>
	    Own Id: OTP-7009</p>
        </item>
        <item>
	    <p>The coverage analysis tool <c>cover</c> now handles
	    the short-circuit Boolean expressions <c>andalso/2</c>
	    and <c>orelse/2</c> properly.</p>
          <p>
	    Own Id: OTP-7095</p>
        </item>
      </list>
    </section>

</section>

<section><title>Tools 2.6</title>

    <section><title>Fixed Bugs and Malfunctions</title>
      <list>
        <item>
          <p>
	    The <c>cover</c> tool could use huge amounts of memory
	    when used in a distributed system.</p>
          <p>
	    Own Id: OTP-6758</p>
        </item>
      </list>
    </section>

</section>


  <section>
    <title>Tools 2.5.5</title>

    <section>
      <title>Fixed Bugs and Malfunctions</title>
      <list type="bulleted">
        <item>
          <p>Missing buffer-local declaration in erlang.el has been
            added. Before this fix there could arise problems in
            other emacs modes after visiting a buffer using the
            erlang mode.</p>
          <p>Own Id: OTP-6721</p>
        </item>
        <item>
          <p>Key-map for 'backward-delete-char-untabif updated to work
            properly with Xemacs.</p>
          <p>Own Id: OTP-6723</p>
        </item>
      </list>
    </section>

    <section>
      <title>Improvements and New Features</title>
      <list type="bulleted">
        <item>
          <p>Minor updates of Xref.</p>
          <p>Own Id: OTP-6586</p>
        </item>
        <item>
          <p>Minor Makefile changes.</p>
          <p>Own Id: OTP-6689 Aux Id: OTP-6742 </p>
        </item>
        <item>
          <p>"C-u C-c C-k" now does a compile with both "debug_info"
            and "export_all".</p>
          <p>Own Id: OTP-6741</p>
        </item>
      </list>
    </section>
  </section>

  <section>
    <title>Tools 2.5.4.1</title>

    <section>
      <title>Improvements and New Features</title>
      <list type="bulleted">
        <item>
          <p>Changes due to internal interface changes in the erts
            application which are needed at compile-time. No
            functionality has been changed.</p>
          <p>Own Id: OTP-6611 Aux Id: OTP-6580 </p>
        </item>
      </list>
    </section>
  </section>

  <section>
    <title>Tools 2.5.4</title>

    <section>
      <title>Fixed Bugs and Malfunctions</title>
      <list type="bulleted">
        <item>
          <p>Made change to support the function erlang-find-tag for
            xemacs and emacs-21.</p>
          <p>Own Id: OTP-6512</p>
        </item>
      </list>
    </section>

    <section>
      <title>Improvements and New Features</title>
      <list type="bulleted">
        <item>
          <p>Minor updates of xref for future compatibility.</p>
          <p>Own Id: OTP-6513</p>
        </item>
      </list>
    </section>
  </section>

  <section>
    <title>Tools 2.5.3</title>

    <section>
      <title>Fixed Bugs and Malfunctions</title>
      <list type="bulleted">
        <item>
          <p><c>eprof</c> did not work reliably in the SMP emulator,
            because the trace receiver process could not process the
            trace messages fast enough. Therefore, <c>eprof</c> now
            blocks the other schedulers while profiling.</p>
          <p>Own Id: OTP-6373</p>
        </item>
      </list>
    </section>
  </section>

  <section>
    <title>Tools 2.5.2</title>

    <section>
      <title>Fixed Bugs and Malfunctions</title>
      <list type="bulleted">
        <item>
          <p>Fprof traces could become truncated for the SMP emulator.
            This bug has now been corrected.</p>
          <p>Own Id: OTP-6246</p>
        </item>
      </list>
    </section>
  </section>

  <section>
    <title>Tools 2.5.1</title>

    <section>
      <title>Fixed Bugs and Malfunctions</title>
      <list type="bulleted">
        <item>
          <p>eprof now works somewhat better in the SMP emulator.</p>
          <p>Own Id: OTP-6152</p>
        </item>
      </list>
    </section>
  </section>

  <section>
    <title>Tools 2.5</title>

    <section>
      <title>Fixed Bugs and Malfunctions</title>
      <list type="bulleted">
        <item>
          <p>Fixed some bugs in <c>make</c>:</p>
          <p><c>make:files/1,2</c> can now handle a file in another
            directory as argument, similar to <c>make:all/0,1</c>.</p>
          <p>When specifying a file name including the <c>.erl</c>
            extension in <c>Emakefile</c>, <c>make:all/0,1</c> looked
            for the object code in the wrong place.</p>
          <p>When specifying a file name including the <c>.erl</c>
            extension in <c>Emakefile</c> and some compile options
            for the file, <c>make:files/0,1</c> did not use the
            options as it should do.</p>
          <p>Own Id: OTP-6057 Aux Id: seq10299</p>
        </item>
        <item>
          <p><c>cover</c>: When <c>cover:stop()</c> was called,
            the cover compiled code was not unloaded (as stated in
            the documentation) but simply marked as 'old'. This
            meant that processes lingering in (or with funs
            referencing to) the cover compiled code would survive
            even when the cover server and its ETS tables was
            terminated.</p>
          <p>Now the cover compiled code is unloaded, meaning that
            processes lingering in/with references to it will be
            killed when <c>cover:stop</c> is called, instead of
            later crashing with <c>badarg</c> when trying to bump
            counters in ETS tables no longer existing.</p>
        </item>
      </list>
    </section>

    <section>
      <title>Improvements and New Features</title>
      <list type="bulleted">
        <item>
          <p>Replaced call to deprecated function
            <c>file:file_info/1</c> with call to
            <c>filelib:is_dir/1</c> and <c>filelib:is_regular/1</c>
            in <c>tags.erl</c>.</p>
          <p>Own Id: OTP-6079</p>
        </item>
      </list>
    </section>
  </section>

  <section>
    <title>Tools 2.4.7</title>

    <section>
      <title>Fixed Bugs and Malfunctions</title>
      <list type="bulleted">
        <item>
          <p>A bug in <c>fprof</c> profiling causing erroneous
            inconsistent trace failure has been corrected.</p>
          <p>Own Id: OTP-5922 Aux Id: seq10203 </p>
        </item>
      </list>
    </section>
  </section>

  <section>
    <title>Tools 2.4.6</title>

    <section>
      <title>Fixed Bugs and Malfunctions</title>
      <list type="bulleted">
        <item>
          <p>Emacs: <c>erlang-man-function</c> and
            <c>erlang-man-module</c> used a pattern matching to find
            the requested module that sometimes yielded unexpected
            results. For example, <c>erlang-man-module file</c> would
            display the man page for <c>CosFileTransfer_File</c>.</p>
          <p>Own Id: OTP-5746 Aux Id: seq10096</p>
        </item>
        <item>
          <p>Some compiler warnings and Dialyzer warnings were
            eliminated in the Tools application.</p>
          <p>When tracing to a port (which <c>fprof</c> does),
            there could be fake schedule out/schedule in messages
            sent for a process that had exited.</p>
          <p>Own Id: OTP-5757</p>
        </item>
      </list>
    </section>
  </section>

  <section>
    <title>Tools 2.4.5</title>

    <section>
      <title>Fixed Bugs and Malfunctions</title>
      <list type="bulleted">
        <item>
          <p>The cross reference tool <c>xref</c> did not handle the new
            <c>fun M:F/A</c> construct properly. This problem has been
            fixed.</p>
          <p>Own Id: OTP-5653</p>
        </item>
      </list>
    </section>
  </section>

  <section>
    <title>Tools 2.4.4</title>

    <section>
      <title>Fixed Bugs and Malfunctions</title>
      <list type="bulleted">
        <item>
          <p>The <c>cover</c> tool did not escape '&lt;' and '&gt;' not
            being part of HTML tags in HTML log files.</p>
          <p>Own Id: OTP-5588</p>
        </item>
      </list>
    </section>
  </section>

  <section>
    <title>Tools 2.4.3</title>

    <section>
      <title>Improvements and New Features</title>
      <list type="bulleted">
        <item>
          <p>It is now possible to encrypt the debug information in
            beam files, to help keep the source code secret. See
            <c>compile(3)</c> for how to provide the key for encrypting,
            and <c>beam_lib(3)</c> for how to provide the key for
            decryption so that tools such as Debugger, <c>xref</c>, or
            <c>cover</c> can be used.</p>
          <p>The <c>beam_lib:chunks/2</c> functions now accepts an
            additional chunk type '<c>compile_info</c>' to retrieve
            the compilation information directly as a term. (Thanks
            to Tobias Lindahl.)</p>
          <p>Own Id: OTP-5460 Aux Id: seq9787</p>
        </item>
      </list>
    </section>
  </section>

  <section>
    <title>Tools 2.4.2</title>

    <section>
      <title>Fixed Bugs and Malfunctions</title>
      <list type="bulleted">
        <item>
          <p>The <c>cover</c> tool could not analyze empty modules on
            module level.</p>
          <p>Own Id: OTP-5418</p>
        </item>
      </list>
    </section>
  </section>

  <section>
    <title>Tools 2.4.1</title>

    <section>
      <title>Fixed Bugs and Malfunctions</title>
      <list type="bulleted">
        <item>
          <p>The <c>xref</c> analysis <c>locals_not_used</c> could
            return too many functions. This problem has been fixed.</p>
          <p>Own Id: OTP-5071</p>
        </item>
        <item>
          <p>The <c>cover</c> tool could not always compile parse
            transformed modules. This problem has been fixed.</p>
          <p>Own Id: OTP-5305</p>
        </item>
      </list>
    </section>
  </section>
</chapter>