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
|
2001-10-12 21:34 tringali
* Makefile, source/help.c (BETA-5-2.[1,9]): Prep work for final 5.2
release
2001-10-12 13:54 edg
* README (BETA-5-2.5): Minor updates.
2001-10-12 12:36 edg
* README, ReleaseNotes (BETA-5-2.[4,2]): Updates in preparation of
the 5.2 release.
2001-10-11 15:19 edg
* source/preferences.c (BETA-5-2.5): Fixed a bug in the 5.2
preferences upgrading routine: new language modes were added, but
the corresponding highlight patterns were not enabled.
2001-10-10 20:32 edg
* source/shell.c (BETA-5-2.1): Fixed a bug that could cause NEdit
to crash or garble a file when the user modifies the buffer while
the output of an external command is being inserted.
2001-10-08 09:29 amai
* ChangeLog (BETA-5-2.5): Update
2001-10-06 13:09 amai
* ReleaseNotes (BETA-5-2.1): Some very minor changes towards the
release
2001-10-06 11:42 amai
* README, source/help.c (BETA-5-2.[3,8]): "lame attempt" to enfore
a release: drop "RC" and update timestamps!
2001-10-04 11:02 amai
* makefiles/Makefile.solaris (BETA-5-2.2): Use CC=cc. After all
it's the most - since only - standard conforming setting
2001-10-02 17:06 amai
* source/help.c (BETA-5-2.7): Get PrintVersion() work again and
update timestamp
2001-10-02 07:16 amai
* doc/README.FAQ (1.1): file README.FAQ was initially added on
branch BETA-5-2.
2001-10-02 07:16 amai
* doc/: README.FAQ, faq-txt-pass2.xsl, faq.dtd, faq.txt, faq.xml
(BETA-5-2.[1,1,1,3,5]): FAQ updates from Florian Xhumari (20011001)
2001-10-02 07:16 amai
* doc/faq-txt-pass2.xsl (1.1): file faq-txt-pass2.xsl was initially
added on branch BETA-5-2.
2001-10-01 13:34 amai
* source/highlightData.c (BETA-5-2.1): minor pattern fix, bug
455877
2001-10-01 12:42 edg
* source/preferences.c (BETA-5-2.4): Changed the order in which new
5.2 language modes were added to the list during upgrading (they
are now simply appended instead of inserted).
2001-10-01 08:30 edg
* util/prefFile.c (BETA-5-2.1): Fixed a bug in the preferences
restoration mechanism (prefFileRead is now properly set, even if
already present in the resource file).
2001-09-30 19:49 edg
* source/preferences.c (BETA-5-2.3): Added a 5.1 to 5.2 preferences
upgrading routine (language modes and highlight styles).
2001-09-27 12:41 edg
* source/file.c (BETA-5-2.1): Added comment about use of tmpnam
(Thorsten Haude).
2001-09-26 21:05 amai
* makefiles/Makefile.unixware (BETA-5-2.1): Add -lSM -lICE to libs
as reported on the list as for UnixWare 7.1.1
2001-09-20 19:30 tringali
* doc/nedit.doc, source/help.c (BETA-5-2.[3,6]): - Merge slobasso
5.2 doc fixes erronously applies to mainline here
2001-09-20 14:24 tringali
* source/nedit.c (BETA-5-2.1): Remove "iso8859" as some servers do
not have this encoding installed.
2001-09-20 11:13 amai
* ChangeLog (BETA-5-2.4): Update. Remove info about recent main
trunk
2001-09-19 12:11 amai
* makefiles/: Makefile.linux, Makefile.os2 (BETA-5-2.[1,1]):
Document -lXp flag (required when linking against a Motif 2.1
compatible libXm)
2001-09-14 15:59 edg
* source/highlight.c (BETA-5-2.1): Fixes for SF bugs #459965 and
#460859 (they are related), including patch #460229.
2001-09-13 14:11 tringali
* source/preferences.c (BETA-5-2.2): #458807: Automatically add 5.2
styles if .nedit file is pre-5.2
2001-09-12 20:14 amai
* doc/: faq-txt.awk, faq-txt.dtd, faq-txt.xsl, faq.txt, faq.xml,
faq.xsl (BETA-5-2.[1,1,1,2,4,1]): Update as sent from Florian
Xhumari
2001-09-12 09:45 amai
* ChangeLog (BETA-5-2.3): I forgot to update this file in this beta
branch ...
2001-09-12 09:18 amai
* makefiles/Makefile.depend (BETA-5-2.1): Add CVS info line to
output. Makes life even more simple
2001-09-11 11:24 amai
* doc/faq.xml (BETA-5-2.3): Add a non-visible CVS stamp and update
version/time stamp
2001-09-11 10:17 edg
* source/search.c (BETA-5-2.1): Fixed a minor button sensitivity
bug (Multiple Files... button was grayed out after canceling
multi-file replace dialog and modifying search text).
2001-09-10 15:28 amai
* util/system.h (BETA-5-2.2): Update/add/fix compiler info
2001-09-10 13:42 amai
* source/help.c (BETA-5-2.5): Update timestamp
2001-09-10 13:41 amai
* doc/faq.xml (BETA-5-2.2): Some updates WRT LessTif, mostly
cosmetics.
2001-09-07 14:16 amai
* doc/NEdit.ad (BETA-5-2.1): Add a 5.1 app defaults file - needs to
be updated probably. This contains only outcommented entries!
2001-09-07 14:16 amai
* doc/NEdit.ad (1.1): file NEdit.ad was initially added on branch
BETA-5-2.
2001-09-07 07:46 amai
* doc/nc.man, doc/nedit.doc, source/help.c (BETA-5-2.[1,2,4]): Fix
typos as reported on the list
2001-09-07 07:39 amai
* source/help.c (BETA-5-2.3): Don't call XmRegisterConverters() for
Motif 2.1, add declaration for 2.0 and add a "helpful" comment on
all that
2001-09-04 17:55 amai
* doc/nedit.doc, source/help.c (BETA-5-2.[1,2]): Fix typo reported
on the mailinglist
2001-08-31 22:16 amai
* doc/faq.txt (1.1): file faq.txt was initially added on branch
BETA-5-2.
2001-08-31 22:16 amai
* doc/: faq.txt, faq.xml (BETA-5-2.[1,1]): Update FAQ as sent from
Florian Xhumari. Add plain text version of FAQ
2001-08-30 21:04 tringali
* util/system.h (BETA-5-2.1): Fix for Solaris x86 "unknown"
2001-08-30 20:19 amai
* ChangeLog (BETA-5-2.2): Update
2001-08-30 20:17 amai
* source/preferences.c (BETA-5-2.1): /bin/csh doesn't make sense on
OS/2 - even as a default value only
2001-08-25 11:49 amai
* README (BETA-5-2.2): A couple of fixes, enhancements (see report
on mailinglist)
2001-08-24 18:34 amai
* makefiles/Makefile.solaris (BETA-5-2.1): No debug build by
default. Patch from Thorsten Haude
2001-08-24 08:33 amai
* util/: fontsel.c, fontsel.h, misc.c (BETA-5-2.[2,2,2]): Undo some
changes which I erroneously checked in ...
2001-08-24 08:28 amai
* ChangeLog, util/fontsel.c, util/fontsel.h, util/misc.c
(BETA-5-2.[1,1,1,1]): Updated Changelog. Includes whole history,
including new beta branch. New options of cvs2cl used, listing
contains now revision/branch info, timestamps are in GMT, etc.
2001-08-22 15:41 amai
* README, source/help.c (BETA-5-2.[1,1]): First updates for "RC1"
2001-08-22 15:39 amai
* doc/nedit.man (BETA-5-2.1): Update from Joor Loohuis.
2001-08-21 14:29 tringali
* source/: userCmds.c (1.17), window.c (1.33): #449569: Ensure
shell/macro accelerators also have accelerator fix
2001-08-20 20:36 tringali
* source/window.c (1.32): #449569: Avoid startup failure when
window manager grabs the same key as an accelerator
2001-08-18 12:35 amai
* source/Makefile.dependencies (1.10): Update
2001-08-18 12:24 amai
* source/: help.c (1.50), help.h (1.4), nedit.c (1.18): Add a
PrintVersion() call to nedit. Some more 'const' patches :-)
2001-08-18 11:48 jlous
* README (1.13), doc/nedit.man (1.5), source/help.c (1.49): Moved
Thorsten Haude credits from pattern contributor to developer.
2001-08-17 23:02 edg
* README (1.12), makefiles/Makefile.aix (1.5),
makefiles/Makefile.bsdi (1.3), makefiles/Makefile.ccur (1.3),
makefiles/Makefile.convex (1.3), makefiles/Makefile.cygwin (1.4),
makefiles/Makefile.dcosx (1.3), makefiles/Makefile.dec (1.4),
makefiles/Makefile.freebsd (1.3), makefiles/Makefile.generic (1.4),
makefiles/Makefile.hpux (1.3), makefiles/Makefile.linux (1.5),
makefiles/Makefile.lynx (1.3), makefiles/Makefile.m88k.svr4 (1.3),
makefiles/Makefile.netbsd (1.3), makefiles/Makefile.os2 (1.5),
makefiles/Makefile.osf (1.4), makefiles/Makefile.reliant (1.3),
makefiles/Makefile.sco (1.3), makefiles/Makefile.sgi (1.3),
makefiles/Makefile.solaris (1.4), makefiles/Makefile.sunos (1.3),
makefiles/Makefile.superux (1.3), makefiles/Makefile.uhc (1.3),
makefiles/Makefile.ultrix (1.3), makefiles/Makefile.unicos (1.4),
makefiles/Makefile.unixware (1.3), source/help.c (1.48),
source/preferences.c (1.30): Made the REPLACE_SCOPE compilation
option more visible and changed the default replace scope selection
preference to "Smart".
2001-08-17 21:54 edg
* source/highlight.c (1.18): Added a fix for SF bug #449828.
2001-08-17 14:09 tringali
* source/tags.c (1.14): Fix for crash in shared tag allocation on
Solaris (compiler bug?)
2001-08-17 11:01 amai
* source/: window.c (1.31), window.h (1.7): Another 'const' patch
2001-08-17 10:56 amai
* util/: fileUtils.c (1.14), fileUtils.h (1.5): Export two more
interfaces. Fix for CompressPathname() to avoid multiple slashes in
path. (Markus Schwarzenberg)
2001-08-16 18:33 slobasso
* source/highlightData.c (1.19): Fixed NEdit macro language
patterns to contain previously added items.
2001-08-16 17:24 amai
* source/highlight.c (1.17): Fix for [ nedit-Bugs-435384 ] circular
patterns reference hangs NEdit
2001-08-16 09:49 amai
* source/highlightData.c (1.18): Patch [ #451485 ] updated Sh Ksh
Bash patterns submitted from Joor Loohuis
2001-08-15 09:16 amai
* source/: Makefile.dependencies (1.9), regexConvert.c (1.4):
Another source was missing to #include it's own header for
consistency checking!
2001-08-15 09:08 amai
* ChangeLog (1.8): Update (ok, not even a week has passed, but it's
a nice overview ...)
2001-08-15 09:00 amai
* source/preferences.h (1.11), util/misc.c (1.27), util/misc.h
(1.8): Have unique value for MAX_ACCEL_LEN
2001-08-15 08:56 amai
* source/Makefile.dependencies (1.8): Update
2001-08-15 08:56 amai
* source/: userCmds.c (1.16), userCmds.h (1.4): Source should
include it's own headers for consistency checking. Add some const
to signatures, drop an unused arg from a static interface.
2001-08-14 15:05 slobasso
* source/rbTree.c (1.4): fixed comment spacing
2001-08-14 14:40 slobasso
* source/rbTree.c (1.3): added gnu license
2001-08-14 08:50 jlous
* README (1.11): README credits updated to reflect version dialog
2001-08-14 08:37 jlous
* source/file.c (1.24), source/help.c (1.47), source/highlight.c
(1.16), source/highlightData.c (1.17), source/interpret.c (1.16),
source/macro.c (1.31), source/menu.c (1.35), source/nc.c (1.10),
source/nedit.c (1.17), source/preferences.c (1.29), source/search.c
(1.33), source/selection.c (1.10), source/server.c (1.9),
source/shell.c (1.13), source/shift.c (1.8), source/smartIndent.c
(1.12), source/tags.c (1.13), source/text.c (1.16),
source/textBuf.c (1.11), source/textDisp.c (1.10),
source/textDrag.c (1.4), source/textSel.c (1.5), source/undo.c
(1.6), source/userCmds.c (1.15), source/window.c (1.30),
util/DialogF.c (1.17), util/fileUtils.c (1.13), util/fontsel.c
(1.10), util/getfiles.c (1.15), util/managedList.c (1.7),
util/misc.c (1.26), util/prefFile.c (1.9), util/printUtils.c
(1.11), util/system.h (1.7), util/utils.c (1.5), util/vmsUtils.c
(1.5): Fixed license statements to pure GPL
2001-08-13 13:48 tringali
* doc/: nc.man (1.4), nedit.man (1.4): manpage updates from Joor.
2001-08-13 09:55 amai
* doc/nedit.doc (1.4), source/help.c (1.46): Doc patch from
Thorsten Haude posted on Fri Aug 10 2001
2001-08-13 09:51 amai
* doc/nedit.doc (1.3), source/help.c (1.45): Patch from Thorsten
Haude: Document Arrays within nedit.doc and typo fix in help.c
2001-08-12 15:45 amai
* makefiles/Makefile.generic (1.3), source/comnedit.com (1.6): Drop
last references to NO_FCHMOD #define
2001-08-11 19:51 edg
* source/search.c (1.32): Fixed SF bug #448006: three beeps; one to
many.
2001-08-10 20:36 amai
* source/highlightData.c (1.16): TeX pattern patch from Joerg
Fischer <jf505@yahoo.de>
2001-08-10 14:35 amai
* source/Makefile.dependencies (1.7): Update dependency list
2001-08-09 20:58 tringali
* source/nedit.c (1.16): Fix for wrong menu font [#434383]
2001-08-09 18:47 amai
* util/system.h (1.6): Correct a comment :-)
2001-08-09 18:46 amai
* makefiles/Makefile.os2 (1.4): Drop -DNO_FCHMOD flag
2001-08-09 18:41 slobasso
* source/Makefile.common (1.8): added parse.c to cleaned files for
make clean
2001-08-09 18:39 slobasso
* source/userCmds.c (1.14): removed attachment possibly causing
window manager loop
2001-08-09 18:03 slobasso
* source/: smartIndent.c (1.11), smartIndent.h (1.4), macro.c
(1.30): We now keep track if we are in smart indent macros so
garbage collection won't remove things from under a macro.
2001-08-09 13:34 amai
* source/highlight.c (1.15), source/highlightData.c (1.15),
source/interpret.c (1.15), source/search.c (1.31),
source/selection.c (1.9), source/shell.c (1.12),
source/smartIndent.c (1.10), source/textBuf.c (1.10),
source/textSel.c (1.4), source/userCmds.c (1.13), source/window.c
(1.29), util/managedList.c (1.6): Add lots of missing #include
<string.h>
2001-08-09 08:37 amai
* source/help.c (1.44): Add hardcoded timestamp (month) again
2001-08-09 07:37 amai
* source/.cvsignore (1.2): Add entry
2001-08-08 22:31 slobasso
* source/file.c (1.23): remove fchmod calls except when under VMS
2001-08-08 18:29 amai
* makefiles/Makefile.os2 (1.3): Update from my private working copy
2001-08-08 08:39 amai
* ChangeLog (1.7): Update (should be done weekly perhaps and could
even be done automatically?)
2001-08-08 08:37 amai
* source/parse.c_noyacc (1.7): Re-generate from parse.y. BTW, yacc
from Digital Unix 4.0x is being used
2001-08-08 08:34 amai
* source/parse.y (1.16): Add an #include <string.h> (there was no
error/warning; somehow we already got this probably)
2001-08-07 23:46 slobasso
* source/Makefile.common (1.7): changed highlightData.c to be
compiled with BIGGER_STRINGS
2001-08-07 01:53 tringali
* ReleaseNotes (1.9), source/highlightData.c (1.14),
source/preferences.c (1.28): #448420: Pattern updates from Joor
2001-08-07 01:12 tringali
* source/nedit.c (1.15): Fix for #448402: nedit quits if unable to
resolve X locale
2001-08-06 21:24 amai
* README (1.10): correction to "Requirements" section
2001-08-06 21:21 amai
* README (1.9): Add "Requirements for building NEdit" section
2001-08-06 20:38 tringali
* doc/nedit.doc (1.2), source/help.c (1.43): Sync help with doc.
(Updates from Thorsten Haude)
2001-08-04 20:49 tringali
* source/file.c (1.22), source/menu.c (1.34), source/nc.c (1.9),
source/nedit.c (1.14), source/server.c (1.8), source/shell.c
(1.11), source/window.c (1.28), util/misc.c (1.25): Ensure exit
returns a meaningful (succes/fail) status to the user
2001-08-04 20:23 tringali
* util/system.h (1.5): Add info for lots more compilers.
2001-08-03 12:16 amai
* ReleaseNotes (1.8): Small updates
2001-08-02 23:45 tringali
* util/system.h (1.4): Add definitions for MSVC, Sun Workshop, etc.
2001-08-02 22:59 slobasso
* source/macro.c (1.29): Fixed problem where error message is
written if empty learned macro is executed. Also disallowed replay
from executing if a macro is already in progress. This caused a
crash by overflowing the interpreter stack.
2001-08-02 22:54 slobasso
* source/file.c (1.21): added symlink security patch and added mode
parameter to open calls with O_CREAT
2001-08-02 17:26 amai
* source/interpret.c (1.14): Avoid crash when calling
"self_insert()" from macro menu: fill in missing entries from our
fakes key event
2001-08-01 07:41 amai
* ChangeLog (1.6): Update
2001-08-01 07:40 amai
* source/help.c (1.42): Again hardcode a string about the
development version "August 2001". Build time may be misleading
...
2001-07-31 23:16 slobasso
* source/macro.c (1.28): fixed problem where closing window while
learning would make it impossible to finish or cancel learing.
2001-07-31 11:58 amai
* source/text.c (1.15): Fix minor warnings
2001-07-31 07:46 amai
* util/managedList.c (1.5): Don't name variables 'index', may be an
interface in BSD-like libc
2001-07-31 07:43 amai
* util/getfiles.c (1.14): Fix lint warning: "getfiles.c", line 716:
warning: args redefinition hides earlier one
2001-07-31 07:40 amai
* util/fontsel.c (1.9): Don't use 'index' as name for variable; may
be a call in a BSD-like libc
2001-07-29 17:51 amai
* source/highlight.c (1.14): Experimental patch to fix "mismatched"
memory handling calls as indicated by "purify". Probably not
complete and should be checked again with purify _now_!
2001-07-28 19:53 tringali
* Makefile (1.6): #442517: add explanatory text how to use make
2001-07-25 18:37 tringali
* source/help.c (1.41): Add more detailed info about Motif (runtime
version number)
2001-07-25 18:36 tringali
* util/system.h (1.3): Use "Digital/Tru64 Unix" in place of OSF/1
2001-07-25 18:36 tringali
* doc/: nc.man (1.3), nedit.man (1.3): Update authors for 5.2
2001-07-25 18:05 slobasso
* util/misc.c (1.24): made changes so that Num_Lock's mod mask is
found rather than assuming Mod3
2001-07-25 14:36 amai
* source/textBuf.c (1.9): Attempt to fix memory leak reported by
Thorsten Haude
2001-07-25 13:03 amai
* util/misc.c (1.23): Try to fix small memory leak reported by
Thorsten Haude
2001-07-25 07:49 amai
* util/system.h (1.2): Add "EMX=OS/2"
2001-07-25 07:39 amai
* source/Makefile.dependencies (1.6), util/Makefile.dependencies
(1.4): Update dependency lists
2001-07-24 21:55 tringali
* util/system.h (1.1): Add host compliation information to help
2001-07-24 21:54 tringali
* source/: help.c (1.40), tags.c (1.12), tags.h (1.4): - Use shared
strings for lower memory use with large tags files. - Add
compilation host information to help, update authors
2001-07-24 19:27 slobasso
* util/misc.c (1.22): Fix array size define to match actual array
size. Incorrect size could result in infinite loop.
2001-07-18 13:01 amai
* ChangeLog (1.5): Update
2001-07-18 13:00 amai
* source/: search.c (1.30), search.h (1.11), window.c (1.27):
Shrink two function names to 31 characters length and below (seems
to be a limit on some VMS systems)
2001-07-17 08:19 amai
* doc/faq.xml (1.2): Updated version from Florian Xhumari as of
http://galleries.free.fr/nedit-faq-01-07-16.tar.gz
2001-07-17 07:31 amai
* source/preferences.c (1.27), util/getfiles.c (1.13),
util/vmsUtils.c (1.4): VMS patches from Blair Phillips
<blair.phillips@airservices.gov.au>: avoid rint() re-definition,
fix for non-unix file root, case-insensitive match on filename
extensions.
2001-07-16 20:41 amai
* source/lnknedit.com (1.5): VMS patch from mark.geary@qwest.com
2001-07-16 14:48 amai
* doc/: nc.man (1.2), nedit.man (1.2): Man page updates from Joor
Loohuis
2001-07-16 11:49 amai
* doc/: faq-txt.awk (1.1), faq-txt.dtd (1.1), faq-txt.xsl (1.1),
faq.dtd (1.1), faq.xml (1.1), faq.xsl (1.1): faq*: add FAQ files
found on our website
2001-07-11 21:35 amai
* source/: parse.c_noyacc (1.6), parse.h (1.4), parse.y (1.15):
Back out "const" patch for ParseMacro(). Was incomplete, therefore
broken
2001-07-11 15:21 amai
* source/: comnedit.com (1.5), file.c (1.20), lnknedit.com (1.4):
VMS patches from <Mark.Geary@qwest.com> (not literally as for
file.c)
2001-07-11 08:06 amai
* source/parse.c_noyacc (1.5): Update from current parse.y
2001-07-11 08:04 amai
* source/: parse.h (1.3), parse.y (1.14): Add some 'const' to
ParseMacro() signature
2001-07-11 07:55 amai
* util/: comutil.com (1.3), utils.c (1.4): VMS patches from
Mark.Geary@qwest.com
2001-07-07 09:55 amai
* ChangeLog (1.4): Update
2001-07-07 09:54 amai
* COPYRIGHT (1.1), README (1.8): Have an external file for the
license terms. README refers to it
2001-07-07 09:48 amai
* doc/: nc.man (1.1), nedit.doc (1.1), nedit.man (1.1): Move doc
files to separate subdirectory
2001-07-04 09:42 uid30962
* README (1.7): Update some references to LessTif
2001-07-04 09:29 uid30962
* ReleaseNotes (1.7): ReleaseNotes: Upddate
2001-07-03 12:53 amai
* source/Makefile.dependencies (1.5): Makefile.dependencies: update
depedency list
2001-07-03 12:13 amai
* source/help.c (1.39): help.c: A new month has come ...
2001-06-23 09:31 amai
* ChangeLog (1.3): ChangeLog: update
2001-06-22 18:27 tringali
* source/: nedit.c (1.13), window.c (1.26): Allow stats line
background color to be set by user [#431891]
2001-06-22 18:25 tringali
* source/macro.c (1.27): Incremental reading from files via J. Lous
[Patch #434465]
2001-06-22 14:32 amai
* source/file.c (1.19): file.c: fail when trying to read in a
directory as a file
2001-06-21 14:54 edel
* source/shell.c (1.10): Fixed shell dialog BadMatch crash on
Solaris 2.5
2001-06-20 15:48 amai
* source/macro.c (1.26): macro.c: replace snprintf() by sprintf().
Add #include <string.h>
2001-06-20 08:24 amai
* ChangeLog (1.2): ChangeLog: update
2001-06-19 20:00 slobasso
* source/macro.c (1.25): Added Thorsten's code to put correct key
codes in status bar during recording and macro running.
2001-06-09 18:48 amai
* makefiles/: Makefile.dec (1.3), Makefile.osf (1.3),
Makefile.superux (1.2): Makefile.superux: add CVS Id Makefile.dec
Makefile.osf: briefly comment on the os versions they are supposed
to work with
2001-06-08 08:14 amai
* source/help.c (1.38): help.c: update timestamp to "June, 2001"
2001-06-07 19:52 amai
* ChangeLog (1.1): ChangeLog: finally add the output of "cvs2cl".
Needs to be updated regularly ...
2001-06-06 19:24 tringali
* makefiles/Makefile.linux (1.4):
Remove -DEDITRES, this causes link failure.
2001-06-06 10:00 amai
* util/: DialogF.c (1.16), fontsel.c (1.8), getfiles.c (1.12),
misc.c (1.21), prefFile.c (1.8): *.c: add some explicit #include
<string.h>. Previously it was done implicitly ...
2001-06-05 12:52 amai
* makefiles/Makefile.linux (1.3): Makefile.linux: drop
-I/-L/usr/lesstif/* flags and add a suitable comment instead
2001-06-05 08:01 amai
* source/file.c (1.18): file.c: security fix for WriteBackupFile()
2001-06-01 20:09 edel
* makefiles/: Makefile.solaris (1.3), Makefile.superux (1.1): From:
Ian Johnston" <Ian.Johnston@dlr.de>
2001-05-31 08:49 amai
* source/nedit.h (1.17): nedit.h: add 'extern' to variable
declaration in header (to avoid problem with multiple
definitions)
2001-05-29 18:21 arnef
* source/menu.c (1.33): Add separator in Preferences/Default
Settings/Customize Menus
2001-05-19 16:09 tringali
* util/misc.c (1.20): Fix bug in mnemonic building- don't build
mnemonics for XK_VoidSymbol. Fixes various problems with XFree86
servers.
2001-05-17 11:42 arnef
* source/: menu.c (1.32), nedit.h (1.16), preferences.c (1.26),
preferences.h (1.10), window.c (1.25): Adding path to windows menu
file entries
2001-05-15 20:04 amai
* makefiles/Makefile.depend (1.1): Makefile.depend: Makefile used
to generate (internal) the dependency list. This
file does not build anything!
2001-05-12 00:48 tringali
* ReleaseNotes (1.6), source/text.c (1.14): - Add support for mouse
wheel scrolling in the main text area.
2001-05-11 19:56 amai
* util/fileUtils.c (1.12): fileUtils.c: really tiny patch for OS/2
only (drive letters ;-)
2001-05-11 08:05 amai
* source/file.c (1.17): file.c: Corrected(!) version of SuSe
security patch for temporary file security problem within
PrintString(). Tested once for compile/runtime ...
2001-05-05 18:01 arnef
* source/menu.c (1.31): Changing default for sortOpenPrevDefCB
should invalidate all open window's OpenPrev menu
2001-05-04 18:33 arnef
* source/: nedit.h (1.15), search.c (1.29), search.h (1.10),
window.c (1.24): Make the buttons in Find and Replace dialogs
sensitive on the state of 'Search for' field.
2001-05-03 09:42 amai
* source/help.c (1.37): help.c: update timestamp to "May, 2001"
2001-04-25 21:37 edg
* util/DialogF.c (1.15): Added a fix to handle unexpected
destruction of dialogs gracefully.
2001-04-25 17:01 amai
* util/fileUtils.c (1.11): fileUtils.c: forgot one special case
where the "//" patch might to a crash. Next time I should probably
<think> first, <code> later
2001-04-25 16:48 amai
* util/fileUtils.c (1.10): fileUtils.c: fix typo in my
"double-slash patch" from today
2001-04-25 07:52 amai
* util/fileUtils.c (1.9): fileUtils.c: avoid double "//" in path
strings as this may not work out on non-un*x systems
2001-04-24 21:10 tringali
* util/misc.c (1.19): Fix crash bug in OpenMotif, where asking for
the the Display/Window of a gadget produces a NULL pointer.
2001-04-18 19:12 slobasso
* source/window.c (1.23): needed to save/restore horizontal and
vertical scroll positions when changing hw tab size.
2001-04-18 19:08 slobasso
* util/DialogF.c (1.14): fixed use of int where Cardinal should be
2001-04-18 17:10 slobasso
* source/: help.c (1.36), macro.c (1.24): new $server_name
variable.
2001-04-18 17:02 slobasso
* source/: file.c (1.16), file.h (1.7), help.c (1.35), menu.c
(1.30), window.c (1.22): added optional parameter to close() action
for save option.
2001-04-18 16:51 slobasso
* util/DialogF.c (1.13): fixed a mistake I introduced while
debugging
2001-04-18 16:12 slobasso
* util/DialogF.c (1.12): cleaned up createMnemonics in an effort to
fix a crash bug. Bug still not fixed.
2001-04-17 23:40 slobasso
* source/help.c (1.34): cleaned up formatting and moved Windows
Menu items into correct area
2001-04-17 20:13 slobasso
* source/window.c (1.21): save and restore insert positions when hw
tab sizes are changed
2001-04-17 18:47 slobasso
* source/macro.c (1.23): cleaned up RedundantActions, adding some
missing items
2001-04-16 23:49 slobasso
* source/: file.c (1.15), nedit.h (1.14): added bit to distinguish
between too much binary data and -read
2001-04-16 23:20 slobasso
* source/: file.c (1.14), file.h (1.6), macro.c (1.22), menu.c
(1.29), nedit.h (1.13), search.c (1.28), selection.c (1.8),
window.c (1.20): readOnly vs lockWrite access fix, now handles the
many other locked possibilities
2001-04-16 16:36 edg
* source/: help.c (1.33), window.c (1.19): Added workarounds for
openmotif bugs [SF bug 231876].
2001-04-16 14:04 amai
* source/textBuf.c (1.8): texBuf.c: try to fix a bug introduced by
a "const" patch. Pointed out by <arne@forlie.com>
2001-04-14 09:51 amai
* makefiles/Makefile.unicos (1.3), source/preferences.c (1.25),
source/text.c (1.13), source/userCmds.c (1.12): *: applied re-vised
version of patches for UNICOS from Bill Matson
<wjm@sdc.cs.boeing.com>
2001-04-13 22:58 slobasso
* util/DialogF.c (1.11): fix build problem introduced in previous
change UCHAR_MAX is in limits.h
2001-04-13 17:50 tringali
* ReleaseNotes (1.5), source/file.c (1.13), source/help.c (1.32),
source/highlightData.c (1.13), source/macro.c (1.21),
source/preferences.c (1.24), source/search.c (1.27),
source/smartIndent.c (1.9), source/userCmds.c (1.11),
util/DialogF.c (1.10), util/fontsel.c (1.7), util/getfiles.c
(1.11), util/misc.c (1.18), util/misc.h (1.7), util/printUtils.c
(1.10): - Updated release notes - Added unmodified mnemonics to
confirmation dialogs. - Fix bug in mnemonics where there could be
two of the same menmonics on one dialog.
2001-04-13 15:02 slobasso
* source/search.c (1.26): fixed regex search backwards bug if wrap
turned off.
2001-04-12 22:02 edg
* source/: help.c (1.31), macro.c (1.20), menu.c (1.28), nedit.h
(1.12), preferences.c (1.23), search.c (1.25), window.c (1.18),
window.h (1.6): Extended the Show Matching (..) functionality: Off,
Delimiter, and Range. Original patch was submitted by Thorsten
Haude.
2001-04-12 15:09 amai
* source/menu.c (1.27): menu.c: allow to specify control codes in
hex/dec/oct format also improve checking of input
2001-04-09 22:12 amai
* util/: misc.c (1.17), misc.h (1.6): misc.c misc.h: another
"const" patch
2001-04-09 21:43 edg
* source/help.c (1.30): Added information about new search
extensions and related stuff.
2001-04-09 21:38 edg
* source/: nedit.h (1.11), search.c (1.24): Minor fixes and
improvements in isearch + beep on search wrap combination.
2001-04-09 18:46 edg
* util/misc.c (1.16): Typo fix in recent accelerator fix.
2001-04-06 13:09 amai
* source/: preferences.c (1.22), preferences.h (1.9):
preferences.*: even more "const" additions
2001-04-06 13:03 amai
* source/: interpret.c (1.13), interpret.h (1.6): interpret.*:
another "const" patch
2001-04-06 09:49 amai
* source/file.c (1.12), source/file.h (1.5), source/help.c (1.29),
source/highlightData.c (1.12), source/highlightData.h (1.4),
source/preferences.c (1.21), source/preferences.h (1.8),
source/regularExp.c (1.7), source/regularExp.h (1.5),
source/search.c (1.23), source/search.h (1.9), source/textBuf.c
(1.7), source/textBuf.h (1.4), util/fileUtils.c (1.8),
util/fileUtils.h (1.4), util/printUtils.c (1.9), util/printUtils.h
(1.4): *.c *.h: big "const" patch. Except in textBuf.c
it's only a couple of const additions. In textBuf.c I had
to change a coupl of lines to get this done - should be
on the safe side of life ...
2001-04-04 19:38 edg
* source/: preferences.c (1.20), search.c (1.22): Minor bug fixes
in search extensions related code.
2001-04-03 22:59 edg
* source/: menu.c (1.26), nedit.h (1.10), preferences.c (1.19),
preferences.h (1.7), search.c (1.21), search.h (1.8): Added "smart"
replace scope behaviour to the replace dialog radio button
alternative, and made it configurable through a preference.
2001-04-03 08:06 amai
* source/help.c (1.28): help.c: the "April" patch ...
2001-04-03 01:42 tringali
* util/misc.c (1.15): Don't allow traversal to insensitive widgets.
2001-04-02 20:52 edg
* source/: highlight.c (1.13), macro.c (1.19), menu.c (1.25),
nedit.h (1.9), preferences.c (1.18), preferences.h (1.6),
regularExp.c (1.6), regularExp.h (1.4), search.c (1.20), search.h
(1.7), window.c (1.17): Introduced additional search modes [Markus
Schwarzenberg]. Added beep on search wrap option [Markus
Schwarzenberg]. Added sticky case sensitivity search preference
[Markus Schwarzenberg]. Replace and find dialog and incremental
search bar layout changes (currently two layout alternatives for
replace dialog, for evaluation purposes).
2001-03-30 17:54 slobasso
* source/highlightData.c (1.11): new global in nedit macro language
$empty_array
2001-03-30 17:48 slobasso
* source/: help.c (1.27), macro.c (1.18): added a new empty array
global
2001-03-27 23:00 slobasso
* source/help.c (1.26): minor formatting fix
2001-03-27 15:37 tringali
* makefiles/Makefile.aix (1.4): Add FUNCPROTO=15 for the IBM X
headers, which require a bitmask in this #define in order to
control function prototypes.
2001-03-26 15:46 slobasso
* source/: interpret.c (1.12), interpret.h (1.5), macro.c (1.17):
minor array code cleanup
2001-03-25 08:42 arnef
* source/tags.c (1.11): Fixed bug #217022
2001-03-23 23:11 slobasso
* source/highlightData.c (1.10): added missing variables to NEdit
macro highlighting data
2001-03-23 14:41 slobasso
* source/undo.c (1.5): undo/redo sets the selection to the changed
text
2001-03-21 21:25 edg
* source/search.c (1.19): Changed the initial default selection for
multi-file replacement dialog to all files instead of none.
Multi-file replacement dialog now makes sure that at least the
first selected item is visible when displayed. Removed the #ifdefs
for conditional multi-file replacement functionality. Minor layout
change for the replace dialog.
2001-03-21 21:20 edg
* source/window.c (1.16): Removed #ifdef for conditional multi-file
replacement functionality.
2001-03-19 16:30 slobasso
* source/: highlight.c (1.12), regexConvert.c (1.3), regularExp.c
(1.5), search.c (1.18), text.c (1.12), textBuf.c (1.6), textDisp.c
(1.9): removing warnings for RH7 linux compiler
2001-03-19 14:43 tringali
* source/: text.c (1.11), nedit.c (1.12):
Move toggle overstrike accelerator to Motif standard "Insert", free
up Ctrl+B for other uses.
2001-03-17 06:44 arnef
* source/search.c (1.17): Fixed bug related to
XtGetSelectionValue() and variables going out of scope. Added
mnemonic to Replace& Find Button.
2001-03-16 22:24 slobasso
* source/menu.c (1.24): fixed menu argument to set_wrap_text
2001-03-16 20:28 amai
* source/: nc.c (1.8), nedit.c (1.11): nc.c nedit.c: wildcard
expansion for non-sh shells on OS/2 (EMX)
2001-03-13 16:48 slobasso
* source/help.c (1.25), source/macro.c (1.16), source/search.c
(1.16), source/selection.c (1.7), source/shell.c (1.9),
source/shift.c (1.7), source/textDisp.c (1.8), util/DialogF.c
(1.9), util/fontsel.c (1.6), util/printUtils.c (1.8): cleanup
warnings under linux compiler
2001-03-12 15:24 slobasso
* source/help.c (1.24): fixed a few minor mistakes.
2001-03-12 15:15 slobasso
* source/: help.c (1.23), macro.c (1.15), menu.c (1.23),
preferences.c (1.17), window.c (1.15), window.h (1.5): added final
window settable prefs through actions and verified all should be
macro recordable.
2001-03-11 02:31 slobasso
* source/: help.c (1.22), menu.c (1.22), nedit.h (1.8): new macro
access to many window settings
2001-03-10 15:36 arnef
* source/: help.c (1.21), menu.c (1.21), nedit.c (1.10), nedit.h
(1.7), preferences.c (1.16), preferences.h (1.5), search.c (1.15),
search.h (1.6): Implemented replace/find functionality, patch no
403934
2001-03-09 22:30 slobasso
* source/help.c (1.20): changed delete() to delete_selection() in
docs
2001-03-09 22:27 slobasso
* source/menu.c (1.20): changed Delete menu item to use
delete_selection action
2001-03-09 22:21 slobasso
* source/parse.y (1.13): added lex hack for delete array[key] vs
delete() abiguity
2001-03-09 16:58 slobasso
* source/: help.c (1.19), macro.c (1.14), menu.c (1.19), text.c
(1.10), text.h (1.4), textDisp.c (1.7), textDisp.h (1.5), window.c
(1.14), window.h (1.4): adding new variables for font width and
pane index and size and focus_pane action
2001-03-06 19:49 slobasso
* source/: interpret.c (1.11), rbTree.c (1.2), rbTree.h (1.2):
added comments, cleaned up a few minor bugs and added cvs id's to
new files
2001-03-06 15:02 slobasso
* source/macro.c (1.13): add comments
2001-03-06 01:00 slobasso
* source/: interpret.c (1.10), parse.y (1.12): code cleanup
2001-03-05 21:39 slobasso
* source/highlightData.c (1.9): bring syntax hilighting up to
latest changes in nedit macro language
2001-03-05 19:26 slobasso
* source/: interpret.c (1.9), macro.c (1.12), parse.y (1.11): fixed
a few warnings and made splitMS compatible with array sub-scripts
end cases, which is what is was designed for
2001-03-05 16:20 amai
* source/: help.c (1.18), parse.y (1.10): help.c: It's "March" now
... parse.y: add two yy*() prototypes to make compiler happy
2001-03-05 15:00 slobasso
* source/: Makefile.common (1.6), Makefile.dependencies (1.4),
help.c (1.17), interpret.c (1.8), interpret.h (1.4), macro.c
(1.11), menu.c (1.18), nedit.c (1.9), parse.y (1.9), rbTree.c
(1.1), rbTree.h (1.1), shell.c (1.8), smartIndent.c (1.8),
userCmds.c (1.10): array macro feature
2001-02-26 23:38 edg
* Makefile (1.5), README (1.6), ReleaseNotes (1.4),
makefiles/Makefile.aix (1.3), makefiles/Makefile.bsdi (1.2),
makefiles/Makefile.ccur (1.2), makefiles/Makefile.convex (1.2),
makefiles/Makefile.cygwin (1.3), makefiles/Makefile.dcosx (1.2),
makefiles/Makefile.dec (1.2), makefiles/Makefile.freebsd (1.2),
makefiles/Makefile.generic (1.2), makefiles/Makefile.hpux (1.2),
makefiles/Makefile.linux (1.2), makefiles/Makefile.lynx (1.2),
makefiles/Makefile.m88k.svr4 (1.2), makefiles/Makefile.netbsd
(1.2), makefiles/Makefile.os2 (1.2), makefiles/Makefile.osf (1.2),
makefiles/Makefile.reliant (1.2), makefiles/Makefile.sco (1.2),
makefiles/Makefile.sgi (1.2), makefiles/Makefile.solaris (1.2),
makefiles/Makefile.sunos (1.2), makefiles/Makefile.uhc (1.2),
makefiles/Makefile.ultrix (1.2), makefiles/Makefile.unicos (1.2),
makefiles/Makefile.unixware (1.2), source/Makefile.common (1.5),
source/Makefile.dependencies (1.3), source/comnedit.com (1.4),
source/file.c (1.11), source/file.h (1.4), source/help.c (1.16),
source/help.h (1.3), source/highlight.c (1.11), source/highlight.h
(1.3), source/highlightData.c (1.8), source/highlightData.h (1.3),
source/interpret.c (1.7), source/interpret.h (1.3),
source/lnknedit.com (1.3), source/macro.c (1.10), source/macro.h
(1.2), source/menu.c (1.17), source/menu.h (1.5), source/n.bm
(1.2), source/nc.c (1.7), source/nedit.bm (1.2), source/nedit.c
(1.8), source/nedit.h (1.6), source/nedit_options_file.opt (1.2),
source/parse.c_noyacc (1.4), source/parse.h (1.2), source/parse.y
(1.8), source/preferences.c (1.15), source/preferences.h (1.4),
source/regexConvert.c (1.2), source/regexConvert.h (1.2),
source/regularExp.c (1.4), source/regularExp.h (1.3),
source/search.c (1.14), source/search.h (1.5), source/selection.c
(1.6), source/selection.h (1.3), source/server.c (1.7),
source/server.h (1.2), source/shell.c (1.7), source/shell.h (1.3),
source/shift.c (1.6), source/shift.h (1.3), source/smartIndent.c
(1.7), source/smartIndent.h (1.3), source/tags.c (1.10),
source/tags.h (1.3), source/text.c (1.9), source/text.h (1.3),
source/textBuf.c (1.5), source/textBuf.h (1.3), source/textDisp.c
(1.6), source/textDisp.h (1.4), source/textDrag.c (1.3),
source/textDrag.h (1.2), source/textP.h (1.3), source/textSel.c
(1.3), source/textSel.h (1.2), source/undo.c (1.4), source/undo.h
(1.3), source/userCmds.c (1.9), source/userCmds.h (1.3),
source/window.c (1.13), source/window.h (1.3), util/DialogF.c
(1.8), util/DialogF.h (1.4), util/Makefile.common (1.5),
util/Makefile.dependencies (1.3), util/comutil.com (1.2),
util/fileUtils.c (1.7), util/fileUtils.h (1.3), util/fontsel.c
(1.5), util/fontsel.h (1.3), util/getfiles.c (1.10),
util/getfiles.h (1.3), util/managedList.c (1.4), util/managedList.h
(1.3), util/misc.c (1.14), util/misc.h (1.5), util/prefFile.c
(1.7), util/prefFile.h (1.4), util/printUtils.c (1.7),
util/printUtils.h (1.3), util/utils.c (1.3), util/utils.h (1.2),
util/vmsParam.h (1.2), util/vmsUtils.c (1.3), util/vmsUtils.h
(1.3): Added CVS Ids.
2001-02-25 02:13 edel
* source/parse.y (1.7): Fix conflicts in yacc grammar!
2001-02-22 20:27 edel
* source/highlight.c (1.10): My previous highlighting patch didn't
take in to account styles which fail lookup in the pass1pattern
list (like pass 2 patterns).
2001-02-21 21:39 tringali
* source/highlight.c (1.9): [Patch #101473] Use nearest-color match
when colormap exhausted.
2001-02-21 16:49 edel
* source/highlight.c (1.8): Abutting styles could fool incremental
highlighting into using an unparsable pattern with parseString.
2001-02-20 23:54 slobasso
* source/: help.c (1.15), macro.c (1.9): new preference global
variables added
2001-02-20 15:37 slobasso
* source/menu.c (1.16): fixed bug where forgot to deref nArgs
pointer
2001-02-20 09:58 amai
* Makefile (1.4), README (1.5): README: change a couple of
"nedit" to "NEdit" Makefile: slightly change comment text (fix
typo, etc.)
2001-02-19 16:39 slobasso
* source/: help.c (1.14), macro.c (1.8), menu.c (1.15): added a new
macro command string_compare() and an action raise_window()
2001-02-19 16:30 slobasso
* source/file.c (1.10): fix issue where reused untitled window is
not given focus when raised.
2001-02-19 10:03 amai
* source/help.c (1.13): help.c: fix some typos and change a couple
of "nedit" to "NEdit". Actually it is not always
straightforward to see whether a "nedit" refers to the
whole product called "NEdit" or to the "nedit" executable ...
2001-02-19 02:02 slobasso
* source/text.c (1.8): fix warnings
2001-02-17 14:03 amai
* source/Makefile.dependencies (1.2), util/Makefile.dependencies
(1.2): */Makefile.dependencies: update WRT new utils.*
2001-02-17 13:59 amai
* source/file.c (1.9), util/utils.c (1.2): file.c utils.c: add
missing #includes
2001-02-17 13:56 amai
* util/: utils.c (1.1), utils.h (1.1): utils.*: new sources for
general purpose, non-GUI stuff like GetHomeDir()
2001-02-17 13:53 amai
* source/file.c (1.8), source/macro.c (1.7), source/menu.c (1.14),
source/nc.c (1.6), source/server.c (1.6), source/tags.c (1.9),
util/Makefile.common (1.4), util/fileUtils.c (1.6), util/prefFile.c
(1.6): nc.c server.c: move #include <sys/types.h> before other
<sys/*> Makefile.common: prepare for util/utils.c to be checked in
file.c macro.c menu.c tags.c fileUtils.c prefFile.c: use new
GetCurDir(), GetHomeDir() calls
2001-02-17 01:47 edel
* source/: highlight.c (1.7), parse.y (1.6):
Empty code blocks are rejected by the macro language.
2001-02-17 00:09 slobasso
* source/interpret.c (1.6): when strings are converted to numbers
and the conversion fails, use 0 rather than junk
2001-02-16 14:58 amai
* ReleaseNotes (1.3), source/tags.c (1.8), util/fileUtils.c (1.5):
ReleaseNotes: add some bugs being addressed *.c: supply fallback if
getcwd() fails (in one case we used uninitialized memory
earlier!)
2001-02-16 14:25 amai
* source/: Makefile.common (1.4), help.c (1.12): Makefile.common:
nc depends on libNUtil.a! help.c: switch to "February 2001" ...
2001-02-15 16:08 tringali
* ReleaseNotes (1.2):
Add info about 5.2 features and bugfixes.
2001-02-15 16:07 tringali
* util/misc.c (1.13):
Fix simulateButtonPress() so it works for gadgets. (Needed for
DialogF mnemonics.)
2001-02-15 16:06 tringali
* util/DialogF.h (1.3):
Change dialog_type parameter to int to avoid warnings.
2001-02-15 16:06 tringali
* util/DialogF.c (1.7):
Automatically create mnemonics for dialog buttons. Change
dialog_type parameter to int to avoid warnings (comparing unsingned
int for negative isn't exactly useful).
2001-02-15 16:04 tringali
* source/preferences.c (1.14): Default syntax highlighting to on.
2001-02-15 16:04 tringali
* source/nc.c (1.5):
- Remove warnings for 64-bit systems. Extend strlen results to
long and use %ld as a format specifier. strlen returns a size_t
which is typically an unsigned long on 64-bit systems.
2001-02-14 00:34 slobasso
* source/: help.c (1.11), text.c (1.7), textDisp.c (1.5),
textDisp.h (1.3): added extra options to many of the macro actions
2001-02-12 22:37 amai
* source/preferences.c (1.13): preferences.c: patch from Thorsten
Haude to issue a warning if -import can not find the
specified file
2001-02-12 21:08 slobasso
* source/: help.c (1.10), menu.c (1.13), nedit.h (1.5),
preferences.c (1.12), preferences.h (1.3), search.c (1.13),
search.h (1.4): Added a search wrap option to prefs and made some
more options available to macro actions.
2001-02-09 22:35 tringali
* source/help.c (1.9): Remove obsolete reference to Caps-Lock bug.
2001-02-09 22:34 slobasso
* source/: interpret.c (1.5), interpret.h (1.2), parse.c_noyacc
(1.3), parse.y (1.5): fixed a leak with static strings in the macro
interpreter.
2001-02-09 22:19 slobasso
* source/: menu.c (1.12), text.c (1.6): fixed strCaseCmp() bug
where partial strings would match.
2001-02-09 21:07 amai
* source/userCmds.c (1.8): userCmds.c: try to fix compiler warnings
2001-02-09 09:08 amai
* source/: menu.c (1.11), menu.h (1.4): menu.*: fix a 'pointer vs.
integer constant' problem, by adding a cast to the
constants #definition
2001-02-08 09:08 amai
* source/Makefile.common (1.3), source/Makefile.dependencies (1.1),
util/Makefile.common (1.3), util/Makefile.dependencies (1.1):
*/Makefile.common: include new */Makefile.dependencies: simple
files containing the dependencies for all objects (i.e. *.o)
2001-02-08 08:52 amai
* source/: menu.c (1.10), menu.h (1.3): menu.c menu.h: - correct my
previous patch: XmNuserData requires XtPointer* arg
- add some more 'const's
2001-02-06 16:04 amai
* source/search.c (1.12), util/DialogF.c (1.6), util/getfiles.c
(1.9): search.c DialogF.c getfiles.c: Drop #ifdef MOTIF10 sections.
2001-02-06 12:07 amai
* source/menu.c (1.9): menu.c: Fix a 'major' 64bit bug: we were
passing a pointer to int instead of pointer to pointer.
This fixes the crash with NEdit/LessTif on alpha when
selecting the Window menu item!!
2001-02-06 10:19 amai
* source/preferences.c (1.11): preferences.c: drop unused #include
<errno.h>
2001-02-06 10:03 amai
* source/interpret.c (1.4), util/prefFile.c (1.5), util/prefFile.h
(1.3): interpret.c prefFile.*: add 'const' to some more functions'
signature
2001-02-06 10:02 amai
* source/: nc.c (1.4), server.c (1.5): server.c nc.c: add checks
whether some system calls succeed (e.g. uname())
changed signature of getHostName() and getUserName
2001-02-05 19:45 amai
* util/: DialogF.c (1.5), misc.c (1.12), prefFile.c (1.4),
printUtils.c (1.6): DialogF.c misc.c prefFile.c printUtils.c: add
'const' to some functions' signatures
2001-02-05 17:13 amai
* source/: file.c (1.7), help.c (1.8), highlight.c (1.6),
highlightData.c (1.7): file.c help.c highlight.c highlightData.c:
Replace improper <0> as last argument in XtVa*() interface
calls by <NULL>
2001-02-02 18:10 tringali
* source/highlight.c (1.5): Replace debugging code of divide by 0
with a more proper assert. Dividing by zero generated warnings on
lots of compilers.
2001-02-02 14:47 amai
* source/window.c (1.12): window.c: drop declaration of
_XEditResCheckMessages(); should be in according header
Fix compiler warning about boolean expression
2001-02-02 14:00 amai
* Makefile (1.3), README (1.4): Makefile: do not list CVS/ subdir
when running 'make' without argument README: cosmetics
(re-formatting) add pointer to makefiles/Makefile.generic
which explains our current -D compiler options
2001-02-02 13:12 amai
* util/getfiles.c (1.8): getfiles.c: - add 'cont' add some places
(as I realized we are already using it, so we don't
discuss systems w/o here) - drop */errno.h
#includes (I couldn't see any usage of it currently)
2001-02-01 23:16 tringali
* makefiles/Makefile.aix (1.2):
Fix for bug 130164: force X headers to include full prototype
information.
2001-01-26 22:42 amai
* source/: help.c (1.7), window.c (1.11): help.c: switch to
"January, 2001" window.c: ad cast; should fix SF [Bug #130164 ]
Compiler warning on AIX4.3.2 in window.c
2001-01-24 15:54 amai
* util/misc.c (1.11), source/highlightData.c (1.6), source/menu.c
(1.8), source/preferences.c (1.10), source/userCmds.c (1.7): *.c:
The XmNnumChildren resource if of type 'Cardinal', not 'int'
2001-01-10 10:42 amai
* source/textBuf.c (1.4): textBuf.c: fix for SF [Bug #115195 ]
textBuf.c:862 warning: '/*' within comment
2001-01-05 21:18 amai
* source/shell.c (1.6): shell.c: change some "Nedit" strings to
"NEdit". properly end an execl() parameter list by (char
*)0
2000-12-20 14:05 amai
* source/help.c (1.6), source/nedit.c (1.7), source/search.c
(1.11), source/window.c (1.10), util/getfiles.c (1.7): Replace
"Lesstif" by "LessTif" ... Update timestamp in version info to
"december, 2000"
2000-12-20 13:56 amai
* README (1.3), source/.cvsignore (1.1), source/tags.c (1.7),
util/misc.c (1.10): Add two missing #includes Add a .cvsignore for
the two binaries beign built Update the docs WRT LessTif issues
2000-12-19 21:06 edg
* source/selection.c (1.5): Added a fix for SF bug 126285: segfault
with goto line.
2000-12-15 20:57 edg
* source/text.c (1.5): Fixed a selection highlighting bug (removed
an earlier bogus patch).
2000-12-10 19:35 edg
* source/search.c (1.10): Fixed some (harmless) compiler warnings.
Added an extra check in the multi-file replacement code to make
sure that the user didn't invalidate the replacement strings when
the dialog isn't modal (bug in several Lesstif versions).
2000-11-30 21:33 edg
* util/getfiles.c (1.6): Implemented a workaround for a Motif 2.x
file selection box bug.
2000-11-30 21:31 edg
* makefiles/Makefile.cygwin (1.2): Minor changes requested by
Christian Denat.
2000-11-23 23:23 edg
* source/: search.c (1.9), search.h (1.3), window.c (1.9): Fixed a
critical bug in the multi-file replace functionality. Closing
windows while a multi-file replace dialog was up could result in a
crash. The lists are now updated when a window closes.
2000-11-22 23:08 edg
* source/: nedit.h (1.4), search.c (1.8), window.c (1.8): Added
multi-file replace-all functionality.
2000-11-22 21:50 edg
* source/: preferences.c (1.9), search.c (1.7): Added a missing
#include <stdio.h>.
2000-11-07 14:03 edel
* util/misc.c (1.9): Fix glitches in Caps/Num Lock patch
2000-11-06 21:52 edel
* source/: macro.c (1.6), preferences.c (1.8), shift.c (1.5),
text.c (1.4), userCmds.c (1.6), window.c (1.7): Patch for Caps/Num
Lock bug + a few other minor fixes
2000-11-06 21:50 edel
* util/: misc.c (1.8), misc.h (1.4): Patch for Caps/Num Lock Motif
bug
2000-10-06 21:23 edel
* util/misc.c (1.7): Bug fix: BG menu not working with new best
visual code
2000-10-04 03:09 edel
* util/: DialogF.c (1.4), fontsel.c (1.4), getfiles.c (1.5),
managedList.c (1.3), misc.c (1.6), printUtils.c (1.5): For IA-64,
XtVa argument lists must be terminated with NULL rather than 0
2000-10-04 03:07 edel
* source/: macro.c (1.5), menu.c (1.7), preferences.c (1.7),
search.c (1.6), selection.c (1.4), shell.c (1.5), shift.c (1.4),
smartIndent.c (1.6), tags.c (1.6), textDisp.c (1.4), userCmds.c
(1.5), window.c (1.6): For IA-64, XtVa calls must be terminated
w/NULL, rather than 0
2000-09-29 15:48 edel
* util/: fileUtils.c (1.4), misc.c (1.5): Support ClearCase version
extended pathnames (and fix some compiler warns)
2000-09-29 15:38 edel
* source/: file.c (1.6), file.h (1.3), menu.c (1.6), nedit.c (1.6),
preferences.c (1.6), server.c (1.4), shell.c (1.4): Updates from
Max (via Arne), and Arne Frlie: ClearCase version extended paths,
Untitled windows inherit parent path, and avoid reuse of Untitled
windows which are currently running a macro.
2000-09-26 20:28 edel
* source/: file.c (1.5), help.c (1.5), highlightData.c (1.5),
macro.c (1.4), menu.c (1.5), nedit.c (1.5), preferences.c (1.5),
search.c (1.5), smartIndent.c (1.5), tags.c (1.5), userCmds.c
(1.4), window.c (1.5): Allow nedit to use non-default visuals
2000-09-26 20:25 edel
* util/: DialogF.c (1.3), fontsel.c (1.3), getfiles.c (1.4), misc.c
(1.4), misc.h (1.3), printUtils.c (1.4): Allow NEdit to use
non-default visual
2000-09-22 19:41 edel
* util/: fileUtils.c (1.3), getfiles.c (1.3), misc.c (1.3),
prefFile.c (1.3), printUtils.c (1.3): Changes since last posted
development release
2000-09-22 19:34 edel
* source/: file.c (1.4), help.c (1.4), highlight.c (1.4),
highlightData.c (1.4), interpret.c (1.3), macro.c (1.3), menu.c
(1.4), nc.c (1.3), nedit.c (1.4), parse.y (1.4), preferences.c
(1.4), regularExp.c (1.3), search.c (1.4), selection.c (1.3),
server.c (1.3), shell.c (1.3), shift.c (1.3), smartIndent.c (1.4),
tags.c (1.4), text.c (1.3), textBuf.c (1.3), undo.c (1.3),
userCmds.c (1.3), window.c (1.4): Changes since last posted
development release
2000-09-10 18:15 tringali
* makefiles/: Makefile.aix (1.1), Makefile.bsdi (1.1),
Makefile.ccur (1.1), Makefile.convex (1.1), Makefile.cygwin (1.1),
Makefile.dcosx (1.1), Makefile.dec (1.1), Makefile.freebsd (1.1),
Makefile.generic (1.1), Makefile.hpux (1.1), Makefile.linux (1.1),
Makefile.lynx (1.1), Makefile.m88k.svr4 (1.1), Makefile.netbsd
(1.1), Makefile.os2 (1.1), Makefile.osf (1.1), Makefile.reliant
(1.1), Makefile.sco (1.1), Makefile.sgi (1.1), Makefile.solaris
(1.1), Makefile.sunos (1.1), Makefile.uhc (1.1), Makefile.ultrix
(1.1), Makefile.unicos (1.1), Makefile.unixware (1.1) (utags:
REL-5-1-1): 5.1.1 baseline
2000-09-09 22:22 tringali
* source/: comnedit.com (1.3), file.c (1.3), help.c (1.3),
highlight.c (1.3), highlightData.c (1.3), menu.c (1.3), nedit.c
(1.3), nedit.h (1.3), parse.c_noyacc (1.2), parse.y (1.3),
preferences.c (1.3), search.c (1.3), smartIndent.c (1.3), tags.c
(1.3), textDisp.c (1.3), window.c (1.3): 5.2 Development snapshot
as of 5/29/2000
2000-09-09 22:18 tringali
* Makefile (1.2), README (1.2), ReleaseNotes (1.1),
source/Makefile.common (1.2), source/comnedit.com (1.2),
source/file.c (1.2), source/file.h (1.2), source/help.c (1.2),
source/help.h (1.2), source/highlight.c (1.2), source/highlight.h
(1.2), source/highlightData.c (1.2), source/highlightData.h (1.2),
source/interpret.c (1.2), source/lnknedit.com (1.2), source/macro.c
(1.2), source/menu.c (1.2), source/menu.h (1.2), source/nc.c (1.2),
source/nedit.c (1.2), source/nedit.h (1.2), source/parse.y (1.2),
source/preferences.c (1.2), source/preferences.h (1.2),
source/regexConvert.c (1.1), source/regexConvert.h (1.1),
source/regularExp.c (1.2), source/regularExp.h (1.2),
source/search.c (1.2), source/search.h (1.2), source/selection.c
(1.2), source/selection.h (1.2), source/server.c (1.2),
source/shell.c (1.2), source/shell.h (1.2), source/shift.c (1.2),
source/shift.h (1.2), source/smartIndent.c (1.2),
source/smartIndent.h (1.2), source/tags.c (1.2), source/tags.h
(1.2), source/text.c (1.2), source/text.h (1.2), source/textBuf.c
(1.2), source/textBuf.h (1.2), source/textDisp.c (1.2),
source/textDisp.h (1.2), source/textDrag.c (1.2), source/textP.h
(1.2), source/textSel.c (1.2), source/undo.c (1.2), source/undo.h
(1.2), source/userCmds.c (1.2), source/userCmds.h (1.2),
source/window.c (1.2), source/window.h (1.2), util/DialogF.c (1.2),
util/DialogF.h (1.2), util/Makefile.common (1.2), util/fileUtils.c
(1.2), util/fileUtils.h (1.2), util/fontsel.c (1.2), util/fontsel.h
(1.2), util/getfiles.c (1.2), util/getfiles.h (1.2),
util/managedList.c (1.2), util/managedList.h (1.2), util/misc.c
(1.2), util/misc.h (1.2), util/prefFile.c (1.2), util/prefFile.h
(1.2), util/printUtils.c (1.2), util/printUtils.h (1.2),
util/vmsUtils.c (1.2), util/vmsUtils.h (1.2) (utags: REL-5-1-1):
5.1.1 baseline
2000-09-09 22:12 tringali
* Makefile (1.1), README (1.1), source/Makefile.common (1.1),
source/comnedit.com (1.1), source/file.c (1.1), source/file.h
(1.1), source/help.c (1.1), source/help.h (1.1), source/highlight.c
(1.1), source/highlight.h (1.1), source/highlightData.c (1.1),
source/highlightData.h (1.1), source/interpret.c (1.1),
source/interpret.h (1.1, REL-5-1-1), source/lnknedit.com (1.1),
source/macro.c (1.1), source/macro.h (1.1, REL-5-1-1),
source/menu.c (1.1), source/menu.h (1.1), source/n.bm (1.1,
REL-5-1-1), source/nc.c (1.1), source/nedit.bm (1.1, REL-5-1-1),
source/nedit.c (1.1), source/nedit.h (1.1),
source/nedit_options_file.opt (1.1, REL-5-1-1),
source/parse.c_noyacc (1.1, REL-5-1-1), source/parse.h (1.1,
REL-5-1-1), source/parse.y (1.1), source/preferences.c (1.1),
source/preferences.h (1.1), source/regularExp.c (1.1),
source/regularExp.h (1.1), source/search.c (1.1), source/search.h
(1.1), source/selection.c (1.1), source/selection.h (1.1),
source/server.c (1.1), source/server.h (1.1, REL-5-1-1),
source/shell.c (1.1), source/shell.h (1.1), source/shift.c (1.1),
source/shift.h (1.1), source/smartIndent.c (1.1),
source/smartIndent.h (1.1), source/tags.c (1.1), source/tags.h
(1.1), source/text.c (1.1), source/text.h (1.1), source/textBuf.c
(1.1), source/textBuf.h (1.1), source/textDisp.c (1.1),
source/textDisp.h (1.1), source/textDrag.c (1.1), source/textDrag.h
(1.1, REL-5-1-1), source/textP.h (1.1), source/textSel.c (1.1),
source/textSel.h (1.1, REL-5-1-1), source/undo.c (1.1),
source/undo.h (1.1), source/userCmds.c (1.1), source/userCmds.h
(1.1), source/window.c (1.1), source/window.h (1.1), util/DialogF.c
(1.1), util/DialogF.h (1.1), util/Makefile.common (1.1),
util/comutil.com (1.1, REL-5-1-1), util/fileUtils.c (1.1),
util/fileUtils.h (1.1), util/fontsel.c (1.1), util/fontsel.h (1.1),
util/getfiles.c (1.1), util/getfiles.h (1.1), util/managedList.c
(1.1), util/managedList.h (1.1), util/misc.c (1.1), util/misc.h
(1.1), util/prefFile.c (1.1), util/prefFile.h (1.1),
util/printUtils.c (1.1), util/printUtils.h (1.1), util/vmsParam.h
(1.1, REL-5-1-1), util/vmsUtils.c (1.1), util/vmsUtils.h (1.1)
(utags: REL-5-0-2): 5.0.2 baseline
|