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 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073
|
2012-01-19 Chong Yidong <cyd@gnu.org>
* Version 23.4 released.
2012-01-10 Glenn Morris <rgm@gnu.org>
* ebrowse.c (version) <emacs_copyright>:
* etags.c (print_version) <emacs_copyright>:
* rcs2log (Copyright): Update short copyright year to 2012.
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.
2011-02-02 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (ETAGS_CFLAGS, CTAGS_CFLAGS): Add
``-DVERSION="\"$(VERSION)\"" -DEMACS_NAME="\"GNU Emacs\""''.
2011-01-28 Chong Yidong <cyd@stupidchicken.com>
* ntlib.c (setregid): New stub, renamed from setegid.
* ntlib.h: Update prototype.
2011-01-23 Chong Yidong <cyd@stupidchicken.com>
* movemail.c (main): Use setregid instead of setegid, which is
missing on older systems. Suggested by Peter O'Gorman (Bug#6811).
2011-01-02 Glenn Morris <rgm@gnu.org>
* ebrowse.c (version) <emacs_copyright>:
* etags.c (print_version) <emacs_copyright>:
* rcs2log (Copyright): Set short copyright year to 2011.
2010-11-27 Joe Matarazzo <joe.matarazzo@gmail.com> (tiny change)
* ebrowse.c (yylex): If end of input buffer encountered while
searching for a newline after "//", return YYEOF. (Bug#7446)
2010-11-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* emacsclient.c (set_local_socket) [DARWIN_OS]: Add fall-back
definition of _CS_DARWIN_USER_TEMP_DIR for Mac OS X 10.4 and older.
2010-10-01 Glenn Morris <rgm@gnu.org>
* emacsclient.c (set_local_socket) [DARWIN_OS]: Try as a fall-back
DARWIN_USER_TEMP_DIR. (Bug#3992)
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.2 released.
2010-05-05 Christoph <cschol2112@googlemail.com> (tiny change)
* makefile.w32-in (OTHER_PLATFORM_SUPPORT): Use parenthesis
for macros for nmake compatibility.
2010-04-03 Juanma Barranquero <lekktu@gmail.com>
Add stubs for Windows, required after CVE-2010-0825 change.
* ntlib.c (getgid, getegid, setegid): New stubs.
* ntlib.h (getgid, getegid, setegid): Declare them.
2010-04-02 Dan Rosenberg <dan.j.rosenberg@gmail.com> (tiny change)
* movemail.c (main): Check return values of setuid. Avoid
possibility of symlink attack when movemail is setgid mail
(CVE-2010-0825).
2010-03-19 Tetsurou Okazaki <okazaki@be.to> (tiny change)
* Makefile.in (uninstall): Handle the case where archlibdir does
not exist. (Bug#5720)
2010-02-20 Kevin Ryde <user42@zip.com.au>
* etags.c (Scheme_functions): Don't loop past a null character
(Bug#5601).
2010-01-29 Kester Habermann <kester@linuxtag.org> (tiny change)
* etags.c (Fortran_functions): Handle recursive keyword
(Bug#5484).
2010-01-11 Glenn Morris <rgm@gnu.org>
* ebrowse.c (version):
* etags.c (print_version):
* rcs2log (Copyright): Set copyright year to 2010.
2009-12-09 David Robinow <drobinow@gmail.com> (tiny change)
* makefile.w32-in: Use parenthesis for macros for nmake
compatibility.
2009-11-23 Tobias Ringström <tobias@ringis.se> (tiny change)
* etags.c (absolute_filename): Use memmove if we have it for
overlapping copy.
2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
* make-docfile.c (scan_lisp_file): Also look for `defvaralias'.
2009-10-15 Juanma Barranquero <lekktu@gmail.com>
* .gitignore: Add echolisp.tmp.
2009-10-15 Glenn Morris <rgm@gnu.org>
* emacsclient.c (print_help_and_exit): Fix bug report instructions.
* makefile.w32-in (echolisp): New rule.
(clean): Delete echolisp.tmp.
2009-09-27 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (OTHER_PLATFORM_SUPPORT): Add term/internal.elc,
term/pc-win.elc, emacs-lisp/easymenu.elc, and term/ns-win.elc, to
be consistent with src/Makefile.in.
2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
* update-game-score.c (main): Sort scores before trimming them,
reported by Jason Feng <jfeng@ozbert.com> (bug#4397).
2009-09-09 Glenn Morris <rgm@gnu.org>
* Makefile.in ($(DESTDIR)${archlibdir}): Set umask to world-readable
before creating directories and game score files.
2009-08-19 Glenn Morris <rgm@gnu.org>
* cvtmail.c: Remove file.
* Makefile.in (UTILITIES): Remove cvtmail.
(cvtmail${EXEEXT}): Remove.
2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
* b2m.c (main): Ensure that each message ends in two newlines.
2009-07-03 Jason Rumney <jasonr@gnu.org>
* emacsclient.c (w32_set_user_model_id): Use standard types.
2009-07-03 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (WINNT_SUPPORT): Add common-win.elc, like
src/Makefile.in did.
2009-06-30 Jason Rumney <jasonr@gnu.org>
* emacsclient.c (w32_give_focus): Use GetModuleHandle for library
that is already loaded.
(w32_set_user_model_id): New function.
(main): Use it to associate emacsclient with emacs (bug#1849).
2009-06-29 Jim Meyering <meyering@redhat.com>
Remove useless if-before-free test.
* make-docfile.c (scan_lisp_file): Remove useless test.
2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
* Makefile.in (movemail.o): Don't pass -Demacs, unused.
2009-06-21 Chong Yidong <cyd@stupidchicken.com>
* Branch for 23.1.
2006-06-09 Adrian Robert <Adrian.B.Robert@gmail.com>
* mac-fix-env.m:
* Makefile.in (mac-fix-env): Remove.
2006-06-06 David Reitter <david.reitter@gmail.com>
* Makefile.in (mac-fix-env): Compile it using ALL_CFLAGS.
2009-04-20 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (print_help_and_exit): Fix typo and tabify (careful
spacing is required in the message output, as the comment suggests).
2009-04-20 Chong Yidong <cyd@stupidchicken.com>
* emacsclient.c (print_help_and_exit): Clarify argument placement
for short option names.
2009-04-02 Dan Nicolaescu <dann@ics.uci.edu>
* emacsclient.c (print_help_and_exit): Fix typo.
2009-03-21 Eli Zaretskii <eliz@gnu.org>
* ntlib.c (setuid): Argument is now unsigned.
(getuid): Return value is now unsigned.
(getpwuid): Argument is now unsigned.
(fchown): UID and GID arguments are now unsigned.
* ntlib.h (fchown): UID and GID arguments are now unsigned.
(getuid): Return value is now unsigned.
(setuid): Argument is now unsigned.
(getpwuid): Remove prototype (it's declared in nt/inc/pwd.h).
2009-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
* emacsclient.c (main): Revert part of last change, so
drive-relative file names again work on Windows.
2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
* emacsclient.c (main): Always pass cwd via "-dir". Pass the file
names without prepending cwd to them, so Emacs uses its customary
rules to determine how to interpret the file name.
2009-03-04 Glenn Morris <rgm@gnu.org>
* movemail.c (main) [MAIL_USE_POP]: Add -r to usage message.
2009-02-13 Sven Joachim <svenjoac@gmx.de>
* movemail.c: Include time.h unconditionally.
(main): Use time_t for time variables.
2009-02-11 Glenn Morris <rgm@gnu.org>
* movemail.c (mbx_delimit_begin): Also write the current time.
2009-02-10 Glenn Morris <rgm@gnu.org>
* movemail.c (mbx_delimit_begin, mbx_delimit_end): Write mbox rather
than Babyl format. (Bug#2196)
2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
* emacsclient.c (decode_options): Use a dummy display name under
NS/Cocoa.
2009-01-14 Lars Rasmusson <lars.rasmusson@gmail.com> (tiny change)
* ebrowse.c (matching_regexp): Fix OB1 error.
2009-01-05 Glenn Morris <rgm@gnu.org>
* ebrowse.c (version):
* etags.c (print_version):
* rcs2log (Copyright): Update copyright for 2009.
2009-01-01 Chong Yidong <cyd@stupidchicken.com>
* movemail.c (main): Fatal if hard links cannot be created.
2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
* emacsclient.c (start_daemon_and_retry_set_socket): Improve error
checking.
2008-12-14 Dan Nicolaescu <dann@ics.uci.edu>
* emacsclient.c: Include syswait.h instead of sys/types.h.
2008-12-11 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
* emacsclient.c (WCONTINUED): New compatibility define
for older systems.
2008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
* emacsclient.c (main): Fix previous change.
2008-12-10 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (main): Fix mindless breakage where emacsclient
does not work *at all* on Windows, even if it *can* connect.
2008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
* emacsclient.c (EMACS_DAEMON): Remove definition.
(decode_options): Do not allow an empty alternate_editor on
WINDOWSNT.
(print_help_and_exit): Replace EMACS_DAEMON with WINDOWSNT.
(start_daemon_and_retry_set_socket): Likewise.
(main): Fail in case of not being able to connect.
2008-12-10 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c [!WINDOWSNT] (EMACS_DAEMON): New define.
Changes when EMACS_DAEMON is not defined:
(print_help_and_exit): Don't add daemon information to help.
(start_daemon_and_retry_set_socket): Make a no-op.
(main): Don't set `start_daemon_if_needed' (which is initialized to 0).
2008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
* emacsclient.c (print_help_and_exit): Describe what an empty
string argument does for --alternate-editor.
(set_socket): Make it possible to not exit in case of an error.
(start_daemon_and_retry_set_socket): New function.
(main): Use it. Restore the NULL value for socket_name and
server_file after the set_socket call.
2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
* emacsclient.c: Include <arpa/inet.h>.
2008-12-01 Dan Nicolaescu <dann@ics.uci.edu>
* make-docfile.c (scan_lisp_file): Use xmalloc instead of malloc.
2008-11-22 Derek Peschel <dpeschel@eskimo.com> (tiny change)
* etags.c (add_regex): Pass correct length to re_compile_pattern.
2008-11-02 Chong Yidong <cyd@stupidchicken.com>
* emacsclient.c (window_system): Delete redundant variable.
(decode_options): Don't use it.
(find_tty): New function.
(main): Use find_tty, and don't use window_system.
2008-11-01 Eli Zaretskii <eliz@gnu.org>
* emacsclient.c (main) [WINDOWSNT]: Don't ifdef away the call to
`ttyname'.
(w32_getenv): Treat $TERM specially: if not found in the
environment and in the Registry, return "w32console".
(ttyname) [WINDOWSNT]: New function.
2008-10-31 Andreas Schwab <schwab@suse.de>
* emacsclient.c (main): Don't force sending tty when in eval mode.
2008-10-30 Chong Yidong <cyd@stupidchicken.com>
* emacsclient.c (main): If using the current frame, send tty
information to Emacs in case daemon mode needs to occupy this tty.
2008-10-29 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (EXTRA_SPACE): New macro.
(get_server_config, set_local_socket): Use it.
* makefile.w32-in ($(BLD)/sorted-doc.$(O)): Remove spurious backslash.
Reported by Guillaume Conjat <gconjat.ext@orange-ftgroup.com>.
2008-10-29 Ulrich Mueller <ulm@gentoo.org>
* emacsclient.c (set_local_socket): Use TMPDIR (default /tmp)
instead of hardcoded /tmp.
2008-10-13 Dan Nicolaescu <dann@ics.uci.edu>
* emacsclient.c (longopts, print_help_and_exit): Add -nw.
(decode_options): Use getopt_long_only.
2008-09-30 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove ccl.elc and
codepage.elc.
2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
* emacsclient.c (main): Use stdout rather than stdin to obtain the
terminal (bug#427).
2008-08-25 Francesco Potortì <pot@gnu.org>
* etags.c (main): Do not use static space for the tagfile string.
2008-08-17 Francesco Potortì <pot@gnu.org>
* etags.c (main): Use canonicalize_filename on tags file name.
(relative_filename): Revert 3.85: do not collapse slashes here.
(absolute_dirname): Remove useless call to canonicalize_filename.
(canonicalize_filename): Collapse multiple slashes here.
2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
* Makefile.in (INSTALLABLES): Add LIB_SRC_EXTRA_INSTALLABLES.
Do not special case for NS_IMPL_COCOA.
2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
* Makefile.in (CFLAGS): Drop -universal under NS_IMPL_COCOA.
(.m.o): Dispense with GNUstep-specific flags.
2008-08-05 Ulrich Mueller <ulm@gentoo.org>
* pop.c (socket_connection): Add conditionals for
HAVE_KRB5_ERROR_TEXT and HAVE_KRB5_ERROR_E_TEXT to support
compilation with MIT Kerberos and Heimdal, respectively.
2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
* etags.c:
* emacsclient.c: Remove VMS support.
2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
Remove support for Mac Carbon.
* makefile.w32-in:
* emacsclient.c: Remove code for Carbon.
2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
* Makefile.in (mac-fix-env): Remove #ifdef around rule.
2008-07-17 Andreas Schwab <schwab@suse.de>
* Makefile.in (INSTALL_SCRIPT): Remove duplicate definition.
(LIB_STANDARD_LIBSRC): Don't define.
(LOADLIBES): Remove LIB_STANDARD_LIBSRC.
2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
* Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
NS_IMPL_COCOA.
2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
* ntlib.h (fcloseall, fgetchar, flushall, fputchar, putw):
Remove, unused.
2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
* .cvsignore: Add mac-fix-env.
* mac-fix-env.m: New file, automatically update
~/.MacOSX/environment.plist on OS X systems to expose environment
variables inside Emacs started from icon.
* Makefile.in: Add -universal to CFLAGS on OS X, add mac-fix-env to
programs to build.
* make-docfile.c: Add .m to list of file extensions.
2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
* movemail.c (main): Use int instead of WAITTYPE.
2008-07-05 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (OTHER_PLATFORM_SUPPORT):
Remove vmsproc.el and vms-patch.el.
2008-06-26 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (obj): Remove w32bdf.o.
2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
* fakemail.c: Remove references to obsolete variables.
2008-06-02 Jim Meyering <meyering@redhat.com>
* ebrowse.c (xfree): Remove definition; s/xfree/free/.
Remove useless if-before-free tests.
* ebrowse.c (xfree): Likewise.
* etags.c (process_file_name, free_tree, free_fdesc): Likewise.
(popclass_above, Prolog_functions, Erlang_functions): Likewise.
* pop.c (pop_quit): Likewise.
2008-05-30 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (lisp2): Add minibuffer.elc.
2008-05-29 Tom Tromey <tromey@redhat.com>
* etags.c (relative_filename): Treat "///" like "/" in filenames.
2008-05-09 Eli Zaretskii <eliz@gnu.org>
* ntlib.c: Include sys/types.h, sys/stat.h, and errno.h.
(IS_DIRECTORY_SEP): New macro.
(convert_time, is_exec, stat): New functions.
2008-05-08 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (lisp2): Rename epa-file-hook.elc to epa-hook.elc.
2008-05-03 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (lisp2): Add epa-file-hook.elc, to track the
corresponding change in src/Makefile.in.
2008-04-24 Adam Gołębiowski <adamg@pld-linux.org> (tiny change)
* Makefile.in (etags${EXEEXT}, ctags${EXEEXT}): Fix quote typo.
2008-04-10 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (CLIENTRES): New variable and target.
(TRES): Remove.
($(BLD)/emacsclientw.exe): Use $(CLIENTRES) instead of $(TRES).
2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
* vcdiff: Use "sccs get" rather than "get"; leave PATH alone.
2008-04-18 Steve Grubb <sgrubb@redhat.com> (tiny change)
* vcdiff: Use mktemp (CVE-2008-1694).
2008-04-09 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (distclean, maintainer-clean): New targets.
2008-03-13 Glenn Morris <rgm@gnu.org>
* makefile.w32-in (VERSION): Set to 23.0.60.
2008-03-04 Juanma Barranquero <lekktu@gmail.com>
* .cvsignore: Add oo.
2008-02-27 Yuri Shtil <yuris@juniper.net> (tiny change)
* etags.c (Perl_functions): Fix call to skip_spaces.
2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
* Makefile.in (NO_SHORTNAMES):
* emacsclient.c (NO_SHORTNAMES):
* fakemail.c (NO_SHORTNAMES):
* make-docfile.c (NO_SHORTNAMES):
* movemail.c (NO_SHORTNAMES):
* pop.c (NO_SHORTNAMES): Remove references to obsolete variable.
2008-02-23 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (MOUSE_SUPPORT): Remove duplicate tooltip.elc.
(MSDOS_SUPPORT, VMS_SUPPORT): Remove.
(OTHER_PLATFORM_SUPPORT): Replace above. Add X specific files too.
(lisp2): Add new languages.
($(DOC)): Use OTHER_PLATFORM_SUPPORT.
2008-02-22 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (lisp2): Remove devanagari.el, kannada.el,
malayalam.el, and tamil.el. Add sinhala.el.
2008-02-20 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (main) [WINDOWSNT]: Understand DRIVE:NAME,
where NAME is relative to DRIVE'S current directory.
2008-02-15 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (print_help_and_exit): Show -d option on Windows.
2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
* fakemail.c: Undo previous change.
2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
* fakemail.c (MAIL_PROGRAM_NAME): Remove unused conditional.
(main): Replace MAIL_PROGRAM_NAME with its value.
* Makefile.in (REGEXP_IN_LIBC): Remove reference to obsolete variable.
2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
* emacsclient.c (decode_options): Pass --display implicitly if -c
is specified. Only set tty if -t or -c is specified.
2008-02-04 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (lisp1): Use (), not {}.
2008-02-04 Tom Tromey <tromey@redhat.com>
* etags.c: Add "GTY" as synonym for __attribute__.
Update gperf output.
2008-02-01 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (obj): Sync with src/Makefile.in
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
(WINNT_SUPPORT): Add term/w32-win.elc.
(lisp1, lisp2): Sync with lisp in src/Makefile.in.
2008-02-01 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (obj): Add font.o and w32font.o.
2008-02-01 Zhang Wei <id.brep@gmail.com> (tiny change)
* makefile.w32-in (lisp1): Delete ucs-tables.elc,
utf-8.elc, and latin-*.el.
2008-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
* emacsclient.c (decode_options): Default to NULL display, as Emacs-22.
Allow the -d option under w32 again, for those rare cases where it
actually does make sense.
2008-01-25 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (set_tcp_socket): Don't send "\n" after
the authentication string; there's no need to haste.
2008-01-22 Chong Yidong <cyd@stupidchicken.com>
* pop.c (pop_stat, pop_last): Fix last fix.
2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
* movemail.c: Remove references to XENIX.
2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
* movemail.c:
* make-docfile.c: Remove reference to symbols defined by systems
not supported anymore: MAC_OS8, XENIX and STRIDE.
2008-01-12 Eli Zaretskii <eliz@gnu.org>
* emacsclient.c (decode_options) [WINDOWSNT]: Don't use the value
of DISPLAY in the environment. Don't support -d.
(print_help_and_exit) [WINDOWSNT]: Don't show the --display option.
(longopts) [WINDOWSNT]: Remove --display.
2008-01-10 Chong Yidong <cyd@stupidchicken.com>
* pop.c (pop_stat, pop_last): Check validity of string-to-integer
conversion. Mistakes spotted by Nico Golde.
2008-01-09 Glenn Morris <rgm@gnu.org>
* emacsclient.c: Add missing final newlines to message calls.
2008-01-09 Daniel Hackney <dan@haxney.org> (tiny change)
* emacsclient.c (set_socket): Add final newline to socket error message.
2008-01-04 Glenn Morris <rgm@gnu.org>
* ebrowse.c (version) <emacs_copyright>: New variable.
Just use current year for copyright.
* etags.c (print_version):
* rcs2log (Copyright): Update to 2008.
2007-11-28 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (VMS_SUPPORT): No longer byte-compiled.
2007-11-27 Jan Djärv <jan.h.d@swipnet.se>
* pop.c (socket_connection): Remove AI_ADDRCONFIG.
2007-11-19 Jan Djärv <jan.h.d@swipnet.se>
* pop.c (socket_connection): Move realhost out of #ifdefs.
Set realhost both for HAVE_GETADDRINFO and !HAVE_GETADDRINFO.
2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
* pop.c (socket_connection): Use getaddrinfo if available.
2007-11-22 Francesco Potortì <pot@gnu.org>
* etags.c (default_C_help) [CTAGS]: Differentiate the help string,
as the defaults in ctags are different from etags.
2007-11-15 Francesco Potortì <pot@gnu.org>
* etags.c: Make prototypes for extern definitions, and add all
that are needed to quench warnings on 64-bit.
(main): Use the same defaults for ctags as for etags: find
typedefs, structure tags, macro constants, enum constants, struct
members and global variables.
(make_C_tag) [DEBUG]: Add debugging printout.
(C_entries): In case '}' decrement bracelev before testing it.
2007-11-15 Masatake YAMATO <jet@gyve.org>
* etags.c (C_entries): In case '}', set fvdef to fvnone
unconditioned to (!ignoreindent && lp == newlb.buffer + 1).
2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
* makefile.w32-in (obj): Remove sunfns.o.
2007-10-28 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (obj): Remove abbrev.o.
2007-10-26 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c: Add a wrapper for getenv so it also checks the
registry on Windows. Suggestion and algorithm by Eli Zaretskii.
Code partially based on w32_get_resource and init_environment (w32.c).
(egetenv): New wrapper for getenv.
(get_current_dir_name, decode_options, get_server_config)
(set_local_socket, set_socket, main): Use egetenv, not getenv.
(w32_get_resource, w32_getenv) [WINDOWSNT]: New functions.
2007-10-25 Jason Rumney <jasonr@gnu.org>
* emacsclient.c (sock_err_message): New function.
(set_tcp_socket): Use it.
2007-10-09 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (print_help_and_exit): Fix space to improve
alignment in output messages.
2007-09-27 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (emacsclient, emacsclientw): Link to COMCTL32.
* emacsclient.c (w32_window_app): Init common controls when windowed.
2007-09-21 Glenn Morris <rgm@gnu.org>
* emacstool.c: Remove file.
* Makefile.in (emacstool, nemacstool, xvetool, xveterm):
Delete targets built from emacstool.
2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
* emacsclient.c (decode_options): -t implies -c.
2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
* emacsclient.c (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP)
(IS_ANY_SEP): Only define if !defined(HAVE_GET_CURRENT_DIR_NAME).
(main_argc): Remove.
(strprefix): Use strncmp.
2007-09-20 Jason Rumney <jasonr@gnu.org>
* emacsclient.c (main) [SIGSTOP]: Change conditional from WINDOWSNT.
2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
* emacsclient.c (current_frame): Change the default.
(longopts): Replace --current-frame by --create-frame.
(decode_options): Reverse the meaning of -c.
(print_help_and_exit): Update help text accordingly.
(main): Remove the -version and -good-version messages.
2007-09-12 Glenn Morris <rgm@gnu.org>
* Makefile.in (SOURCES, unlock, relock): Delete.
2007-08-29 Glenn Morris <rgm@gnu.org>
* makefile.w32-in (VERSION): Increase to 23.0.50.
2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
* emacsclient.c (w32_execvp): Move definition before use.
(decode_options): Don't use a tty on mac carbon or windows.
2007-08-29 Jason Rumney <jasonr@gnu.org>
* emacsclient.c (SEND_STRING, SEND_QUOTED): Remove obfuscation macros.
(quote_argument, set_tcp_socket, handle_sigcont, handle_sigtstp):
(main): Expand removed macros inline.
(main) [WINDOWSNT]: Don't call ttyname. Don't recognize -suspend
option.
(main) [NO_SOCKETS_IN_FILE_SYSTEM]: Don't call init_signals.
2007-08-29 Károly Lőrentey <lorentey@elte.hu>
* emacsclient.c (signal.h): New include.
(sys/stat.h, errno.h): Always include, even on WINDOWSNT.
(DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
Copy definitions here from src/lisp.h.
(main_argc, main_argv, current_frame, window_system, tty): New vars.
(longopts): Add tty, current-frame.
(xmalloc, xstrdup): New functions.
(get_current_dir_name): New function, copied from src/sysdep.c.
(decode_options): Set display from environment. Add tty and
current_frame options. Make --no-wait imply --current-frame,
except when it is the only option given. Make sure no frame is
opened when --current-frame is set.
(print_help_and_exit): Document tty and current-frame options.
(fail): Change arguments to void.
(main): When sockets are not defined, set main_argc, main_argv,
and call fail() with no arguments.
(emacs_socket): New variable (moved out from main `s').
(quote_file_name): Rename to quote_argument.
(quote_argument): New name for old quote_file_name.
(unquote_argument, strprefix, pass_signal_to_emacs)
(handle_sigcont, handle_sigtstp, init_signals): New functions.
(set_local_socket): Initialize saved_errno to 0. If socket-name
is too long, call `fail' rather than `exit'.
(main): Doc update. Set main_argc, main_argv. New var `str'.
Don't need a filename or argument if tty or window_system set.
Call fail with no arguments. Use get_current_dir_name to send
over the current directory. Send version number to Emacs for
verification. If tty is set, check TERM, and pass name and type
to Emacs. Pass window_system to Emacs. Move sending of eval to
optind loop. Send -position, -file to Emacs. Call fsync after
fflush. Check for a client/server version match.
Handle -emacs-pid, -window-system-unsupported, -print, -error, and
-suspend commands. Don't exit prematurely on --no-wait, let Emacs
close the connection for us. When creating a new frame, send
environment and pwd to Emacs. Send current-frame to Emacs.
2007-08-25 Eli Zaretskii <eliz@gnu.org>
* Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
Prepend "-" to the command, in case srcdir=. and file is copied
into itself.
2007-07-25 Glenn Morris <rgm@gnu.org>
* Relicense all FSF files to GPLv3 or later.
* COPYING: Switch to GPLv3.
2007-07-17 Francesco Potortì <pot@gnu.org>
* etags.c (C_entries): Reset the fvdef machine when out of function.
(PRINT_UNDOCUMENTED_OPTIONS_HELP): #define as FALSE if undefined.
(print_help): Use it in if() rather than #if.
(print_help): Conditionally print help about --no-line-directive.
2007-07-16 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (clean): Don't delete *~.
2007-06-07 Glenn Morris <rgm@gnu.org>
* etags.c (print_version): Add `emacs_copyright' string, for
easier automatic updating.
2007-05-18 Francesco Potortì <pot@gnu.org>
* etags.c: Extern definitions of some more pointer functions for
standalone compilation, especially important for 64bit platforms.
(main, print_help): --members is now the default for etags.
(C_entries): Parse start of C comment as a space == end of token.
This is not necessary for C++ comment, already parsed as newline.
2007-04-26 Glenn Morris <rgm@gnu.org>
* makefile.w32-in (VERSION): Increase to 22.1.50.
2007-06-02 Chong Yidong <cyd@stupidchicken.com>
* Version 22.1 released.
2007-02-26 Francesco Potortì <pot@gnu.org>
* Makefile.in (etags, ctags): Define EMACS_NAME as "GNU Emacs".
2007-02-20 Ulrich Mueller <ulm@kph.uni-mainz.de> (tiny change)
* Makefile.in (EMACS, EMACSOPT): New variables.
(blessmail): Use `--no-site-file' when compiling.
2007-02-05 Francesco Potortì <pot@gnu.org>
* etags.c (default_C_help, Cplusplus_help, PHP_help, print_help)
(main): Now --members is the default for etags, not for ctags yet.
2007-02-04 Per Cederqvist <ceder@ingate.com> (tiny change)
* etags.c (gperf, in_word_set): Change attribute for Java to
(C_JAVA & ~C_PLPL). The previous change introduced 2004-09-13 was
broken, as (C_JAVA & !C_PLPL) always evaluates to 0. This caused
import, package, extends, implements and interface to be treated
specially for all kinds of C-style files, not just Java files.
2007-01-02 Francesco Potortì <pot@gnu.org>
* etags.c (longopts): New undocumented option --no-duplicates.
(no_duplicates): Static variables for the above option.
(print_help): Do not print help for --no-warn, now undocumented.
(add_node): Allow duplicate tags in ctags mode unless --no-duplicates.
(main): Pass the -u option to sort in ctags mode.
2006-12-28 Francesco Potortì <pot@gnu.org>
* etags.c (readline): When creating a relative file name from a
#line directive, leave the file name alone. The previous
behavior was to make it relative to the tags file directory,
under the hypothesis that the #line directive file name was
relative to the directory of the tagged file. That hypothesis is
wrong with Cpp and Lex.
(Makefile_targets): Do not include spaces in tag names.
2006-12-22 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (make-docfile, ctags, etags, ebrowse, hexl)
(movemail, fakemail, sorted-doc, digest-doc, emacsclient)
(test-distrib, $(DOC), all): Depend on stamp_BLD instead of $(BLD).
($(BLD)/make-docfile.$(O) $(BLD)/hexl.$(O) $(BLD)/fakemail.$(O))
($(BLD)/sorted-doc.$(O) $(BLD)/digest-doc.$(O))
($(BLD)/test-distrib.$(O) $(GETOPTOBJS) $(MOVEMAILOBJS))
($(BLD)/emacsclient.$(O) $(BLD)/etags.$(O) $(BLD)/regex.$(O))
($(BLD)/ebrowse.$(O) $(BLD)/ctags.$(O)): Depend on stamp_BLD.
(clean): Delete stamp_BLD.
2006-12-20 Francesco Potortì <pot@gnu.org>
* etags.c (C_entries): DEFUN names were longer by one: corrected.
2006-12-18 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c [WINDOWSNT] (set_fg, get_wc): New variables.
[WINDOWSNT] (w32_find_emacs_process, w32_give_focus): New functions.
(main) [WINDOWSNT]: Remove code to release the focus; call
w32_give_focus instead.
2006-12-15 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (w32_execvp): New function; wrapper for `execvp'.
(execvp) [WINDOWSNT]: Redefine to `w32_execvp'.
(fail): Remove Windows-specific fix (subsumed into w32_execvp).
Suggestions and comment by Eli Zaretskii.
2006-12-06 Christoph Conrad <christoph.conrad@gmx.de>
* makefile.w32-in ($(BLD)/emacsclient.exe, $(BLD)/emacsclientw.exe):
Use $(USER32) for compatibility with Visual Studio .NET 2003.
2006-11-30 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (emacs_pid): New variable.
(message): Remove leftover code.
(get_server_config): Set emacs_pid. Don't allow Emacs to grab the
focus yet; emacsclient can still display an informational message
before sending requests to Emacs.
(main): Allow Emacs to grab the focus. Simplify message() call.
2006-11-30 Michael Mauger <mmaug@yahoo.com>
* emacsclient.c (message): Make sure the message is properly
written even if it contains printf escapes, and flush the result.
(set_tcp_socket): Make the message for non-local connections
informational rather than an error.
2006-11-28 Kevin Ryde <user42@zip.com.au>
* etags.c (readline): Check for double quote after #line.
2006-11-28 Jan Djärv <jan.h.d@swipnet.se>
* etags.c (readline): sscanf could in principle return 2.
2006-11-28 Francesco Potortì <pot@gnu.org>
* etags.c (readline): lno is unsigned.
(TeX_commands): Use p++ (rather than *p++) to increment p.
(Lua_functions): Explicitly discard LOOKING_AT's return value.
2006-11-27 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (TRES): New macro (copied from nt/makefile.w32-in).
($(TRES)): New rule (copied from nt/makefile.w32-in).
($(BLD)/emacsclientw.exe): Add dependency.
2006-11-27 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in ($(BLD)/emacsclient.$(O)): Depend on makefile.w32-in.
2006-11-25 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (VERSION): New macro.
(ECLIENT_CFLAGS): Add -DVERSION.
2006-11-25 Jason Rumney <jasonr@gnu.org>
* emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Use isalpha().
2006-11-24 Michael Mauger <mmaug@yahoo.com>
* emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Support absolute
file names with forward slashes.
2006-11-23 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (print_help_and_exit): Tweak message contents and
tabs/spaces to improve alignment in message boxes.
2006-11-22 Lennart Borgman <lennart.borgman.073@student.lu.se>
* emacsclient.c: Include <stdarg.h>.
[WINDOWSNT]: Include <windows.h>.
(w32_check_console_app): New function.
(message): New function.
(decode_options, print_help_and_exit, fail, main)
(initialize_sockets, get_server_config, set_tcp_socket)
(set_local_socket, set_socket): Use message().
2006-11-13 Jason Rumney <jasonr@gnu.org>
* emacsclient.c [WINDOWSNT]: Let config.h define HAVE_SOCKETS and
HAVE_INET_SOCKETS.
2006-11-13 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (emacsclient): Depend also on emacsclientw.exe.
($(BLD)/emacsclientw.exe): New target.
(install): Install emacsclientw.exe.
($(BLD)/cvtmail.$(O), $(BLD)/emacstool.$(O)): Remove obsolete targets.
(ECLIENT_CFLAGS): Remove redundant flags.
* emacsclient.c [WINDOWSNT]: Undef _WINSOCKAPI_ and _WINSOCK_H.
2006-11-13 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in ($(BLD)/emacsclient.$(O)): Use CFLAGS.
2006-11-10 David Reitter <david.reitter@gmail.com>
* emacsclient.c [!WINDOWSNT]: Include <sys/types.h>.
2006-11-08 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (get_server_config) [WINDOWSNT]: Declare set_fg as
FARPROC to avoid a compiler warning.
2006-11-07 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (get_server_config) [WINDOWSNT]: Look for the server
file on APPDATA if it doesn't exist on HOME, even if HOME is defined.
* emacsclient.c (get_server_config): Extract also the Emacs pid
from the server file. On Windows, try to force the Emacs frame to
the foreground.
2006-11-06 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (longopts) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't show
option --socket-name.
(decode_options): Don't get EMACS_SERVER_FILE here, it could override
command line options.
(decode_options) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't parse "-s" option.
(fail): Don't check for missing arguments, it is now done in set_socket.
(file_name_absolute_p): New function (loosely based on the one in
fileio.c).
(initialize_sockets): Don't check for duplicate loading of Winsock.
(get_server_config): Only try relative paths in the default
directory locations.
(set_tcp_socket): Don't call INITIALIZE(). Warn when connecting to
a remote server.
(set_socket): Call INITIALIZE(). Search explicit command-line
arguments, then environment variable EMACS_SERVER_FILE, then implicit
socket paths, before trying the alternate editor.
(main): Use file_name_absolute_p.
2006-11-04 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (../src/$(BLD)/temacs.exe): Create as temporary
file if it doesn't already exist.
2006-11-03 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (initialize_sockets): Don't initialize Winsock
more than once.
2006-11-03 Mark Davies <mark@mcs.vuw.ac.nz>
* Makefile.in (INSTALL_SCRIPT): New macro.
($(DESTDIR)${archlibdir}, install): Use it, instead of INSTALL_PROGRAM.
2006-11-02 Juanma Barranquero <lekktu@gmail.com>
* grep-changelog: When called with no arguments (not even a
filter), show help instead of blindingly dumping every single
ChangeLog available. Doc fix. Update version.
2006-11-02 Tim Van Holder <tim.vanholder@gmail.com> (tiny change)
* emacsclient.c [WINDOWSNT]: Define HAVE_INET_SOCKETS.
[!WINDOWSNT]: Include <netinet/in.h> if available.
[HAVE_SOCKETS]: Also require HAVE_INET_SOCKETS.
(IOCTL, IOCTL_BOOL_ARG): Remove.
(set_tcp_socket): Don't set the socket in blocking mode.
Remove c_arg.
2006-11-01 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (fail) [WINDOWSNT]: Force the first argv passed to
execvp to point to alternate_editor (otherwise .BAT scripts can't run).
2006-10-31 Óscar Fuentes <ofv@wanadoo.es> (tiny change)
* emacsclient.c [WINDOWSNT]: Include <malloc.h> and <stdlib.h>.
(close_winsock): Declare as __cdecl.
2006-10-31 Jan Djärv <jan.h.d@swipnet.se>
* emacsclient.c [!WINDOWSNT]: Include <fcntl.h> if available.
(set_tcp_socket): Prefer O_NONBLOCK, then O_NDELAY, then FIONBIO
to set the socket in non-blocking mode.
2006-10-31 Tim Van Holder <tim.vanholder@gmail.com> (tiny change)
* emacsclient.c [!WINDOWSNT]: Include <netinet/in.h> and <sys/ioctl.h>.
(INVALID_SOCKET): Define.
(initialize_sockets): Put #endif at the right place.
(set_local_socket): Use progname, not argv[0].
2006-10-31 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (ALL): Add emacsclient.
(ECLIENT_CFLAGS, ECLIENTOBJS): New macros.
(emacsclient, $(BLD)/emacsclient.exe): New targets.
(install): Install emacsclient.
* emacsclient.c: Add support for TCP sockets.
(SEND_STRING, SEND_QUOTED, HSOCKET, CLOSE_SOCKET, IOCTL)
(INITIALIZE): New macros.
(IOCTL_BOOL_ARG): New typedef.
(server_file): New global variable.
(longopts): New option --server-file.
(decode_options): Process new option --server-file and environment
variable EMACS_SERVER_FILE.
(print_help_and_exit): Document new option.
(fail): If no connection available and no alternate editor,
suggest using options to make them explicit.
(AUTH_KEY_LENGTH, SEND_BUFFER_SIZE): New constants.
(send_buffer, sblen): New variables.
(send_to_emacs): New function to buffer output and send it with `send'.
(quote_file_name): Use SEND_STRING.
(close_winsock, initialize_sockets): New functions to load and
unload Winsock.
(get_server_config, set_tcp_socket): New functions to create and
set up TCP sockets.
(set_local_socket): New function to create and set up Unix
socket (code moved from previous implementation).
(set_socket): New function to choose between TCP and Unix sockets.
(main): Use SEND_STRING and SEND_QUOTED. Most code moved to
set_local_socket. Use set_socket. Get answers from server.el with
recv(), not file stream functions.
2006-10-09 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (../src/config.h): Fix error message.
2006-09-30 Eli Zaretskii <eliz@gnu.org>
* .cvsignore: Add blessmail.
2006-09-15 Jay Belanger <belanger@truman.edu>
* COPYING: Replace "Library Public License" by "Lesser Public
License" throughout.
2006-08-09 Jan Djärv <jan.h.d@swipnet.se>
* etags.c (readline): Expect sscanf returns >= 1.
(readline): Change position on %n and \" in sscanf.
2006-08-07 Masatake YAMATO <jet@gyve.org>
* etags.c (readline): Expect sscanf returns 2, not 1.
2006-08-07 Masatake YAMATO <jet@gyve.org>
* etags.c (TEX_mode): Check getc returns EOF.
File ended without newline causes infinite loop.
2006-07-30 Adrian Aichner <adrian@xemacs.org> (tiny change)
* etags.c: It's XEmacs, not Xemacs: change all the occurrences.
2006-07-30 Francesco Potortì <pot@gnu.org>
* etags.c [ETAGS_REGEXPS]: Now is unconditionally defined.
[LONG_OPTIONS]: Changed to NO_LONG_OPTIONS, which is undefined.
(Objc_suffixes): Suggest using --lang=c for full help.
(C_entries): Initialise savetoken to 0 to shut up the compiler.
2006-07-20 Andreas Schwab <schwab@suse.de>
* fakemail.c (fatal): Drop second parameter and treat first
parameter as a plain string. Callers changed.
2006-07-18 Dan Nicolaescu <dann@ics.uci.edu>
* ebrowse.c (usage, version): Mark as NO_RETURN.
* emacsclient.c (print_help_and_exit): Likewise.
2006-07-10 Francesco Potortì <pot@gnu.org>
* etags.c (absolute_filename): Free unused space (cosmetic change).
(in_word_set): In C, also tag #undef symbols.
2006-06-09 Eli Zaretskii <eliz@gnu.org>
* yow.c: Remove file.
* makefile.w32-in ($(BLD)/yow.$(O)): Remove target.
* Makefile.in (UTILITIES): Remove yow${EXEEXT}.
yow${EXEEXT}: Remove target.
2006-06-04 Masatake YAMATO <jet@gyve.org>
* ebrowse.c (main): Exit with EXIT_FAILURE if BROWSE file
doesn't exist, is not seekable, not is failed in ftall.
2006-06-03 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (ALL): Add sorted-doc and digest-doc.
($(BLD)/sorted-doc.exe, $(BLD)/digest-doc.exe)
($(BLD)/test-distrib.exe): New targets.
(sorted-doc, digest-doc, test-distrib): New targets.
(install): Install sorted-doc.exe and digest-doc.exe.
($(BLD)/sorted-doc.$(O)): Update dependencies.
* digest-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
(main) [DOS_NT]: Switch stdin to binary mode, if it is not a
terminal device.
* sorted-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
[WINDOWSNT] <top level>: Don't redeclare malloc.
(main) [DOS_NT]: Switch stdin to binary mode, if it is not a
terminal device.
(main): Initialize bp, to avoid compiler warnings.
* makefile.w32-in: Delete traces of leditcfns.c.
* leditcfns.c: Remove file.
2006-05-23 Francesco Potortì <pot@gnu.org>
* pop.c (pop_open, socket_connection, KPOP_SERVICE):
Add comments explaining why the "kpop" service is never used.
2006-05-13 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (lisp1): Add fringe.elc.
2006-05-02 Francesco Potortì <pot@gnu.org>
* etags.c (Perl_functions): Free space allocated for var package.
(Erlang_functions): Possibly free space allocated for var last.
(Prolog_functions): Possibly free space allocated for var last.
2006-04-29 Dan Nicolaescu <dann@ics.uci.edu>
* sorted-doc.c (main): Initialize docs to NULL.
* yow.c (yow): Free buf.
* etags.c: Delete c-indentation-style local variable.
2006-04-29 Richard Stallman <rms@gnu.org>
* movemail.c (main): Check for negative value from `read'.
* fakemail.c (read_header): Give fatal error if input has no header.
2006-04-02 Paul Eggert <eggert@cs.ucla.edu>
* b2m.c (main): Don't include <limits.h>.
(TM_YEAR_BASE): New macro.
(TM_YEAR_IN_ASCTIME_RANGE): Don't define if already defined, so
that s/ files can override this. Use the more-conservative range
1000-9999.
(main): Check for asctime returning NULL.
* fakemail.c: Likewise.
2006-03-27 Paul Eggert <eggert@cs.ucla.edu>
* b2m.c: Include <limits.h>.
(TM_YEAR_IN_ASCTIME_RANGE): New macro.
(main): Check for out-of-range time stamps.
* fakemail.c: Likewise.
2006-03-18 Andre Spiegel <spiegel@gnu.org>
* vcdiff: Use "echo" as a default for $echo, otherwise we'll
execute $DIFF twice, and once with the wrong options.
2006-02-23 Claudio Fontana <claudio@gnu.org>
* Makefile.in (install, uninstall): Add DESTDIR variable to
support staged installations.
2005-12-30 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (MOUSE_SUPPORT): Add tooltip.elc.
(lisp1): Add rfn-eshadow.elc, international/utf-16.elc, image.elc,
international/fontset.elc, dnd.elc, mwheel.elc, and tool-bar.elc.
Rearrange the list to be similar to $(shortlisp) in
src/Makefile.in.
(lisp2): Add language/kannada.el, emacs-lisp/syntax.elc,
emacs-lisp/timer.elc, jka-cmpr-hook.elc, font-lock.elc,
jit-lock.elc. Rearrange the list to be similar to $(shortlisp) in
src/Makefile.in.
2005-12-22 Richard M. Stallman <rms@gnu.org>
* Makefile.in (update-game-score.o): Delete spurious final `\'.
2005-11-18 Hideki IWAMOTO <h-iwamoto@kit.hi-ho.ne.jp> (tiny change)
* etags.c (main): Cxref mode writes to stdout: do not close tagf,
which was never opened.
2005-10-20 Olli Savia <ops@iki.fi> (tiny change)
* etags.c: Undef STDIN if defined. (LynxOS defines it in system
header files.)
2005-09-27 Francesco Potortì <pot@gnu.org>
* etags.c: Preliminary Forth support.
(prolog_pr): Cast strlen to int before comparison.
(LOOKING_AT, LOOKING_AT_NOCASE): Let the preprocessor check that
the second argument is indeed a literal string.
(main): In append mode, sort the tags file after writing it.
2005-09-27 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
* etags.c (longopts, print_help, main): The -a (--append) option
can be used in ctags also; for one, the Linux make file uses it.
2005-09-20 Chong Yidong <cyd@stupidchicken.com>
* ebrowse.c (add_sym): Compare namespace names instead of
namespace objects. This prevents the parser from incorrectly
treating classes whose superclass is in another namespace.
2005-09-15 Richard M. Stallman <rms@gnu.org>
* Makefile.in (update-game-score.o): New target.
Compile and link this program separately.
(update-game-score${EXEEXT}): Use GETOPTDEPTS.
2005-09-11 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (../src/config.h): Don't overwrite. Print a
message instead.
(../src/paths.h): Remove.
2005-07-27 Juanma Barranquero <lekktu@gmail.com>
* .cvsignore: Don't ignore fns-* and fns.el, which are no longer
generated. Ignore also ctags.c and getopt.h.
* makefile.w32-in (clean): Delete getopt.h.
(getopt.h): New rule.
2005-07-26 Paul Eggert <eggert@cs.ucla.edu>
Merge gnulib getopt implementation into Emacs.
* Makefile.in (mostlyclean): Remove getopt.h, getopt.h-t.
(GETOPT_H): New macro, from gnulib.
(getopt.h): New rule, from gnulib.
(GETOPTOBJS): Now autoconfigured.
(GETOPTDEPS): getopt.h is now autoconfigured.
(getopt.o, getopt1.o): Depend on $(GETOPT_H), not ${srcdir}/getopt.h.
(getopt.o): Depend on ${srcdir}/gettext.h.
(movemail.o): Depend on $(GETOPT_H).
* getopt.c, getopt1.c: Sync from gnulib.
* getopt_.h, getopt_int.h, gettext.h: New files, from gnulib.
* getopt.h: Removed (now is getopt_.h).
2005-07-13 Ken Raeburn <raeburn@gnu.org>
* pop.c: Don't include des.h (or variants thereof); krb.h will do it.
(sendline): Add the \r\n to the line in a temporary buffer, and write
it all at once.
2005-07-04 Lute Kamstra <lute@gnu.org>
Update FSF's address in GPL notices.
2005-06-13 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in ($(DOC)): Fix last change.
2005-06-12 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in ($(DOC)): Depend on make-docfile.exe,
temacs.exe, and the preloaded *.elc files. This avoids
unnecessary dumping and DOC rebuilding.
2005-06-04 Eli Zaretskii <eliz@gnu.org>
* ntlib.h (fileno): Don't define if already defined.
2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
* yow.c (setup_yow): Use EXIT_FAILURE in case no separators found.
(yow): Use EXIT_FAILURE in case of memory error.
2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* make-docfile.c (DIRECTORY_SEP): New macro.
(IS_DIRECTORY_SEP): Use it.
2005-03-18 Jan Djärv <jan.h.d@swipnet.se>
* emacsclient.c: Avoid expansion of getcwd when defined as a macro.
2005-03-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* make-docfile.c: Undo previous change.
2005-02-04 Andreas Schwab <schwab@suse.de>
* movemail.c (fatal): Accept third parameter and pass down to error.
(pfatal_with_name): Pass error string as format parameter instead of
as part of format string.
(pfatal_and_delete): Likewise.
(main): Adjust call to fatal.
(xmalloc): Likewise.
2005-01-29 Richard M. Stallman <rms@gnu.org>
* movemail.c (popmail): Don't use Errmsg as format string.
2004-12-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* make-docfile.c: Include stdlib.h even if WINDOWSNT is not defined.
2004-12-15 Andreas Schwab <schwab@suse.de>
* etags.c (main): Fix typo in conversion of LONG_OPTIONS from
preprocessing to compile time constant.
2004-11-17 Kim F. Storm <storm@cua.dk>
* etags.c: Undo last change.
2004-11-09 Kim F. Storm <storm@cua.dk>
* make-docfile.c (scan_c_file): Set defvarperbufferflag to
silence compiler.
* hexl.c (main): Init local var c to silence compiler.
* etags.c (main, consider_token, C_entries): Add misc switch
default targets to silence compiler.
2004-11-09 Jan Djärv <jan.h.d@swipnet.se>
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
resulting DOC file can be used on Unix/Mac also.
2004-09-13 Francesco Potortì <pot@gnu.org>
* etags.c (main): When relative file names are given as argument,
make them relative to the current working dir, rather than
relative to the output tags file, if the latter is in /dev.
2004-09-13 Francesco Potortì <pot@gnu.org>
* etags.c [EXIT_SUCCESS, EXIT_FAILURE]: Define them when no
<stdlib.h> is available.
(enum sym_type): New st_C_attribute value for parsing
gcc's __attribute__. Deleted st_C_typespec value.
(gperf, in_word_set): Use gperf 3, options changed. Added the
__attribute__ keyword, removed all the st_C_typespec keywords,
changed attribute for Java to (C_JAVA & !C_PLPL).
(inattribute): New global bool, part of the C state machine.
(cblev): Identifier renamed to bracelev throughout.
(consider_token, C_entries): Numerous changes for making the
parser more robust and adding support for __attribute__.
2004-09-13 David A. Capello <dacap@users.sourceforge.net> (tiny change)
* etags.c (Lua_suffixes, Lua_help, lang_names, Lua_functions):
Support the Lua scripting language <http://www.lua.org>.
2004-09-08 Francesco Potortì <pot@gnu.org>
* etags.c [LONG_OPTIONS]: Make it TRUE (ifdef) or FALSE (ifndef)
for ease of use.
2004-07-17 Richard M. Stallman <rms@gnu.org>
* emacsclient.c (quote_file_name): Pass COPY thru %s to output it.
2004-06-01 Juanma Barranquero <lektu@terra.es>
* makefile.w32-in (obj): Add image.c.
2004-05-10 Thien-Thi Nguyen <ttn@gnu.org>
* test-distrib.c (main): For failing cases, exit with `EXIT_FAILURE'.
2004-05-08 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (lisp1, lisp2): Split lisp to avoid long
command-lines.
2004-05-08 Thien-Thi Nguyen <ttn@gnu.org>
* cvtmail.c: Throughout, replace 0 destined for `exit' arg
with `EXIT_SUCCESS'. Likewise, replace 1 with `EXIT_FAILURE'.
(main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
* ebrowse.c, emacsclient.c, fakemail.c, hexl.c,
* make-docfile.c, movemail.c, profile.c, sorted-doc.c,
* test-distrib.c, update-game-score.c, yow.c: Likewise.
2004-05-08 Thien-Thi Nguyen <ttn@gnu.org>
* Makefile.in (emacsclient${EXEEXT}): Use makefile var `version'.
2004-05-07 Thien-Thi Nguyen <ttn@gnu.org>
* b2m.c (GOOD, BAD): Delete macros. Throughout,
replace w/ `EXIT_SUCCESS' and `EXIT_FAILURE', respectively.
(main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
* etags.c: Likewise.
2004-05-03 Jason Rumney <jasonr@gnu.org>
* makefile.nt: Remove.
2004-04-26 Eli Zaretskii <eliz@gnu.org>
* make-docfile.c (IS_DIRECTORY_SEP): New macro.
(put_filename): Remove unused variable len. Use IS_DIRECTORY_SEP
instead of a literal '/'.
2004-04-23 Juanma Barranquero <lektu@terra.es>
* makefile.w32-in: Add "-*- makefile -*-" mode tag.
2004-04-17 Paul Eggert <eggert@gnu.org>
* rcs2log (Help): Clarify wording of the usage message.
Problem reported by Alan Mackenzie in
<http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-04/msg00188.html>.
2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
* make-docfile.c (xmalloc): Fix return type.
(put_filename): New fun.
(scan_file): Use it.
2004-03-09 Juanma Barranquero <lektu@terra.es>
* grep-changelog: Changes to support ChangeLog.10+.
(main): Tidy up usage string. Fix "Use of uninitialized value"
warning. Set version to 0.2. Parse the directory listing to get
any ChangeLog.n file, not just 1..9.
(header_match_p, entry_match_p, print_log, parse_changelog):
Remove Perl prototypes (their purpose is to help the parser, which
isn't needed here, not declare arguments).
(parse_changelog): Make --reverse faster on big batches by not
modifying the entries list.
2004-03-01 Juanma Barranquero <lektu@terra.es>
* makefile.w32-in (obj): Add fringe.c.
2004-02-14 Paul Eggert <eggert@twinsun.com>
* rcs2log: Work correctly if CVSROOT specifies :fork: or
:local: methods, or omits the colon between the hostname
and the path. Allow :/ in repository path, since CVS does.
Fix typo: "pository" should be set from $CVSROOT, not $repository.
This fixes a bug reported by Wolfgang Scherer in
<http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-02/msg00085.html>,
along with some related bugs I discovered by inspecting how
CVS itself parses $CVSROOT.
2004-02-04 Jérôme Marant <jmarant@nerim.net> (tiny change)
* emacsclient.c (decode_options): Fix handling of alternate editor.
2004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
* emacsclient.c (main): Don't use the hostname in the socket name.
Look for relative socket names in the /tmp dir rather than in cwd.
2004-01-24 Richard M. Stallman <rms@gnu.org>
* emacsclient.c (main): Restore errno from saved_errno,
so the error message comes from socket_status.
2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
* emacsclient.c (main): Stop if socket name too long.
Only try su-fallback if the socket name was not explicit.
Check socket name length in su-fallback case as well.
2004-01-08 Andreas Schwab <schwab@suse.de>
* emacsclient.c (main): Save errno from socket_status.
2004-01-04 Andreas Schwab <schwab@suse.de>
* emacsclient.c (main): Fix socket name when using another user.
2003-12-27 Paul Eggert <eggert@twinsun.com>
* rcs2log (rlog_options): Append -rbranchtag if CVS/Tag indicates
a tag, and if the user has not specified an rlog option.
Adapted from a suggestion by Martin Stjernholm in
<http://mail.gnu.org/archive/html/bug-gnu-emacs/2003-07/msg00066.html>.
(Copyright): Update to 2003.
2003-12-24 Thien-Thi Nguyen <ttn@gnu.org>
* make-docfile.c (main): For return code, no longer special-case VMS.
Instead, use `EXIT_SUCCESS' and `EXIT_FAILURE' from stdlib.h.
2003-09-28 Andreas Büsching <crunchy@tzi.de> (tiny change)
* emacsclient.c (quote_file_name): Print the result instead of
returning it. Fix the return type accordingly.
(main): With --eval, if no file name, read from stdin.
Quote file names.
2003-09-10 Richard M. Stallman <rms@gnu.org>
* emacsclient.c (main): Use socket_name.
2003-09-10 Andreas Büsching <crunchy@tzi.de> (tiny change)
* emacsclient.c (socket_name): New variable.
(longopts, decode_options, print_help_and_exit):
Handle --socket-name argument.
2003-08-25 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
* etags.c (consider_token): Check C++ `operator' only when the
token len is long enough.
2003-08-20 Dave Love <fx@gnu.org>
* Makefile.in: Remove obsolete references to alloca.
2003-07-29 Ken Brush <ken@wirex.com>
* emacsclient.c (main)
* etags.c (suggest_asking_for_help)
* movemail.c (main): Fix having macros in a printf statement.
2003-05-31 Juanma Barranquero <lektu@terra.es>
* makefile.w32-in (lisp): Fix references to byte-run.el,
float-sup.el and map-ynp.el, which are now in emacs-lisp.
2003-05-22 Dave Love <fx@gnu.org>
* update-game-score.c (difftime) [!HAVE_DIFFTIME]: Define.
(strerror) [!HAVE_STRERROR && !WINDOWSNT]: New.
2003-05-20 Dave Love <fx@gnu.org>
* movemail.c: Check HAVE_LIBLOCKFILE like HAVE_LIBMAIL.
* Makefile.in [HAVE_LIBLOCKFILE]: Define LIBS_MAIL=-llockfile.
2003-04-27 Oliver Scholz <alkibiades@gmx.de>
* update-game-score.c (read_scores): Fix corruption of scores on read.
2003-04-12 Stefan Monnier <monnier@cs.yale.edu>
* emacsclient.c (main): Use new safe location for socket.
2003-03-12 Tom Tromey <tromey@redhat.com>
* emacsclient.c (print_help_and_exit): Print to stdout.
Exit successfully. Added some blank lines for readability.
(decode_options): Don't call print_help_and_exit in default case.
Print version information to stdout.
(main): Don't call print_help_and_exit.
2003-02-15 Richard M. Stallman <rms@gnu.org>
* cvtmail.c: Cast result of malloc and realloc.
Don't include stdlib.h, because config.h does.
(malloc, realloc): Declarations deleted.
* yow.c (yow): Cast result of malloc and realloc.
(malloc, realloc): Declarations deleted.
2003-02-11 Juanma Barranquero <lektu@terra.es>
* makefile.w32-in (lisp): Add malayalam.el and tamil.el.
2003-02-08 Andreas Schwab <schwab@suse.de>
* Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
instead of the substitution.
2003-02-04 Richard M. Stallman <rms@gnu.org>
* update-game-score.c (push_score, read_scores): Cast values
of malloc and realloc.
(main, lock_file): Avoid assignment inside if.
2003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
* Makefile.in: Use @EXEEXT@ for Cygwin.
2003-01-21 Dave Love <fx@gnu.org>
* etags.c (Cplusplus_help, Cjava_help): Re-phrase and avoid
column-0 `('.
* yow.c: Don't include string.h.
2003-01-20 Richard M. Stallman <rms@gnu.org>
* Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
New targets.
2003-01-06 Kim F. Storm <storm@cua.dk>
* pop.c (__P): Rename from _P to avoid problems on Cygwin.
All uses changed.
2002-12-18 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in ($(DOC)): Use -o and -a options to make-docfile,
because GNU make doesn't append when using >> redirection.
2002-12-12 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* b2m.pl: Make sure every message ends with a blank line, because
some mbox parsers require a blank line before "From " lines.
2002-12-08 Richard M. Stallman <rms@gnu.org>
* getopt.c: Do include libintl.h if HAVE_LIBINTL_H.
(_): Test only HAVE_LIBINTL_H to decide what to do.
2002-12-05 Richard M. Stallman <rms@gnu.org>
* getopt.c: Comment out include of libintl.h or gettext.h.
2002-12-04 Richard M. Stallman <rms@gnu.org>
* Update getopt from gnulib version; changes described below.
* getopt1.c: Conditionally find getopt.h.
[_LIBC] (getopt_long, getopt_long_only): Do libc_hidden_def.
* getopt.c (const): Move outside !HAVE_CONFIG_H conditional.
(libintl.h): Include this if _LIBC. Otherwise include gettext.h.
(wchar.h): Include, maybe.
(attribute_hidden): Define if not defined.
(__getopt_initialized): Use attribute_hidden.
(__libc_argc, __libc_argv): Renamed from original_argc, etc.
(__getopt_nonoption_flags, nonoption_flags_max_len)
(nonoption_flags_len): Conditional on USE_NONOPTION_FLAGS.
(SWAP_FLAGS): New definitions.
(exchange): Test USE_NONOPTION_FLAGS.
(_getopt_initialize): Test USE_NONOPTION_FLAGS.
(_getopt_internal): Error if argc < 1. New local var print_errors.
Improve test for ambiguous long option.
Add LIBIO support for error message output.
(NONOPTION_P): Test USE_NONOPTION_FLAGS.
* getopt.h: Maybe include ctype.h.
Treat __cplusplus like __STDC__.
(decls): Use __ in arg names.
2002-12-02 Stephen Eglen <stephen@gnu.org>
* emacsclient.c (main): Tell user how to start server within Emacs
if socket could not be found.
2002-12-02 Richard M. Stallman <rms@gnu.org>
* emacsclient.c (main): Test HAVE_GETCWD rather than BSD_SYSTEM.
2002-11-19 Ben Key <bkey1@tampabay.rr.com>
* makefile.w32-in: Fixed a bug that caused the documentation for
the built in function play-sound-internal not to be included in
/etc/DOC.
2002-11-18 Dave Love <fx@gnu.org>
* update-game-score.c: Include unistd.h, string.h, stdlib.h,
fcntl.h, stdarg.h conditionally.
(_GNU_SOURCE, __attribute__): Don't define.
(optarg, optind, opterr): Declare.
(lose, lose_syserr): Use NO_RETURN.
(get_user_id): Use P_.
2002-11-17 Richard M. Stallman <rms@gnu.org>
* Makefile.in (${archlibdir}): Ignore errors operating on $(gamedir).
2002-11-14 Dave Love <fx@gnu.org>
* movemail.c (pop_retr): Declare comment.
* make-docfile.c (read_c_string_or_comment): Declare msgno.
* Makefile.in (YACC): Deleted.
2002-10-19 Andreas Schwab <schwab@suse.de>
* Makefile.in (${archlibdir}): Always create $(gamedir).
(update-game-score): Pass $(gamedir) as HAVE_SHARED_GAME_DIR.
2002-10-04 Juanma Barranquero <lektu@terra.es>
* makefile.w32-in (lisp): Load devanagari.el, not .elc.
2002-09-30 Markus Rost <rost@math.ohio-state.edu>
* emacsclient.c (main): Remove reference to SERVER_HOME_DIR
completely.
2002-09-27 Stefan Monnier <monnier@cs.yale.edu>
* emacsclient.c: Remove SYSV support.
(eval, display): New vars.
(longopts): Add --eval and --display.
(decode_options): Add -e and -d processing.
(print_help_and_exit): Update the usage string.
(main): Add support for --eval and --display.
(main): Always use /tmp and non-qualified hostname.
2002-09-25 Stefan Monnier <monnier@cs.yale.edu>
* emacsserver.c: Remove.
2002-09-17 Stefan Monnier <monnier@cs.yale.edu>
* emacsclient.c (quote_file_name): Quote \n.
(main): Print a final \n when needed.
2002-09-03 Francesco Potortì <pot@gnu.org>
* etags.c (regex_tag_multiline, readline): Never pass pfnote a
string that cannot be freed.
2002-08-30 Francesco Potortì <pot@gnu.org>
* etags.c (consider_token, C_entries): Switch to C++ parsing when
auto-detection is enabled and the `::' qualifier is met.
(consider_token, C_entries): Several bugs corrected that tagged
some declarations even though --declarations was not used.
(plainc): New macro.
(C_entries): Use it.
(C_entries): Several cosmetic changes.
(C_entries): Invalidate the token is some cases.
2002-08-29 Francesco Potortì <pot@gnu.org>
* etags.c (C_entries): Correct a problem with const C++ funcs.
(ignoreindent): Renamed from noindentypedefs.
(cjava, cplpl): They are now macros instead of local vars.
2002-08-28 Francesco Potortì <pot@gnu.org>
* etags.c (HTML_labels): Tag ID= also.
2002-08-27 Francesco Potortì <pot@gnu.org>
* etags.c (Ada_funcs): Do not tag "use type Xxxx;".
* etags.c (HTML_labels): New language HTML.
(etags_strcasecmp): Like BSD's, for compatibility.
(strcaseeq): Make it into a macro.
* etags.c (make_tag): Never generate null length tag names.
(linebuffer_init): Renamed from initbuffer. All callers changed.
(pattern): Structure renamed to `regexp', member regex renamed to
pattern.
(node_st): Member pat renamed to regex.
(pattern); New member force_explicit_name, for future use.
Now always set to true, cannot be reset.
(add_regex, regex_tag_multiline, readline): Use it.
(main): Free some global structures.
(fdesc): New member `written'.
(readline, process_file): Initialise it.
(put_entries): Set it.
(main): Use it to create entries for files without tags.
(total_size_of_entries): Do not count invalid tags.
2002-08-19 Stefan Monnier <monnier@cs.yale.edu>
* make-docfile.c (scan_keyword_or_put_char, write_c_args): Use `fn'
for the function name in the usage info.
2002-07-31 Colin Walters <walters@gnu.org>
* update-game-score.c (P_): New macro. Use it for all prototypes.
(lose): Don't use varargs.
(lose_syserr): New function.
* update-game-score.c: Change all functions to K&R style.
2002-07-30 Andreas Schwab <schwab@suse.de>
* Makefile.in (localstatedir): New variable.
2002-07-29 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* b2m.pl: Fix regexp for finding return address fields.
2002-07-15 Stefan Monnier <monnier@cs.yale.edu>
* make-docfile.c (scan_c_file): Warn about missing `usage' info.
2002-07-05 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* b2m.pl: Obey the rmail file and use the unpruned header properly.
2002-06-26 Pavel JanÃk <Pavel@Janik.cz>
* b2m.pl: New file.
2002-06-21 Francesco Potortì <pot@gnu.org>
* etags.c (F_getit, Fortran_functions, Ada_getit, Asm_labels)
(Python_functions, PHP_functions, PHP_functions, PHP_functions)
(PHP_functions, PHP_functions, Cobol_paragraphs)
(Makefile_targets, Postscript_functions, Texinfo_nodes)
(prolog_pr, erlang_func, erlang_attribute)
(Perl_functions, Perl_functions, Pascal_functions)
(TeX_commands, get_tag): Use make_tag instead of pfnote.
(get_tag): Prototype changed, all callers changed.
2002-06-20 Francesco Potortì <pot@gnu.org>
* etags.c: Implement implicit tag names, that is, unnamed tags
whose name is automatically deduced by etags.el. The advantage is
that there is no explicit tag name in most tags, so the size of
the tags file is reduced, yet find-tag is able to do a match as
accurate as with named tags. See the comment in make_tag for details.
(make_tag): New function (was the disabled function new_pfnote).
(make_C_tag): Use it.
2002-06-19 Francesco Potortì <pot@gnu.org>
* etags.c (add_regex): Invalid regexp modifiers are ignored.
(Makefile_targets): Tag variables unless --no-globals.
(LOOP_ON_INPUT_LINES): Serious bug corrected.
2002-06-13 Francesco Potortì <pot@gnu.org>
* etags.c (erlang_atom, erlang_attribute): Bugs corrected.
(invalidate_nodes): Bug corrected.
(print_help): Better help for regexps.
2002-06-13 Juanma Barranquero <lektu@terra.es>
* makefile.w32-in (lisp): Add international/ucs-tables.elc and
font-core.elc.
2002-06-12 Francesco Potortì <pot@gnu.org>
* etags.c: New multi-line regexp and new regexp syntax.
(arg_type): at_icregexp label removed (obsolete).
(pattern): New member multi_line for multi-line regexps.
(filebuf): A global buffer containing the whole file as a string
for multi-line regexp matching.
(need_filebuf): Global flag raised if multi-line regexps used.
(print_help): Document new regexp modifiers, remove references to
obsolete option --ignore-case-regexp.
(main): Do not set regexp syntax and translation table here.
(main): Treat -c option as a backward compatibility hack.
(main, find_entries): Init and free filebuf.
(find_entries): Call regex_tag_multiline after the regular parser.
(scan_separators): Check for unterminated regexp and return NULL.
(analyse_regex, add_regex): Remove the ignore_case argument, which
is now a modifier to the regexp. All callers changed.
(add_regex): Manage the regexp modifiers.
(regex_tag_multiline): New function. Reads from filebuf.
(readline_internal): If necessary, copy the whole file into filebuf.
(readline): Skip multi-line regexps, leave them to regex_tag_multiline.
2002-06-11 Francesco Potortì <pot@gnu.org>
* etags.c (add_regex): Better check for null regexps.
(readline): Check for regex matching null string.
(find_entries): Reorganization.
2002-06-07 Francesco Potortì <pot@gnu.org>
* etags.c (scan_separators): Support all character escape
sequences supported by Gcc.
(find_entries): Rewind unconditionally.
(find_entries): Do not call language functions directly, now calls
itself.
(find_entries): Do general initialisations here.
(CNL_SAVE_DEFINEDEF, C_entries, LOOP_ON_INPUT_LINES, F_getit)
(Ada_getit, Pascal_functions, Pascal_functions)
(prolog_skip_comment): Do not do them here.
(readline_internal): Increment lineno here.
(readline): Conditionally undo readline_internal increment.
(readline): Do not return a value.
2002-06-06 Francesco Potortì <pot@gnu.org>
* etags.c: New option --parse-stdin=FILE.
(enum arg_type): New label at_stdin.
(STDIN): New constant.
(parsing_stdin): New flag.
(longopts): New option --parse-stdin=NAME.
(print_help): Document it.
(main): Handle it.
(process_file): Split into process_file and process_file_name.
(process_file_name): New function.
* etags.c: Improvements and bug squashing in TeX handling.
(TeX_commands): Skip comments.
(TEX_defenv): Now contains more constructs.
(TEX_cmt): Make it a static char and move it before TeX_commands.
(TeX_commands): Shorten the tag to the brace after the name.
(TeX_commands): Names now include the initial backslash.
(TeX_commands): Names do not include numeric args #n.
(TeX_commands): Correct line char number in tags.
(TEX_tabent, TEX_token): Deleted.
(TeX_commands, TEX_decode_env): Streamlined.
2002-06-05 Francesco Potortì <pot@gnu.org>
* etags.c (main): Avoid a buffer overrun with sprintf.
2002-05-30 Richard M. Stallman <rms@gnu.org>
* Makefile.in (LIBS_MAIL): Renamed from LIB_MAIL.
(LIBS_MOVE): Renamed from MOVE_LIBS.
2002-05-26 Paul Eggert <eggert@twinsun.com>
Reinstate the following change from 2002-03-22, which was
inadvertently lost on 2002-04-13.
* etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
`sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
the latter usage.
2002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
* pop.c (socket_connection): Move the code to resolve the POP
host right before trying to connect with it.
2002-05-05 Eli Zaretskii <eliz@is.elta.co.il>
* tcp.c: Delete file since the TCP emulation is no longer in use on any
platform.
2002-04-28 Colin Walters <walters@verbum.org>
* Makefile.in (${archlibdir}): Don't conditionalize on
HAVE_SHARED_GAME_DIR. Instead, test at installation time whether
or not we have access to the specified game user.
* update-game-score.c (SCORE_FILE_PREFIX): Delete.
(main): New argument -d, for specifying directory.
(usage): Document.
(get_user_id): Compute.
(get_home_dir): Deleted.
(get_prefix): New function, taken from main.
(main): Check whether or not we are running setuid. Move prefix
computation to get_prefix. Don't call getpwent; we don't need to
any more. Instead, move it to get_user_id().
2002-04-24 Pavel JanÃk <Pavel@Janik.cz>
* ebrowse.c (skip_initializer): Return void.
2002-04-23 Colin Walters <walters@verbum.org>
* update-game-score.c (read_score) [HAVE_GETDELIM]: Trim trailing
space.
2002-04-22 Francesco Potortì <pot@gnu.org>
* etags.c (last_node): Make it a global variable.
(process_file): Print the tags from the nodes as soon as
possible, and delete the nodes. This brings down the memory
occupancy as etags to almost the same level as when the #line
directives were not parsed.
(free_fdesc): New function.
(find_entries): Use it.
(invalidate_nodes): In etags mode, do not just mark the nodes as
invalid, do delete them.
2002-04-21 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (add_declarator): Test *CLS instead of CLS.
2002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
* update-game-score.c: Move config.h before the other headers, to
avoid compiler warnings.
2002-04-16 Francesco Potortì <pot@gnu.org>
* etags.c (find_entries): Bug fix in list management.
2002-04-15 Francesco Potortì <pot@gnu.org>
* etags.c (get_language_from_filename): Add one argument.
(strcaseeq): New function.
(get_language_from_filename): Use it to do a case insensitive
comparison if called with appropriate args.
(find_entries): Try with case insensitive match.
(process_file): Bug fixed.
2002-04-13 Francesco Potortì <pot@gnu.org>
* etags.c (find_entries): Delete tags previously obtained from
file xxx.c's #line directives when parsing file xxx.y. This is
generally done for automatically generated files containing
#line directives. This handles the case when xxx.y is tagged
before xxx.c, and the entries of xxx.c pointing to xxx.y should
be discarded.
(language): Add the metasource member. Initializers changed.
(invalidate_nodes): New function.
(readline): Discard lines after having found a #line
directive pointing to an already tagged file. This handles the
case when xxx.y is tagged before xxx.c, and the entries of
xxx.c pointing to xxx.y should be discarded.
(fdesc): New structure for keeping track of input files.
(fdesc): Remove `file' member (a string) and use instead a pointer
to a file description structure.
(curfile, curfiledir, curtagfname, curlang, nocharno)
(forced_lang): Global variables removed in favor of fdhead and
curfdp, pointers to file description structures.
(longopts, main, print_help): Use the CTAGS conditional to include
or exclude options that work on etags or ctags only.
(process_file, find_entries, pfnote, add_node, put_entries)
(readline): Use fdhead and curfdp.
(process_file, find_entries): Do not take an arg string, all
callers changed.
* etags.c (longopts, print_help, main): Test CTAGS to disallow
options that are not right for either etags or ctags.
* etags.c (number_len, total_size_of_entries): Define them also
in CTAGS mode, because gcc does not compile all refs away.
2002-04-14 Colin Walters <walters@debian.org>
* update-game-score.c (lock_file): If the lock file is older than
an hour, delete it. Reset attempts to zero if we have to break
the lock.
2002-04-14 Andreas Schwab <schwab@suse.de>
* update-game-score.c (read_score): Fix type of second parameter
of getdelim to be of type size_t instead of int. Use 0 instead of
ESUCCES.
2002-04-10 Colin Walters <walters@verbum.org>
* update-game-score.c (toplevel): Include stdarg.h.
(MAX_DATA_LEN, MAX_SCORES): New.
(SCORE_FILE_PREFIX): If HAVE_SHARED_GAME_DIR is not defined,
default to ~/.emacs.d/games.
(get_user_id): Don't zero uid in the case where we can't get the
username.
(lose): New function.
(main): Actually use `max', and default it to MAX_SCORES.
Correctly handle new default for SCORE_FILE_PREFIX. Use `lose'
function.
(read_score): Handle the case of reading unamelen characters, then
finishing. Use mktemp if mkstemp isn't available.
(lock_file, unlock_file): Delete unused versions.
(lock_file): Always sleep, even if we unlinked the lock file.
* Makefile.in (gamedir, gameuser): New variables.
(toplevel, UTILITIES): Add update-game-score.
(${archlibdir}): Handle HAVE_SHARED_GAME_DIR.
2002-04-07 Colin Walters <walters@verbum.org>
* update-game-score.c (SCORE_FILE_PREFIX): Don't hardcode.
(get_user_id): Take struct passwd as an argument.
(get_home_dir): New function.
(main): Read in user information here. Discover home directory if
necessary.
(read_score): Trim newline only in `getline' case.
2002-04-05 Colin Walters <walters@debian.org>
* update-game-score.c (toplevel): Include pwd.h.
(struct score_entry): Add username field.
(push_score): Use it.
(get_user_id): New function.
(main): Don't malloc excessively.
(main): Use username field.
(read_score): Read it.
(push_score): Handle it.
(write_scores): Write it.
(read_score): Handle arbitrary length data.
2002-03-30 Eli Zaretskii <eliz@is.elta.co.il>
* ebrowse.c (add_declarator): Fix the first call to add_member_defn.
2002-03-29 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (add_declarator, skip_initializer): New functions.
(declaration): Use them.
2002-03-28 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (lisp): Move backquote.elc into emacs-lisp.
2002-03-27 Colin Walters <walters@debian.org>
* update-game-score.c: New file.
2002-03-22 Paul Eggert <eggert@twinsun.com>
* etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
`sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
the latter usage.
2002-03-12 Francesco Potortì <pot@gnu.org>
* etags.c (Python_functions): Skip spaces at beginning of lines.
(Python_functions, PHP_functions): Name tags, for ctags' sake.
(TeX_commands): Name tags. Correction of old disabled code.
* etags.c (curfiledir, curtagfname): New global variables.
(process_file): Initialise them.
(readline): Canonicalize the name found in #line directive.
2002-03-06 Jason Rumney <jasonr@gnu.org>
* etags.c (put_entries): Use #if !CTAGS, to fix link error on
compilers that don't optimize out dead code.
2002-03-05 Francesco Potortì <pot@gnu.org>
* etags.c: Honour #line directives.
(no_line_directive): New global var; set it for old behavior.
(main): Remove some #ifdef in the getopt switch.
(add_node, put_entries): Code added to merge different chunks of
nodes referring to the same file. Currently the tags are just
appended, without any check for duplicates.
(Perl_functions): Do not special case ctags.
(readline): Identify #line directives and do the right thing.
(nocharno, invalidcharno): New global vars.
(process_file): Reset nocharno.
(readline): Set nocharno.
(pfnote): Read nocharno and maybe put invalidcharno in node.
(total_size_of_entries, put_entries): Use invalidcharno.
* etags.c: Keep the whole tag table in memory, even in etags mode.
(main): Call put_entries here even in CTAGS mode.
(main, process_file): Check the return values of fclose and pclose.
(process_file): Do not call put_entries after parsing each file.
(process_file): Canonicalise file names even for ctags.
(process_file): Set curfile here...
(find_entries): ... not here any more.
(add_node): In etags mode, build a linked list of entries (on
right pointer) for each file, and link the first entry of each
file on left nodes.
(put_entries): Print here the name of the file.
(put_entries): Print the entries starting from the first file.
(number_len, total_size_of_entries): Define these only in etags
mode, make the second work only on the right nodes.
* etags.c: Make all global variables static.
2002-02-25 Juanma Barranquero <lektu@terra.es>
* makefile.w32-in (lisp): Add missing backslash.
2002-02-24 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to
using .elc files.
(lisp): Sync with list in src/Makefile.in
(VMS_SUPPORT, MSDOS_SUPPORT): Define, so DOC files can be shared.
2002-02-10 Paul Eggert <eggert@twinsun.com>
* rcs-checkin: Use `sort -k 2', not `sort +1', as POSIX 1003.1-2001
disallows the old syntax.
2002-02-03 Paul Eggert <eggert@twinsun.com>
* rcs2log (Copyright): Update to 2002.
(AWK, TMPDIR): Work around portability problem in broken shells that
don't understand `: ${VAR=val}'.
(SORT_K_OPTIONS): New var, for hosts that conform to POSIX 1003.1-2001.
Prefer the new -k option to the traditional +M -N option.
2002-01-01 Pavel JanÃk <Pavel@Janik.cz>
* b2m.c (main): Parenthesize assignment when used as truth value
to prevent gcc warnings.
* fakemail.c: Include <config.h>.
2001-12-29 Pavel JanÃk <Pavel@Janik.cz>
* cvtmail.c, emacsclient.c, emacsserver.c, pop.c, sorted-doc.c,
* yow.c: Include <config.h>.
2001-12-21 Francesco Potortì <pot@gnu.org>
* etags.c (Perl_functions): Tag packages and use them in sub tags.
(get_tag): Return a pointer to the tag that is found.
* etags.c (LOOKING_AT): Use !intoken instead of iswhite.
(F_takeprec): Renamed from takeprec. All callers changed.
(F_getit): Renamed from getit. All callers changed.
(nocase_tail): Renamed from tail. All callers changed.
(Ada_getit): Renamed from adagetit. All callers changed.
(L_getit): Simplify by using get_tag.
(Perl_functions, Postscript_functions, erlang_attribute): Use the
modified LOOKING_AT.
(notinname): Removed '[' and added ')' to the recognised chars.
(LOOKING_AT, get_tag, PHP_functions): Use notinname.
(Ada_getit, Ada_funcs, Python_functions, Scheme_functions):
Clarified, using strneq or notinname.
(L_isdef, L_isquote): Removed.
(Lisp_functions, L_getit): Clarified.
* etags.c (P_): Renamed to __P for consistency with config.h.
[HAVE_CONFIG_H]: Let config.h deal with __P.
[__STDC__] [!HAVE_CONFIG_H]: Define PTR as in config.h.
[!__STDC__] [!HAVE_CONFIG_H]: Do not undefine static, because
gperf code needs it.
[HAVE_CONFIG_H] [!PTR]: Define PTR (for use with XEmacs).
[HAVE_CONFIG_H] [!__P]: Define __P (for use with XEmacs).
(xmalloc, xrealloc): Use PTR instead of long *.
(bool): Make it a define, not a typedef, for C++ compilers.
(pattern): Members renamed to avoid name clash in some C++ compilers.
(get_language_from_langname): Use const argument.
2001-12-22 Pavel JanÃk <Pavel@Janik.cz>
* makefile.nt, makefile.w32-in: Remove mocklisp files.
2001-12-19 Pavel JanÃk <Pavel@Janik.cz>
* emacsserver.c: Conditionally include config.h.
* fakemail.c: Likewise.
* emacsclient.c: Include "config.h", not <../src/config.h>.
(main): Parenthesize assignment when used as truth value to
prevent gcc warnings.
* ebrowse.c: Include stdlib.h and string.h conditionally.
2001-12-18 Eli Zaretskii <eliz@is.elta.co.il>
* yow.c (main): Use time_t, not long, to avoid a compiler warning.
2001-12-18 Pavel JanÃk <Pavel@Janik.cz>
* test-distrib.c: Fix previous change.
2001-12-18 Dave Love <fx@gnu.org>
* test-distrib.c: Conditionally include fcntl.h.
* fakemail.c: Include "config.h", not <../src/config.h>.
(_XOPEN_SOURCE): Define as 500.
* emacsserver.c: Include "config.h", not <../src/config.h>.
* cvtmail.c: Include config.h, stdlib.h.
(xmalloc, xrealloc, skip_to_lf sysfail): Prototype.
* yow.c: Conditionally include various headers. Use "epaths.h",
not <../src/epaths.h>.
(malloc, realloc) [!HAVE_STDLIB_H]: Prototype.
2001-12-12 Francesco Potortì <pot@gnu.org>
* etags.c (PHP_functions): New function for parsing PHP.
(LOOKING_AT): New macro.
(Perl_functions, Python_functions, PHP_functions)
(Scheme_functions, Texinfo_nodes): Use it.
(Perl_functions): Use strneq.
(prolog_pred): Renamed to prolog_pr.
(prolog_pr): Recognise Prolog rules in addition to predicates.
[ETAGS_REGEXPS] [!HAVE_CONFIG_H] [__CYGWIN__]: Prevent
unmodified compile, as Cygwin's regex.h is incompatible with us.
[!HAVE_CONFIG_H] [!__STDC__]: #define const as the empty string.
2001-12-11 Richard M. Stallman <rms@gnu.org>
* Makefile.in (clean): Don't delete ../etc/DOC*.
2001-12-11 Pavel JanÃk <Pavel@Janik.cz>
* COPYING: Moved back.
2001-11-30 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (FACE_SUPPORT):
(MOUSE_SUPPORT):
(FLOAT_SUPPORT):
(WINNT_SUPPORT):
(lisp): Reference .el files instead of .elc files, to simplify
bootstrapping.
($(DOC)): Change dependency to just `make-docfile'.
2001-11-29 Pavel JanÃk <Pavel@Janik.cz>
* COPYING: Removed.
2001-11-28 Paul Eggert <eggert@twinsun.com>
* rcs2log (Copyright): Add '(C)' as per coding guidelines.
The following changes are derived from suggestions by Bob Chapman
<rechapman@compuserve.com>.
* rcs2log (printlogline): Also allow tab and newline to separate
'(function):' from the rest of a comment.
(reformat the sorted log entries): Require date and author to
match the clumpname.
2001-11-16 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (matching_regexp): Escape '\\'.
2001-11-15 Pavel JanÃk <Pavel@Janik.cz>
* Makefile.in: Add support for --program-prefix, --program-suffix
and --program-transform-name options.
2001-11-03 Richard M. Stallman <rms@gnu.org>
* cvtmail.c (xrealloc): Always pass two args to `fatal'.
* movemail.c (popmail): Always pass two args to `error'.
2001-10-24 Ken Raeburn <raeburn@gnu.org>
* Makefile.in (HESIODLIB) [HAVE_LIBHESIOD]: Set to include
-lhesiod and maybe -lresolv.
(CRYPTOLIB) [HAVE_LIBK5CRYPTO]: Use -lk5crypto for Kerberos
support if it's available.
2001-10-21 Miles Bader <miles@gnu.org>
* make-docfile.c (struct rcsoc_state): New type.
(read_c_string_or_comment): Add SAW_USAGE
parameter, and implement scanning for a `usage:' keyword.
Use a variable of type `rcsoc_state' to hold most of our state.
(put_char): Add STATE parameter, and remove all other parameters
except CH. Use STATE to get access to all needed state.
(scan_keyword_or_put_char): New function.
(scan_c_file): Pass SAW_USAGE argument to read_c_string_or_comment.
Don't output a usage-string if there was one in the doc-string.
2001-10-20 Gerd Moellmann <gerd@gnu.org>
* (Version 21.1 released.)
2001-10-19 Pavel JanÃk <Pavel@Janik.cz>
* b2m.c: Properly spell the name of Emacs.
2001-10-17 Miles Bader <miles@gnu.org>
* make-docfile.c (put_char): New function.
(read_c_string_or_comment): Strip trailing spaces and newlines.
2001-10-16 Miles Bader <miles@gnu.org>
* make-docfile.c (scan_c_file): Handle `new style' doc strings in
comments [with `doc:' keyword prefix].
2001-10-15 Gerd Moellmann <gerd@gnu.org>
* make-docfile.c (read_c_string_or_comment): Don't drop a '*'
in a C doc comment.
2001-10-13 Gerd Moellmann <gerd@gnu.org>
* make-docfile.c (read_c_string_or_comment): Renamed from
read_c_string. Add parameter COMMENT. Read C-style comments.
(scan_c_file): Handle doc strings in C comments.
2001-10-12 Andrew Innes <andrewi@gnu.org>
* makefile.nt (ALL): Do not include fakemail.
* makefile.w32-in (install): Do not copy fakemail.
2001-10-10 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (ALL): Do not include fakemail.
* makefile.nt (install): Ditto.
2001-10-09 Gerd Moellmann <gerd@gnu.org>
* emacsserver.c (main): Cast geteuid in sprintf to int.
* emacsclient.c (main): Cast isdigit argument to unsigned char.
2001-10-07 Pavel JanÃk <Pavel@Janik.cz>
* profile.c: Include config.h, not ../src/config.h.
Include systime.h, not ../src/systime.h.
2001-10-05 Gerd Moellmann <gerd@gnu.org>
* Branch for 21.1.
2001-10-01 Alexander Zhuckov <zuav@int.spb.ru>
* ebrowse.c (struct alias): Add two new struct members: NAMESP and
ALIASEE to help work with namespace aliases.
(struct sym): Remove struct member NAMESP_ALIASES.
(namespace_alias_table): New variable.
(make_namespace): Add parameter CONTEXT.
(check_namespace): New function.
(find_namespace): Add parameter CONTEXT.
(check_namespace_alias): New function.
(register_namespace_alias): Change type of parameter OLD_NAME.
Search for already defined alias in NAMESPACE_ALIAS_TABLE.
(check_namespace): New function.
(enter_namespace): Call find_namespace with CONTEXT parameter.
(match_qualified_namespace_alias): New function.
(parse_qualified_ident_or_type): Fix typo in comment.
While parsing qualified ident or type update namespace context and
restore it on exit.
(parse_qualified_param_ident_or_type): Fix typo in comment.
(globals): Change handling of namespace aliases.
(version): Add year 2001.
2001-09-15 Eli Zaretskii <eliz@is.elta.co.il>
* etags.c (analyse_regex): If regex_arg is NULL, return
immediately after a call to free_patterns.
2001-09-05 Paul Eggert <eggert@twinsun.com>
* rcs2log (Help, mainline code): Add new option -L FILE.
(Copyright): Update year.
(LANG, LANGUAGE, LC_ALL, LC_COLLATE, LC_CTYPE, LC_MESSAGES)
(LC_NUMERIC, LC_TIME): New shell vars, to make sure we live in the
C locale.
(mainline code): Handle nonstandard -u option differently, by
transforming it to standard form. Check for "Working file: ", not
"Working file:". Allow file names with spaces.
(SOH, rlogfile): New shell vars.
(rlogout): Remove. Its old functionality is mostly migrated to
rlogfile.
Append ';;' to the last arm of every case statement, for
portability to ancient broken BSD shells.
(logins): Fix bug; was not being computed at all, lowering performance.
(pository): New var. This fixes some bugs where repositories are
remote, or have trailing slashes.
(authors): $llogout is never an empty shell var, so don't worry
about that possibility.
(printlogline, mainline code): Fix bug with SOH's being put into
the output.
2001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
* ebrowse.c (SEEK_END): #define if not defined by system headers.
Suggested by Dave Love <d.love@dl.ac.uk>.
2001-08-29 Eli Zaretskii <eliz@is.elta.co.il>
* makefile.nt (lisp): Synchronize with src/Makefile.in.
* makefile.w32-in (lisp): Ditto.
2001-07-25 Juanma Barranquero <lektu@terra.es>
* grep-changelog (parse_changelog): Remove unused local variable.
* grep-changelog (main): Add new option --reverse.
(print_log): Use it.
(parse_changelog): Use it.
2001-07-20 Gerd Moellmann <gerd@gnu.org>
* grep-changelog: Remove RCS Id keyword.
2001-07-20 Juanma Barranquero <lektu@terra.es>
* grep-changelog (parse_changelog): Add tests for defined values
to quiet warning from Perl 5.005 or above.
(entry_match_p, header_match_p): Fix handling of null or empty
argument to prevent duplicate headers.
* grep-changelog (main, parse_changelog): Make "use strict"-clean.
2001-07-17 Jan Nieuwenhuizen <janneke@gnu.org>
* emacsclient.c (print_help_and_exit): Fix help message for
+LINE:COLUMN option.
2000-07-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* emacsclient.c (main): Add support for +LINE:COLUMN command line
argument.
2001-07-16 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (main): Check that the output file exists and
is non-empty if invoked with `--append'.
2001-05-14 Francesco Potortì <pot@gnu.org>
* etags.c (add_regex): Reset the whole newly allocated pattern
buffer instead of the individual members. It's safer and works
with XEmacs.
* etags.1: Markups corrected.
2001-05-08 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (enter_namespace): Fix reallocation of namespace_stack.
2001-05-03 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (globals): Fix handling of namespace aliases.
2001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
* etags.c (print_help): Enclose the regexp in the help text
example in quotes.
2001-04-05 Dave Love <fx@gnu.org>
* emacsclient.c (fail): Don't return a value.
(main): Cast uid values for sprintf.
2001-04-03 Gerd Moellmann <gerd@gnu.org>
* emacsclient.c (fail, main): Don't use implicit int return type.
* b2m.c (main): Always return a value.
2001-03-02 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (parse_qualified_param_ident_or_type): Return a
freshly allocated object in *LAST_ID.
(read_line): Accept \r\n line endings.
2001-02-24 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in: Fix copyright notice.
2001-02-23 Francesco Potortì <pot@gnu.org>
* etags.c (enum sym_type): New label st_C_template.
(gperf input): Use it for switching to C++ from C.
(consider_token): Do it.
(C_entries): Initialise typdefcblev to quiet compilers.
[!HAVE_CONFIG_H] [!__STDC__]: #define static as nothing.
2001-02-22 Andrew Innes <andrewi@gnu.org>
* makefile.nt ($(BLD)\movemail.obj): Remove reference to
VMS header files.
($(BLD)\profile.obj): Ditto.
* makefile.w32-in ($(BLD)/movemail.$(O)): Remove reference to
VMS header files.
($(BLD)/profile.$(O)): Ditto.
2001-02-05 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in ($(DOC)): Use $(THISDIR) instead of . in
invocation of make-docfile, to work with Windows 2000.
2001-01-31 Dave Love <fx@gnu.org>
* etags.c (in_word_set): Use `static' in definition (for pcc).
2001-01-31 Francesco Potortì <pot@gnu.org>
* etags.c [NDEBUG]: #undef assert and #define it as ((void)0), for
the sake of some buggy assert.h (e.g. in MinGW and sunos4 pcc).
(C_entries): Tag token renamed to still_in_token because sunos4
pcc wants to expand it as the token() macro even though it has no
arguments.
2001-01-30 Andrew Innes <andrewi@gnu.org>
* etags.c (assert) [__MINGW32__]: Redefine assert to work around a
bug in the Mingw32 assert.h header file.
2001-01-30 Francesco Potortì <pot@gnu.org>
* etags.c [WIN32-NATIVE]: #undef MSDOS, #undef WINDOWSNT and
#define it for the sake of XEmacs.
[WINDOWSNT]: #undef HAVE_NTGUI even if built without
HAVE_CONFIG_H. This change only affects a standalone etags.
[WINDOWSNT]: #undef DOS_NT and #define it even if built with
HAVE_CONFIG_H. This change does nothing in Emacs, as DOS_NT is
always defined when HAVE_CONFIG_H and WINDOWS are both defined.
[!HAVE_UNISTD_H]: Use defined(WINDOWSNT) instead of the bare
WINDOWSNT, as this is the correct way to use it.
2001-01-28 Francesco Potortì <pot@gnu.org>
* etags.c: Be capable to parse nested struct-like structures.
(structdef, structtag): Struct state machine revisited.
(struct tok): Revisited.
(cstack, nestlev, instruct): New struct and macros.
(pushclass_above, popclass_above, write_classname): New functions
for dealing with nested class names.
(consider_token, make_C_tag, C_entries): Many changes for dealing
with arbitrarily nested structures.
(etags_getcwd): #if MSDOS, not #ifdef MSDOS!
(C_entries): Consider templates in C++.
(sym_type): New constant st_C_class for detecting "class" also in
C mode.
(C_AUTO): New macro for automatic detection of C++.
(consider_token): Automatic set C++ mode.
(C_entries): New security check for yacc.
(print_language_names, print_help): Mention the autodetect
feature, do not show help for the -C option, now mostly useless.
(C_entries): Tag C++ forward declarations if --declarations.
(C_entries): Don't be fooled by things like XDEFUN.
(consider_token): Discard asm pseudo function.
2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
* etags.c: Add a coding: tag.
2001-01-26 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (matching_regexp_buffer, matching_regexp_end_buf):
New variables.
(matching_regexp): Use them instead of static variables in
function scope.
2001-01-25 Francesco Potortì <pot@gnu.org>
* etags.c (struct tok): Renamed from struct token.
(token): Renamed from tok.
(structtype): Make it a local variable.
[DEBUG]: Use assert.
(xrnew): Change the synopsis.
(typedefs_or_cplusplus): Renamed from typedefs_and_cplusplus.
(grow_linebuffer): Don't call xrnew when not needed.
(token): Buffer renamed to line.
(C_entries): Three calls to inibuffer moved here from main.
(C_entries): Remove all references to var methodlen, delete it.
(linebuffer_setlen): Was grow_buffer, now also sets len.
(consider_token, C_entries, Pascal_functions): Use it.
(C_entries): Preventing problems relative to extern "C".
(C_entries): Can tag more than one variable or func separated by
comma when --declarations is used.
(C_entries): More accurate tagging of members and declarations.
(yacc_rules): Was global, made local to C_entries.
(next_token_is_func): Removed.
(fvdef): New constants fdefunkey, fdefunname.
(consider_token, C_entries): Use them.
(C_entries): Build proper lisp names for Emacs DEFUNs.
2001-01-22 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (xfree): New function.
(member, declaration, globals): Use xmalloc instead of alloca.
2001-01-15 Francesco Potortì <pot@gnu.org>
* etags.c (print_language_names): Print filenames in addition to
suffixes.
2001-01-14 Francesco Potortì <pot@gnu.org>
* etags.c (get_language_from_langname): Renamed from
get_language_from_name.
(get_language_from_filename): Renamed from get_language_from_suffix.
Now first looks for the complete file name.
(language): New member char **filenames.
(Makefile_filenames): List of possible filenames for makefiles.
(lang_names): Add a NULL member for every entry, added an entry
for makefiles.
(Makefile_targets): New function.
(Texinfo_nodes): Renamed from Texinfo_fuctions and made
it conformant to the style of the rest of the code.
2001-01-13 Gerd Moellmann <gerd@gnu.org>
* make-docfile.c (write_c_args): Print newlines as spaces.
2001-01-06 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (clean): Delete $(COMPILER_TEMP_FILES) instead
of *.pdb.
2001-01-03 Paul Eggert <eggert@twinsun.com>
* rcs2log: Avoid security hole allowing attacker to
cause user of rcs2log to overwrite arbitrary files, fixing
a bug reported by Morten Welinder.
Don't put "exit 1" at the end of the exit trap; it's
ineffective in POSIX shells.
2001-01-02 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (yyerror): Change to take two arguments.
Add prototype. Change callers.
2001-01-02 Eli Zaretskii <eliz@is.elta.co.il>
* ebrowse.c (enter_namespace, main): Cast variables to shut up
compiler warnings.
(yyerror): Change parameter declarations to be of type long, so
that they can take pointers on 64-bit platforms.
* emacsclient.c (main): Remove unused local variable statbfr.
(main) <homedir>: Make its declaration conditional on
SERVER_HOME_DIR, to avoid compiler warnings.
* emacsserver.c (main) <homedir>: Make its declaration conditional
on SERVER_HOME_DIR, to avoid compiler warnings.
* fakemail.c (readline): Cast buffer to "long *" to pacify
over-zealous compilers.
2000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
* etags.c (canonicalize_filename) [DOS_NT]: Fix last change.
2000-12-15 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (operator_name): Cast argument of isalpha to
unsigned char.
* etags.c (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Use them throughout instead of ctype functions/macros.
(lowcase): Cast to unsigned char.
(UPCASE): New macro.
(canonicalize_filename): Use UPCASE instead toupper.
* fakemail.c (get_keyword): Make sure that isspace and
similar aren't called with a negative argument.
2000-12-13 Dave Love <fx@gnu.org>
* ebrowse.c (ensure_scope_buffer_room): Fix xrealloc call.
2000-12-06 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (LOCAL_FLAGS): Remove -DVERSION flag, since we
don't know the real version, and I can't seem to get the quoting
right in all circumstances.
* ebrowse.c (VERSION): Provide default definition, like etags.c
does, because Windows build can't snarf this from version.el.
2000-11-30 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in ($(BLD)/ebrowse.exe): Use tabs not spaces.
(install): Ditto.
2000-11-23 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in: Add targets for ebrowse.exe.
(LOCAL_FLAGS): Add -DVERSION flag.
2000-09-25 Dave Love <fx@gnu.org>
* sorted-doc.c: Include config.h.
[!HAVE_STDLIB_H]: Declare malloc.
2000-09-14 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in: Revert to Unix line endings.
2000-09-04 Dave Love <fx@gnu.org>
* movemail.c (index, rindex): Prototype conditionally.
2000-09-03 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in: Change to DOS line endings.
2000-09-01 Eli Zaretskii <eliz@is.elta.co.il>
* movemail.c (toplevel): Remove redundant fcntl.h.
[!F_OK]: Provide default definitions only after including both
fcntl.h and unistd.h.
2000-08-29 Dave Love <fx@gnu.org>
* movemail.c: Revert previous change.
2000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
* Makefile.in (profile, make-docfile, hexl): Depend on config.h.
2000-08-28 Dave Love <fx@gnu.org>
* movemail.c (toplevel) [HAVE_STRING_H]: Include string.h.
(toplevel) [HAVE_STRINGS_H]: Include strings.h.
2000-08-22 Andrew Innes <andrewi@gnu.org>
* ntlib.h (WIN32): Remove unnecessary definition.
(sleep): Make argument unsigned long.
(_WINSOCK_H): Undefine so normal winsock definitions can be used.
* ntlib.c (sleep): Make argument unsigned long.
* movemail.c (main) [WINDOWSNT]: Force binary mode for fileio.
* makefile.w32-in: New file.
2000-08-20 Eli Zaretskii <eliz@is.elta.co.il>
* etags.c (canonicalize_filename) [DOS_NT]: Upcase the first
letter only if it is a drive letter.
2000-07-14 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (xrealloc, xmalloc): Renamed from yrealloc and ymalloc.
* etags.c (xmalloc, xrealloc): Make externally visible, for use
by alloca.o.
* Makefile.in (alloca.o): Add -Demacs so that alloca will use xmalloc.
2000-07-10 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (yylex): Accept string literals with newlines in them.
(process_pp_line): Handle case of string literal with newline
in it in replacement text, which counts as continuing the
replacement text in GNU C.
2000-07-02 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (token_string): Add missing tokens.
(parm_list): Handle case of qualified pointers.
2000-06-23 Dave Love <fx@gnu.org>
* ebrowse.c: Move config.h before other includes (which may use
feature tests).
2000-06-14 Jim Meyering <meyering@lucent.com>
* grep-changelog: Fix typos in comments. Remove trailing blanks.
2000-06-11 Jason Rumney <jasonr@gnu.org>
* makefile.nt: Add targets for ebrowse.
* ebrowse.c [WINDOWS_NT]: Use stricmp instead of strcasecmp to
compare filenames.
2000-06-06 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (ymalloc): Renamed from xmalloc.
(yrealloc): Renamed from xrealloc.
2000-05-21 Dave Love <fx@gnu.org>
* movemail.c: Include config.h, not ../src/config.h.
(Errmsg): Bump length.
* pop.c (ERROR_MAX): Increase to 160.
2000-05-04 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (DEFAULT_OUTFILE): Set to `BROWSE'.
2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
* ebrowse.c (PATH_LIST_SEPARATOR) [__MSDOS__ || WINDOWSNT]:
Define to semi-colon.
(FILENAME_EQ): New macro, for comparing file names.
(add_member_decl, add_global_decl, add_member_defn): Use FILENAME_EQ.
(process_file): Don't assume that fread always reads as many bytes
as it was told to (DOS-style CR-LF text files fail this logic).
(open_file): Allocate enough space for path->path plus the file
name and the slash.
2000-04-19 Dave Love <fx@gnu.org>
* etags.c (Texinfo_functions): New function.
(lang_names): Install it.
(Texinfo_suffixes): New variable.
2000-04-19 Gerd Moellmann <gerd@gnu.org>
* ebrowse.c (xmalloc, xrealloc): Rewritten.
(declaration): Remove parameter IS_EXTERN.
(class_definition): Remove unused variable.
2000-04-09 Gerd Moellmann <gerd@gnu.org>
* Makefile.in (INSTALLABLES): Add ebrowse.
(ebrowse): New target.
* ebrowse.c: New file.
2000-03-29 Andreas Schwab <schwab@suse.de>
* make-docfile.c (scan_lisp_file): Also look for `defsubst'.
2000-03-02 Gerd Moellmann <gerd@gnu.org>
* etags.c (lisp_suffixes) Add `LSP'.
2000-02-10 Francesco Potortì <pot@gnu.org>
* etags.c (iswhite): Redefine not to consider '\0' as white
space, and use it throughout in place of isspace, thus preventing a
potential signed char to int conversion problem.
(MSDOS): #undefine before redefining.
2000-02-04 Francesco Potortì <pot@gnu.org>
* etags.c (many functions): Add prototypes.
2000-02-10 Dave Love <fx@gnu.org>
* etags.c (pfnote, new_pfnote, C_entries, prolog_pred)
(erlang_func): Add `static' to definitions to keep pcc happy.
2000-01-31 Francesco Potortì <pot@gnu.org>
* etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise.
(get_compressor_from_suffix, process_file): Use MSDOS in if clause.
(etags_strchr, etags_strrchr): Use const char * and int as arguments.
(getenv, getcwd): Only declare them if necessary.
(EMACS_NAME): New constant macro.
(print_version): Use it.
(P_) [__STDC__]: Macro for defining function prototypes.
2000-01-18 Fabrice Popineau <Fabrice.Popineau@supelec.fr>
* etags.c [WINDOWSNT]: #include <direct.h>
2000-01-18 Martin Buchholz <martin@xemacs.org>
* etags.c (all functions): Made them static.
(all functions): Write prototypes.
2000-01-29 Richard M. Stallman <rms@caffeine.ai.mit.edu>
* movemail.c (main): Improve error message if can't create lock file.
2000-01-28 Eric Hanchrow <offby1@blarg.net>
* emacsclient.c (socket_status): New function.
(main): If $LOGNAME or $USER exist and differ from our euid, look
for a socket based on the UID associated with the name.
2000-01-12 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* emacsclient.c: Add option -a EDITOR and environment variable
ALTERNATE_EDITOR. Exec this editor if we fail to contact Emacs.
1999-12-10 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* movemail.c (popmail): Allow mailbox specifications of the
form `po:username:hostname'.
1999-11-19 Francesco Potortì <pot@gnu.org>
* etags.c (_GNU_SOURCE): Define only if undefined.
(get_scheme): Declaration deleted.
(main): Error was called with an integer as second arg, instead of
a char pointer.
(canonicalize_filename): Bug removed.
1999-11-18 Dave Love <d.love@dl.ac.uk>
* etags.c (C_entries): Rename label `intoken', avoiding K&R
lossage from name clash with macro.
1999-11-13 Gerd Moellmann <gerd@gnu.org>
* Makefile.in (b2m): Add dependency on GETOPTDEPS.
1999-11-03 Gerd Moellmann <gerd@gnu.org>
* etags.c (print_help): Change email address to send bugs to.
1999-11-01 Francesco Potortì <pot@gnu.org>
* etags.c: Add suffix psw for PSWrap.
(L_getit): Generalize a "cp!=' '" into "!isspace(*cp)".
(Postscript_functions): Add code for PSWrap.
(Scheme_functions): Use local pointer and new get_tag function.
(get_tag): New name for old get_scheme.
(process_file): Do not free NULL when file does not exist.
(typdef): ttypedefseen renamed to tkeyseen, new label ttypeseen.
(C_entries): Modifications that make --members tag even inside
typedefs and C nested structs (one level only).
(consider_token): Correct a bug which prevented tagging of enum
constants.
(C_stab_entry): Add if, for, while, switch, return as
st_C_ignore. This makes it simpler to work when cblev!=0.
* etags.c (C_entries): Tag member function declarations when
--declarations is used.
* etags.c (C_entries, consider_token): C++ `operator' now is
tagged in most cases.
As before, :: is not recognised if surrounded by spaces.
* etags.c (relative_filename): Account for DOS file names such
that is impossible to make one relative to another.
* etags.c (sym_type): New st_C_extern tag.
(gperf input): Use it for spotting external declarations.
(print_help): Document the new behavior of --declarations.
(fvextern): New global variable.
(consider_token, C_entries): Use it.
* etags.c (HAVE_GETCWD) [WINDOWSNT]: Define if undefined.
(etags_getcwd): Remove test for WINDOWSNT.
* etags.c (process_file) [MSDOS]: If foo.c.gz is not found, try
foo.cgz, foo.cz, etc.
* etags.c (declarations): New global switch.
(longopts): Describe it.
(print_help): Document it.
(C_entries): Use it.
(process_file): Don't process a file twice.
* etags.c (Fortran_functions): No tags for "procedure".
1999-11-01 Eli Zaretskii <eliz@is.elta.co.il>
* etags.c (get_compressor_from_suffix): Second argument EXTPTR, if
non-zero, returns a pointer to where the extension begins; callers
changed.
[MSDOS]: Support DOS file names by handling e.g. foo.cgz as if it
were foo.c.gz.
1999-11-01 Francesco Potortì <pot@gnu.org>
* etags.c (sym_type, C_stab_entry): New constant st_C_operator.
(fvdev): New constant foperator.
(consider_token): Use it to get "operator" in C++.
(C_entries): Extend length of operator@ function name.
(C_entries): Use foperator when necessary.
* etags.c (main) [!ETAGS_REGEXPS]: Do not call free_patterns.
* etags.c (compressor): New struct for compressed files.
(get_compressor_from_suffix): New function.
(get_language_from_suffix): Use it. Also, semantics changed.
(process_file): Consider compressed files, close file.
(find_entries): Use different call arg for get_language_from_suffix,
don't close file.
* etags.c (main): Call free_tree.
(find_entries): Do not free curfile.
(pfnote): Cosmetic change: NULL and '\0' where appropriate.
(prolog_pred, erlang_func, substitute): Cast strlen to int when
comparing.
(canonicalize_filename): Shut up compiler warning.
(Perl_functions): Make tag significant.
1999-11-01 Dave Love <d.love@dl.ac.uk>
* etags.c (longopts, optstring): New option --ignore-case-regex (-c).
(argument_type): New member at_icregexp.
(lc_trans): New global.
(main): Fill lc_trans. Process -c args.
(add_regex): New arg determining whether to use translation table.
(analyse_regex): New arg. Use it for add_regex.
1999-11-01 Francesco Potortì <pot@gnu.org>
* etags.c (init): Cosmetic change: NULL --> '\0'.
(erlang_attribute): Bug corrected (uninitialized variable).
(filename_is_absolute): New function replaces absolutefn macro and
corrects a bug. All callers changed.
(canonicalize_filename): New function.
(process_file, etags_getcwd, absolute_dirname): Use it.
(relative_filename, absolute_filename): Removed var shadowing.
(C_entries, Pascal_functions): Add fake initializations to keep
compilers quiet.
(TeX_functions, Prolog_functions, Erlang_functions): Cleanup.
* etags.c (xrnew): New macro. All callers of xrealloc changed.
(language): New typedef (was struct lang_entry).
(curlang): New global variable.
(node): Typedef renamed from NODE.
(linebuffer): New typedef (was struct linebuffer).
(pattern): New typedef (was struct pattern). Some members added.
Now used as element of a linked list.
(patterns, num_patterns): Global variables deleted.
(p_head): New global variable.
(forced_lang): New global variable (replaces lang_func).
(get_language_from_name, get_language_from_interpreter)
(get_language_from_suffix): Semantics changed. All callers changed.
(last_node): New global variable.
(free_tree, add_node, put_entries, total_size_of_entries):
Change name of local vars to avoid clashes with typedef node.
(number_len): Rewritten for elegance.
(token): New typedef replaces TOKEN.
(analyse_regex, add_regex): Rewritten for new functionality.
(free_patterns): New function called from main and add_regex.
(initbuffer, readline_internal, readline, grow_linebuffer):
Change name of local vars to avoid clashes with typedef linebuffer.
(readline): Rewritten for new functionality.
* etags.c (Scheme_suffixes): New suffix ".ss".
(print_help): --globals is now used for more than C-type languages.
(Perl_functions): Tag global variables ("my" and "local").
* etags.c (print_help): Some messages clarified.
(LOOP_ON_INPUT_LINES): New macro.
(just_read_file, Fortran_functions, Asm_labels, Perl_functions)
(Python_functions, Cobol_paragraphs, Pascal_functions)
(Lisp_functions, Postscript_functions, Scheme_functions)
(TeX_functions, Prolog_functions, Erlang_functions): Use it.
(Cobol_paragraphs, Postscript_functions, TeX_functions)
(Prolog_functions, Erlang_functions): Use a local variable instead
of the global variable dbp.
(Pascal_functions, L_isquote, Scheme_functions): Use GNU coding
standard indentation.
* etags.c (Python_suffixes, lang_names, Python_functions):
Python support.
(skip_spaces, skip_non_spaces): Utility functions.
(find_entries, takeprec, getit, Fortran_functions, Perl_functions)
(Python_functions, L_getit, Lisp_functions, Scheme_functions)
(prolog_pred, erlanf_func, erlang_attribute): Use them.
(eat_white): Deleted.
* etags.c (CHAR, init): Keep into account non US-ASCII
characters and compilers with default signed chars.
(L_getit): Tag "(defstruct (foo", "(defun (operator" and similar
constructs.
(C_stab_entry): "interface" in Java behaves like "class".
* etags.c (HAVE_NTGUI) [WINDOWSNT]: #undef if HAVE_CONFIG_H.
(main): Put interval syntax here.
(add_regex): And remove it from here.
* etags.c (suggest_asking_for_help): Provide a
meaningful help message with and without LONG_OPTIONS.
* etags.c (<io.h>) [MSDOS]: Include it, don't include string.h.
<stdlib.h, string.h>: Don't test MSDOS when including them.
(white, nonam, endtk): Like elsewhere, use \r instead of \013.
(put_entries): Correctly use %ld instead of %d in printf.
* etags.c (<unistd.h>) [HAVE_UNISTD_H]: Include conditionally, else
declare getcwd if HAVE_GETCWD.
(consider_token): Dead break instruction removed.
1999-10-19 Paul Eggert <eggert@twinsun.com>
Add support for large files. Merge glibc 2.1.2.
* b2m.c, emacsclient.c, emacsserver.c, fakemail.c, make-docfile.c,
* movemail.c, pop.c:
Do not include <stdlib.h>, as <config.h> does this now.
* b2m.c, emacsserver.c, etags.c, profile.c:
Include <config.h> before any system include files.
* emacsclient.c, emacsserver.c, fakemail.c, movemail.c, pop.c,
* test-distrib.c:
(read, write, open, close): Do not undef.
* getopt.c, getopt1.c: Adopt glibc 2.1.2, with the following fix:
(const): Do not define if HAVE_CONFIG_H; that's config.h's job.
* getopt.h: Adopt glibc 2.1.2.
1999-10-15 Dave Love <fx@gnu.org>
* Makefile.in (pop.o): Depend on config.h.
1999-10-11 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* pop.c: Use "pop3" as the POP service name on all platforms,
instead of using "pop" on Unix and "pop3" on Windows NT. "pop3"
has been the standard service name since RFC 1340 was published in
July 1992, so I think it's safe to start using it by default.
1999-09-27 Dave Love <fx@gnu.org>
* make-docfile.c (scan_lisp_file): Fix typo causing infloop.
1999-09-19 Richard M. Stallman <rms@caffeine.ai.mit.edu>
* make-docfile.c (scan_lisp_file): Fix previous changes;
swallow CRLF like just CR or just LF.
1999-09-03 Richard Stallman <rms@gnu.org>
* make-docfile.c: Include config.h not ../src/config.h.
(main, fopen, chdir): Add #undef.
(read_c_string, scan_c_file, skip_white, read_lisp_symbol)
(scan_lisp_file): Handle \r like \n.
1999-08-30 Andreas Schwab <schwab@gnu.org>
* make-docfile.c, fakemail.c: Include <stdlib.h> if available.
* emacsserver.c: Include <stdlib.h> if available. Don't declare
errno if it's a macro.
* test-distrib.c: Include <unistd.h> if available.
1999-08-29 Richard Stallman <rms@gnu.org>
* emacsclient.c (print_help_and_exit): Mention --version.
1999-08-25 Richard M. Stallman <rms@gnu.org>
* emacsclient.c (decode_options): Update version output.
(print_help_and_exit): Update bug report address.
1999-08-13 Richard M. Stallman <rms@gnu.org>
* emacsclient.c (main): Move the dynamic allocation of
system_name outside of the SERVER_HOME_DIR conditional.
* emacsserver.c (main): Likewise.
1999-08-10 Gerd Moellmann <gerd@gnu.org>
* grep-changelog: New.
* Makefile.in (INSTALLABLE_SCRIPTS): Add it.
1999-07-12 Richard Stallman <rms@gnu.org>
* Version 20.4 released.
1999-06-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
* Makefile.in (clean): Remove fns*.el.
1999-06-23 Dave Love <fx@gnu.org>
* etags.c (erlang_attribute): Fix undefined variable usage (after
Potorti).
1999-05-02 Andrew Innes <andrewi@gnu.org>
* movemail.c (main) [WINDOWSNT]: Call ftruncate, which is now
mapped to _chsize.
1999-04-29 Richard M. Stallman <rms@gnu.org>
* emacsclient.c (main, both versions): Use quote_file_name on cwd.
1999-03-30 Dave Love <fx@gnu.org>
* sorted-doc.c (main): Split up tables. Modify the preamble
somewhat.
1999-03-05 Geoff Voelker <voelker@cs.washington.edu>
* makefile.nt: Remove common multiple file compilation commands.
1999-02-26 Richard Stallman <rms@gnu.org>
* Makefile.in (yow): Depend on epaths.h, not paths.h.
* yow.c: Refer to epaths.h.
1999-02-22 Simon Josefsson <jas@pdc.kth.se>
* emacsserver.c (perror_1, fatal_error): Don't compile unless needed.
1999-01-27 Andrew Innes <andrewi@gnu.org>
* makefile.nt: Do make version comparison as strings.
1999-01-25 Richard Stallman <rms@gnu.org>
* emacsclient.c (xmalloc): Fix previous change.
1999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu>
* emacsclient.c (xmalloc): Declare to return long.
1999-01-22 Geoff Voelker <voelker@cs.washington.edu>
* etags.c (etags_getcwd, absolute_filename) [DOS_NT]: Canonicalize
the case of the drive letter.
1999-01-15 Richard Stallman <rms@psilocin.ai.mit.edu>
* emacsserver.c (main): Eliminate arbitrary limit on
length of system_name.
* emacsclient.c (main): Eliminate arbitrary limit on
length of system_name.
(xmalloc): Define unconditionally.
1999-01-12 Darrin B. Jewell <jewell@mit.edu>
* etags.c (relative_filename): Stop backward search at beginning
of string, since non-Unix systems can have absolute paths with no
initial slash.
1998-12-08 Geoff Voelker <voelker@cs.washington.edu>
* makefile.nt: Do string comparision of _NMAKE_VER.
1998-11-03 Theodore Jump <tjump@cais.com>
* makefile.nt: Compile multiple source files when possible.
1998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu>
* Makefile.in: Replace tabs with spaces
when they might confuse some Make versions.
1998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu>
* emacsclient.c (main): Null-terminate system_name.
* emacsserver.c (main): Null-terminate system_name.
1998-09-21 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* movemail.c (popmail, pop_retr) [MAIL_USE_POP]: When displaying
an error message from POP, mention that it's from POP, to
distinguish it from local error messages.
1998-09-04 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* movemail.c [MAIL_USE_POP]: Add the "-r" flag to reverse the
order of messages downloaded from a POP server (e.g., if the
server stores messages in mailboxes in reverse order).
1998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
* Version 20.3 released.
1998-08-11 Paul Eggert <eggert@twinsun.com>
* rcs2log: Update copyright date and bug report address.
(initialize_fullname): Prefer getent if available.
1998-07-30 Paul Eggert <eggert@twinsun.com>
* Makefile.in (REGEXPDEPS, regex.o):
Prepend $(srcdir)/ to rule dependencies outside this dir.
1998-06-09 Andrew Innes <andrewi@harlequin.co.uk>
* etags.c (etags_getcwd) [WINDOWSNT]: Use getcwd on Windows.
1998-06-06 Richard Stallman <rms@psilocin.ai.mit.edu>
* Makefile.in: Properly terminate a comment.
1998-06-01 Andrew Innes <andrewi@mescaline.gnu.org>
* movemail.c (sys_wait): Rename to wait.
* ntlib.h: Undefine _WINSOCKAPI_.
* makefile.nt (LOCAL_FLAGS): Define HAVE_CONFIG_H.
1998-05-30 Geoff Voelker <voelker@cs.washington.edu>
* ntlib.c (getppid): Look for EM_PARENT_PROCESS_ID.
1998-05-01 Andrew Innes <andrewi@harlequin.co.uk>
* movemail.c [WINDOWSNT]: Undefine DISABLE_DIRECT_ACCESS. Force
all file i/o to be in binary mode. Include ntlib.h.
1998-04-27 Andreas Schwab <schwab@delysid.gnu.org>
* make-docfile.c: Include <unistd.h> for chdir.
1998-04-25 Richard Stallman <rms@psilocin.gnu.org>
* etags.c (TEX_decode_env): Don't free the value getenv returns.
1998-04-17 Geoff Voelker <voelker@cs.washington.edu>
* makefile.nt (obj): Update with new files in src.
(clean): Delete patch scratch files, optimized compilation dir.
1998-04-08 Dave Love <fx@gnu.org>
* emacsclient.c: Move inclusion of unistd.h to top, else fails on
Irix6, at least.
1998-04-06 Andreas Schwab <schwab@gnu.org>
Silence -Wimplicit:
* movemail.c: Move cancelations up. Include <stdlib.h> if
available.
* fakemail.c (_XOPEN_SOURCE): Define for declaration of cuserid.
(parse_header): Explicitly declare return type.
* emacsserver.c: Include <unistd.h> if available.
(main, handle_signals, perror_1, fatal_error): Explicitly declare
return types. Add forward declarations.
* emacsclient.c: Include <stdlib.h> and <unistd.h> if available.
Don't declare geteuid.
(print_help_and_exit): Change return type to void. Forward
declare it.
* b2m.c: Include <stdlib.h> if available.
(main): Explicitly declare return type.
1998-04-03 Richard Stallman <rms@psilocin.gnu.org>
* etags.c (put_entries): Use %ld.
* b2m.c (fatal): Declare the arg.
1998-03-26 Richard Stallman <rms@psilocin.gnu.org>
* pop.c (pop_getline): Renamed from getline.
1998-03-05 Richard Stallman <rms@psilocin.gnu.org>
* Makefile.in (install): Use INSTALL_STRIP with INSTALL_PROGRAM
for the utilities.
1998-01-23 Dave Love <d.love@dl.ac.uk>
* etags.c (getit, Cobol_paragraphs, Pascal_functions,
Postscript_functions, prolog_pred, erlang_func, erlang_attribute):
Always make named tags.
(Fortran_functions): Grok BLOCK DATA.
1998-01-23 Andreas Schwab <schwab@gnu.org>
* movemail.c (main): Fix interwoven brace and cpp conditional
nesting.
1997-12-03 Paul Eggert <eggert@delysid.gnu.org>
* movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which quotes
with a '>' any lines starting with "From " read from the POP server,
but leave the code in place, wrapped in #ifdef
MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
because it turns out that something is depending on it. Change
suggested by Paul Eggert <eggert@twinsun.com>.
Convert the character \037 (^_) at the beginning of a line into
the character '^' followed by the character '_', because otherwise
Emacs can't parse the resulting file as a valid BABYL file.
Change suggested by Paul Eggert <eggert@twinsun.com>.
1997-12-03 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* movemail.c, pop.c, pop.h: Allow messages retrieved from the POP
server to contain embedded nulls.
1997-12-02 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which
quotes with a '>' any lines starting with "From " read from the
POP server, but leave the code in place, wrapped in #ifdef
MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
because it turns out that something is depending on it. Change
suggested by Paul Eggert <eggert@twinsun.com>.
Convert the character \037 (^_) at the beginning of a line into
the character '^' followed by the character '_', because otherwise
Emacs can't parse the resulting file as a valid BABYL file.
Change suggested by Paul Eggert <eggert@twinsun.com>.
1997-11-22 Richard Stallman <rms@gnu.org>
* b2m.c: Include getopt.h.
(main): Use getopt_long to handle --version and --help.
* Makefile.in (b2m): Define VERSION. Link with $(GETOPTOBJS).
1997-10-31 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* pop.c (fullwrite): Get rid of an extra call to write. Problem
pointed out by Chiaki Ishikawa.
1997-10-16 Dave Love <d.love@dl.ac.uk>
* etags.c (L_getit): Always make named tags so that Emacs
completion on symbols containing `:' etc. works.
(get_scheme): Likewise.
1997-09-24 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* pop.c: Use system header files instead of declaring C-library
functions explicitly.
1997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* Version 20.2 released.
1997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* Version 20.1 released.
1997-09-02 Andrew Innes <andrewi@harlequin.co.uk>
* makefile.nt (movemail.exe): Link wsock32.lib before LIBS.
* ntlib.c (getpid): Delete function.
1997-08-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* make-docfile.c (scan_lisp_file): Handle custom-declare-variable.
1997-08-26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* emacsclient.c [HAVE_SYSVIPC]: Include errno.h, as in the other case.
(main) [!BSD_SYSTEM]: Fix error message for getcwd failure.
1997-08-14 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* emacsserver.c (main): Use SOCKLEN_TYPE for fromlen, if it is defined.
1997-08-13 Kazushi (Jam) Marukawa <jam@poboxes.com>
* profile.c (get_time): Cast arg to fprintf.
* hexl.c (main): Use %08lx instead of %08x in printf because the
variable named addresses is long.
1997-08-08 Geoff Voelker <voelker@cs.washington.edu>
* makefile.nt (lisp): Update paths to lisp files that have moved.
1997-08-08 Andrew Innes <andrewi@harlequin.co.uk>
* makefile.nt (ctags.obj): New target.
(etags.obj, getopt.obj, make-docfile.obj): Update dependencies.
* ntlib.h: Add includes.
Undo definitions of crt routines from config.h.
1997-08-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* etags.c (Yacc_suffixes, Asm_suffixes): Add some alternatives.
1997-07-22 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* pop.c: Support auto-configuration of both Kerberos V4 and
Kerberos V5 for movemail, including detection of V4 and V5 header
files and libraries.
Include <string.h> when STDC_HEADERS is defined, to get
declarations of string functions.
[KERBEROS5] (socket_connection): Support the current MIT Kerberos
V5 API rather than the old one.
[KERBEROS] (socket_connection): Change a constant name from
SOCKET_ERROR to POP_SOCKET_ERROR to avoid a namespace conflict
with a constant in a header file.
* Makefile.in: Support auto-configuration of both Kerberos V4 and
Kerberos V5 for movemail, including detection of V4 and V5 header
files and libraries.
1997-07-17 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* fakemail.c [HAVE_UNISTD_H]: Include unistd.h.
* etags.c [HAVE_UNISTD_H]: Include unistd.h.
1997-07-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* emacsclient.c [C_ALLOCA] (xmalloc): New function.
1997-07-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* movemail.c (rindex): Add declaration.
1997-07-01 Geoff Voelker <voelker@cs.washington.edu>
* makefile.nt (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
(movemail.exe): Depend upon and link with getopt files.
(obj): Include new source files.
(FACE_SUPPORT, MOUSE_SUPPORT, FLOAT_SUPPORT, WINNT_SUPPORT): Define.
(lisp): Include new and reorganized elisp files.
1997-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* Makefile.in (blessmail): Find blessmail.el in mail subdirectory.
1997-06-25 Paul Eggert <eggert@twinsun.com>
* rcs2log: Don't assign to $0 in awk; some awks don't allow this.
1997-06-14 Karl Heuer <kwzh@gnu.ai.mit.edu>
* b2m.c (readline): Terminate buffer properly when EOF seen.
Test for valid pointer before dereferencing it.
1997-05-30 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* Makefile.in (etags): Remove -DETAGS_REGEXPS, because now it is
defined inside etags.c if HAVE_CONFIG_H is defined.
1997-05-29 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (logical): Type name changed to bool.
(ETAGS_REGEXPS, LONG_OPTIONS) [HAVE_CONFIG_H]: #define them.
(<getopt.h>) [LONG_OPTIONS]: Include conditionally.
(getopt_long) [!LONG_OPTIONS]: Redefine as macro.
(main): Accepted options depend on ETAGS_REGEXPS and LONG_OPTIONS.
(longopts): New long options without short counterpart are
globals, members, no-globals, no-members. Regexp options are now
defined conditionally to ETAGS_REGEXPS.
(print_help): Updated.
1997-05-22 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (C_entries): Use "." instead of "::" for Java.
(consider_token): is_func renamed to is_func_or_var.
(C_entries): is_func renamed to funorvar.
(C_entries): Initialise tok.named.
(sym_type, C_stab_entry, consider_token): st_C_ignore is used to
get rid of "import", "package" and "friend".
(fvdef): Renamed from funcdef. Also some constants renamed. All
users changed.
(C_entries): Make separate tags for variables separated by comma.
(globals, members): New flags.
(main, C_entries): Use them.
(make_C_tag, C_entries): Make tok a global variable.
1997-05-16 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (funcdef): New vignore constant.
(consider_token, C_entries): Use it to tag global variables.
(print_help): Update for global variables.
(consider_token, C_entries): Set the len member of token_name.
(prolog_pred): Cleanup according to GNU coding standards.
(Cobol_suffixes, lang_names, Cobol_paragraphs): Cobol support.
(prolog_white, erlang_white): Renamed to eat_white, callers changed.
1997-05-15 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (CHARS, CHAR): New constant and macro.
(iswhite, begtoken, intoken, endtoken): Use them.
(notinname, _nin, nonam): New macro, array, string.
(init): Cleanup and init _nin.
(new_pfnote): New function.
(make_C_tag) [traditional_tag_style]: Use it.
(traditional_tag_style): Constant set to TRUE for now.
1997-05-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (C_entries, Pascal_functions): Cleanup.
(TeX_functions): NULL as a function arg needs a cast.
(Erlang_functions, erlang_func, erlang_attribute): Cleanup.
1997-05-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (TeX_functions): Cleaned up.
(tex_getit): Removed.
1997-05-13 Paul Eggert <eggert@twinsun.com>
* rcs2log (files): When computing arguments automatically, ignore
non-files within the RCS subdirectory.
1997-05-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (C_JAVA): New #define.
(Cjava_suffixes): .java is Java.
(Cjava_entries): New function.
(lang_names): Add Java.
(sym_type): Add st_C_javastruct for Java.
(C_stab_entry): Add `extends' and `implements' keywords.
(consider_token, C_entries): Recognise Java structures.
1997-05-12 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (Cplusplus_suffixes): .pdb is Postscript with C syntax.
(Postscript_suffixes): .ps is Postscript.
(lang_names): Add Postscript.
(Postscript_functions): New function.
(TEX_decode_env): Close minor memory leak.
(just_read_file): Correct the char number of the tag.
1997-05-11 Paul Eggert <eggert@twinsun.com>
* rcs2log (loginFullnameMailaddrs, logins, rlog_options, files):
Don't prepend $nl since this causes some shells to generate the
empty string when IFS is $nl.
(printlogline): Use SOH (octal code 1), not CR, since some
PC-based shells mishandle CR.
(initialize_fullname): Set NIS_PATH to the empty string before invoking
nismatch, in case it's set to some nonstandard value.
1997-05-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* pop.c (getline): Don't miss CRLF pairs when the CR and LF are
read in separate blocks.
1997-04-30 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c [TeX_named_tokens]: Set to FALSE if undefined.
(struct linebuffer): New member `len' is the length of the string.
(find_entries, Pascal_functions, TeX_functions, TEX_getit):
Use it instead of strlen.
(TEX_getit): Declare and define unconditionally as static.
(TeX_functions): Use if instead of #if TeX_named_tokens.
(add_regex): Set RE_INTERVALS flag for regex compilation.
(substitute): Code cleanup.
(readline_internal): Code cleanup, set new member `len'.
(readline): Bug corrected.
1997-04-23 Geoff Voelker <voelker@cs.washington.edu>
* makefile.nt: Change references of windowsnt.h to ms-w32.h.
(obj): Change references of nt*.c files to w32*.c files.
1997-04-15 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (xnew): Add support for debugging with chkmalloc.
(error): Use this instead of printf whenever possible.
(main): Only call xnew after having initialised progname.
(substitute): Bad memory corruption error corrected.
1997-04-08 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (add_regex): Undo previous change.
(relative_filename): Small memory leak closed.
(absolute_filename): Cleaned up the code, possibly closing a bug.
(absolute_dirname): Always return a newly allocated string.
1997-03-21 Paul Eggert <eggert@twinsun.com>
* rcs2log (files): Ignore files in RCS directory whose names are
of the form ,*, or *_; they are probably RCS lock files.
Also, ignore files named .rcsfreeze.log or .rcsfreeze.ver;
they are used by rcsfreeze.
1997-03-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (add_regex): Reset *putbuf before using it.
1997-02-23 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* movemail.c (popmail): Remove some unnecessary function
declarations.
(popmail, pop_retr): Since popmail always passes mbx_write and mbf
into pop_retr, there's no reason to pass in mbx_write, and the
file argument can be declared FILE * explicitly. This fixes a
compilation problem on systems with 64-bit pointers.
1997-02-13 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
* movemail.c: Delete duplicate inclusion of fcntl.h
and duplicate #undefs of open, read, write, close.
1997-01-20 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
* movemail.c (main): Do not display "[POP-password]" in the usage
message when movemail is compiled without POP support.
(main, popmail): Add the optional "-p" argument, which causes
movemail to leave mail in the inbox after copying it into the
output file.
* Makefile.in (movemail): Link with getopt.
1997-01-20 Paul Eggert <eggert@twinsun.com>
* rcs2log (--help, --version): New options, per GNU coding standards.
(Copyright, Help, Id): New variables, for above.
(rlog): Use -q option with cvs log, to avoid useless chatter.
Treat logs of "Initial revision" (RCS) or "file F was initially added
on branch B." (CVS) as if they said "New file.", for consistency with
change log entries.
1997-01-01 Paul Eggert <eggert@twinsun.com>
* vcdiff (PATH): Add /usr/xpg4/bin,
where XPG4 SCCS hangs out in Solaris 2.5.
(sid1): Don't use bare -r, since XPG4 `get' does not allow it.
1996-12-19 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
* etags.c (streq, strneq): Use == NULL rather than !.
1996-12-18 Jonathan I. Kamens <jik@annex-1-slip-jik.cam.ov.com>
* Makefile.in (LIBMAIL): New macro. Conditionally includes -lmail.
(movemail): Use LIBMAIL, to link against -lmail.
* movemail.c: Include maillock.h (conditionally).
Remove a redundant inclusion of <stdio.h>.
(MAIL_USE_MAILLOCK): New macro, conditionally defined.
(main): Add variable spool_name.
Support the usage of maillock and mailunlock to
lock and unlock mailboxes.
(mail_spool_name): New function.
* movemail.c: Fix an uninitialized variable which could cause
movemail to exit with an error status incorrectly on systems which
use lock files rather than a system locking function to lock
mailboxes.
1996-12-16 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* pop.c (socket_connection): Free realhost after using it.
1996-12-04 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (C_entries): Test tok.valid. This handles some
particular cases involving function declarations that failed.
1996-11-22 Charles Hannum <mycroft@gnu.ai.mit.edu>
* pop.c (socket_connection):
gethostbyname may return a pointer to static data.
krb_realmofhost can clobber it. So copy it.
1996-11-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (pfnote, fatal, error): Callers using a NULL pointer
must cast it to (char *) because we have no prototypes.
(make_C_tag): Macro deleted, new function.
(C_entries): Calls to make_C_tag macro changed to call function.
1996-11-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (grow_linebuffer): New function.
(GROW_LINEBUFFER): Macro deleted. All callers changed.
(make_tag): Macro renamed to make_C_tag. All callers changed.
(<stdlib.h>, <string.h>) [STDC_HEADERS]: New #include's.
(Prolog_functions): prolog_skip_comment was called with wrong
number of arguments.
(xrealloc): fatal was called with wrong number of arguments.
1996-11-08 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (relative_filename): Bug corrected.
(etags_getcwd): Avoid warning of unused variable.
(C_entries, consider_token): Added support for enum labels.
1996-11-03 Paul Eggert <eggert@twinsun.com>
* rcs2log: When processing cvs log output, remove `Attic/' from
repository file names.
1996-10-22 Karl Heuer <kwzh@gnu.ai.mit.edu>
* emacsserver.c: Fix 1996-09-02 change.
1996-10-12 Paul Eggert <eggert@twinsun.com>
* rcs2log (rlog_options): Look for ' option' rather than 'unknown
option', since CVS says 'invalid option'.
(datearg): Use the empty string, not '-d>1970-01-01', to extract all
revisions, since some hosts reject 1970-01-01 when east of UTC.
(date): Remove.
1996-10-06 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
* etags.c (etags_getcwd) [WINDOWSNT]: Convert backslashes to slashes.
1996-10-02 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (print_version): Print copyright info.
* etags.c (print_help): Print the bug reporting address.
(main): Use return as the last instruction, instead of exit.
* etags.c (main): Don't open the tags file in cxref mode.
1996-09-29 Dave Love <d.love@dl.ac.uk>
* rcs2log (date): Make default format acceptable to CVS post v1.8
as well as earlier CVSs and RCS.
1996-09-29 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
* movemail.c (main): If the lock call fails with EBUSY or
EAGAIN, retry a few times.
1996-09-25 Paul Eggert <eggert@twinsun.com>
* rcs2log (rlog_options): Use $rlog, not rlog, when deciding
whether to append -zLT.
1996-09-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
* fakemail.c: Replaced symbol BSD with BSD_SYSTEM.
* emacsclient.c, movemail.c: Likewise.
1996-09-09 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
* emacsclient.c (longopts): Change nowait to no-wait.
(print_help_and_exit): Fix option name; upcase metavars.
1996-09-06 Erik Naggum <erik@naggum.no>
* emacsserver.c (main): Declare `fromlen' as size_t.
1996-09-02 Eli Zaretskii <eliz@is.elta.co.il>
* etags.c (etags_getcwd): Use getcwd if available even if MSDOS.
1996-09-02 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
* emacsclient.c (quote_file_name): Quote with &, not \.
Quote `-' only at start of file name. Terminate the value string.
* emacsserver.c: Include signal.h properly;
delete the duplicate includes for it.
* emacsserver.c: On fatal signal, delete socket-file:
* emacsserver.c: Include signal.h.
(xmalloc, fatal, error): New functions.
(delete_socket, handle_signals): New functions.
(progname, socket_name): New variables.
[HAVE_SOCKETS] (main): Call handle_signals; set the new variables.
1996-09-01 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
* emacsclient.c (quote_file_name): New function.
(main, both versions): Use quote_file_name.
(decode_options): Don't return a value.
(main, both versions): Use optind.
Don't check for -nowait here.
* emacsclient.c (decode_options): New function.
(main, both versions): Call decode_options.
(print_help_and_exit): New function.
(VERSION): New macro.
* Makefile.in (emacsclient): Link with getopt.
Add -DVERSION so emacsclient knows its version number.
1996-08-31 Geoff Voelker <voelker@cs.washington.edu>
* makefile.nt (lisp): Include dos-nt.elc.
1996-08-31 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
* Makefile.in (blessmail): Use $srcdir to find blessmail.el.
1996-08-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* emacsclient.c (both versions): Handle -nowait and --nowait
by sending data to the server.
1996-08-26 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
* Makefile.in (INSTALL_STRIP): New variable.
(${archlibdir}): Use INSTALL_STRIP.
* Makefile.in (MOVE_LIBS): Use conditionals on KERBEROS,
HAVE_LIBKRB, HAVE_LIBDES, HAVE_LIBCOM_ERR to set it up.
* pop.c: Reverse conditional in previous change.
1996-08-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
* pop.c: Include des.h krb.h with no dir name if SOLARIS2.
1996-08-24 Paul Eggert <eggert@twinsun.com>
* rcs2log: Use ISO 8601 date format, with time zone appended
if change-log-time-zone-rule is non-nil, instead of
traditional Unix date format.
(datearg): When computing default from ChangeLog, handle ISO format
dates in addition to old-fashioned dates from Emacs 19.31 and earlier.
Don't worry about hh:mm:ss since the resolution is now by day.
Use empty datearg, not empty rlog_options, to decide whether to pass
"$datearg" option to $rlog.
(logTZ): New variable, set to TZ specified by change-log-time-zone-rule.
(month_data): Remove `mo'; no longer needed.
(rlog_options): Use -zLT for localtime output, if `rlog' supports it.
Match `revision' line of rlog output more accurately.
Add -c, -v options.
1996-08-23 Eli Zaretskii <eliz@is.elta.co.il>
* hexl.c: Include <config.h>, so DOS_NT is defined on MSDOS.
1996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* Version 19.33 released.
1996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* Version 19.32 released.
1996-07-23 Andrew Innes <andrewi@harlequin.co.uk>
* etags.c (readline_internal) [DOS_NT]: Don't include CRs when
computing character positions in source files.
1996-07-16 Andrew Innes <andrewi@harlequin.co.uk>
* makefile.nt (clean): Use OBJDIR macro.
1996-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
* cvtmail.c, sorted-doc.c, yow.c, emacsserver.c: Undo previous change.
1996-07-15 David Mosberger-Tang <davidm@AZStarNet.com>
* cvtmail.c, sorted-doc.c, yow.c [__GNU_LIBRARY__]: Use <string.h>.
* emacsserver.c (main) [__GNU_LIBRARY__]: Use size_t for fromlen.
* etags.c, fakemail.c, profile.c: Declare main as int, not void.
1996-07-15 Andrew Innes <andrewi@harlequin.co.uk>
* ntlib.h: Correct return type of getwd.
* ntlib.c (getwd): Correct return type.
1996-07-02 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
* emacsserver.c (main) [HAVE_SOCKETS]: Call rewind before writing
to infile.
1996-07-01 Andrew Innes <andrewi@harlequin.co.uk>
* makefile.nt: Remove all references to wakeup.
1996-06-28 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (C_stab_entry): New keywords for C++ namespace, bool,
explicit, mutable, typename.
1996-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* emacsclient.c (main) [HAVE_SOCKETS]: Use two separate stdio
streams, one for sending and one for reading the reply.
1996-06-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* Makefile.in (timer, timer.o, getdate.o, $(srcdir)/getdate.c)
(wakeup): Target deleted.
(UTILITIES): Delete wakeup and timer.
* wakeup.c, timer.c, getdate.y, getdate.c: Files deleted.
1996-06-11 Geoff Voelker <voelker@cs.washington.edu>
* etags.c (etags_getcwd) [DOS_NT]: Change conditional to MSDOS only.
* makefile.nt (ETAGS_CFLAGS): Define HAVE_GETCWD macro.
1996-06-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
* etags.c (main): Copy cwd when appending slash.
1996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
* Version 19.31 released.
1996-05-17 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
(Pascal_functions): Increase linecharno by the correct number of
chars, inline the GET_NEW_LINE macro and delete its definition.
1996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
* makefile.nt (OBJDIR, BLD): Remove macro definitions.
1996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
* makefile.nt (LOCAL_FLAGS): Include path to NT shadow includes.
(movemail.exe, fakemail.exe): Now built under Win32.o.
* ntlib.c: Include ntlib.h.
(nt_sleep): Rename to sleep.
(getwd): Return directory.
(getlogin, cuserid, getuid, setuid, getpwuid, getpass, fchown,
sys_ctime, sys_fopen): New functions.
* ntlib.h: New file.
1996-04-29 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
* pop.c (SEND, RECV): Renamed from send, recv.
(pop_open, pop_trash): Make the trash_started code unconditional.
(socket_connection): Delete casts to void.
1996-04-28 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
* movemail.c (DIRECTORY_SEP, IS_DIRECTORY_SEP): Definitions
copied from lisp.h.
1996-04-22 Andrew Innes <andrewi@harlequin.co.uk>
* fakemail.c [WINDOWSNT]: Include ntlib.h.
* hexl.c [DOSNT]: Include fcntl.h.
[WINDOWSNT]: Include io.h.
(main) [MSDOS]: Change conditional to DOS_NT.
* movemail.c (access, unlink) [WINDOWSNT]: Macros undefined.
(fork, syswait, DISABLE_DIRECT_ACCESS) [WINDOWSNT]: Macros defined.
[WINDOWSNT]: Include locking.h.
(main): Update usage message. Use IS_DIRECTORY_SEP.
(main) [DISABLE_DIRECT_ACCESS]: Don't check access if defined.
(main) [WINDOWSNT]: Invoke locking instead of flock.
(main) [MAIL_USE_SYSTEM_LOCK && WINDOWSNT]: Emulate ftruncate.
(main) [MAIL_USE_POP]: Pass password to popmail if used.
Include winsock.h; don't include unix inet headers.
(popmail): Add password argument and pass it to pop_open.
Open output file in binary mode.
* pop.c [WINDOWSNT]: Include winsock.h and ntlib.h.
Macro SOCKET_ERROR undefined.
Don't declare h_errno.
[!WINDOWSNT]: Define macros recv and send.
[!WINDOWSNT] (POP_SERVICE): Change to pop3.
(pop_open) [WINDOWSNT]: Initialize trash_started.
(have_winsock) [WINDOWSNT]: New variable.
(socket_connection) [WINDOWSNT]: Initialize winsock.
(socket_connection): Use closesocket instead of close.
(getline): Use recv instead of read.
(fullwrite): Use send instead of write.
(pop_trash): Use closesocket instead of close.
(pop_trash) [WINDOWSNT]: Cleanup winsock.
Check if being called recursively by sendline.
* pop.h (struct _popserver): New field trash_started.
* wakeup.c [HAVE_CONFIG_H]: Only include config.h when defined.
1996-04-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* hexl.c (main) [DJGPP v2]: Don't change to binary for a tty.
1996-04-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* etags.c [WINDOWSNT]: Include io.h.
1996-04-10 Geoff Voelker <voelker@cs.washington.edu>
* makefile.nt (CTAGSOBJ): Compile with regexp support.
1996-04-09 Eli Zaretskii <eliz@is.elta.co.il>
* hexl.c [DJGPP v2]: Include io.h.
(main) [DJGPP v2]: Switch standard streams to binary with setmode.
* b2m.c (main) [MSDOS]: Switch standard streams to binary under
DJGPP v2.
1996-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* etags.c (absolute_filename): Use absolutefn.
1996-03-31 Eli Zaretskii <eliz@is.elta.co.il>
* etags.c (absolutefn) [DOS_NT]: Support Novell drives whose drive
letter isn't an alphabetic character.
(main) [DOS_NT]: Use binary mode on redirected `stdout'.
(process_file) [DOS_NT]: Convert all slashes to forward style.
(absolute_filename) [DOS_NT]: Emit error message for relative
paths with a drive letter.
(absolute_filename) [DOS_NT]: Handle absolute pathnames with
DOS/NT drive letters which try to reference the parent of the root.
(absolute_dirname) [DOS_NT]: Convert all slashes to forward style.
1996-03-27 Geoff Voelker <voelker@cs.washington.edu>
* makefile.nt: Change uses of del to $(DEL).
1996-03-22 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (just_read_file): Reset lineno and charno on entry.
1996-03-15 Anders Lindgren <andersl@csd.uu.se>
* etags.c: Prolog language totaly rewritten.
(Prolog_functions): Rewritten from scratch.
(skip_comment, prolog_getit): Removed.
(prolog_skip_comment): New function, like old skip_comment.
(prolog_pred, prolog_atom, prolog_white): New functions.
(erlang_func, erlang_attributes): Forward declarations added.
(erlang_atom): Check if backslash ends line inside quoted atom.
1996-03-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
* etags.c (absolutefn): DOS_NT version corrected.
(main): Append "/" to the dir name only if not already there.
(print_help): Explain the absolute/relative file name issue.
1996-03-08 Anders Lindgren <andersl@csd.uu.se>
* etags.c: New Language Erlang added.
(Erlang_functions, erlang_func, erlang_attribute, erlang_atom)
(erlang_white): New functions.
(Erlang_suffixes): New suffix list.
(lang_names): Erlang entry added.
(prolog_getit): Accepts headers spanning several lines.
Always name tags.
(Prolog_functions): Removed incorrect compensation for
newline characters.
(readline_internal): Zero-terminate last line.
1996-03-20 Mike Long <mike.long@analog.com>
* b2m.c (main): Initialize progname variable before using it.
Quote `username' in From_ header.
1996-03-18 Geoff Voelker <voelker@cs.washington.edu>
* ntlib.c (getpid): New function.
1996-02-21 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
* emacsclient.c (main, both definitions):
Print a newline for normal termination.
1996-02-21 Noah Friedman <friedman@prep.ai.mit.edu>
* tcp.c (main): Convert port to network byte order.
1996-01-20 Karl Heuer <kwzh@gnu.ai.mit.edu>
* pop.c (pop_retrieve, getline): Avoid type clashes.
1996-01-19 Karl Heuer <kwzh@gnu.ai.mit.edu>
* etags.c (enum sym_type, anonymous enum): Delete final comma.
1996-01-15 Paul Eggert <eggert@twinsun.com>
* rcs2log (initialize_fullname): Add support for NIS+.
(hostname): Fully qualify the default hostname with the domainname
if the hostname lacks a `.'.
1996-01-10 Karl Heuer <kwzh@gnu.ai.mit.edu>
* etags.c (consider_token): Fix typo in expression.
1996-01-04 Paul Eggert <eggert@twinsun.com>
* etags.c (substitute): Fix spelling in message.
1996-01-03 George V. Reilly <georger@microcrafts.com>
* makefile.nt (etags, ctags): Compile with regexp support.
(make-docfile, wakeup, etags, ctags, hexl): Ensure build
subdirectory exists before compiling.
1996-01-02 Karl Heuer <kwzh@gnu.ai.mit.edu>
* emacsserver.c (main): Do chmod based on existing permission.
1995-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Makefile.in (install): Turn on read/execute permission.
1995-12-03 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
* Makefile.in (LIB_STANDARD_LIBSRC): Use this instead of LIB_STANDARD.
(LOADLIBES): Use LIB_STANDARD_LIBSRC.
1995-12-01 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
* Makefile.in (THIS_IS_MAKEFILE): Renamed from THIS_IS_YMAKEFILE.
1995-12-07 Francesco Potortì <pot@cnuce.cnr.it>
* etags.c (pfnote): Don't make a tag for ctags if there is no name.
(getit, Asm_labels, Perl_functions, Pascal_functions, L_getit,
get_scheme, prolog_getit): Name the tag in ctags mode.
(pfnote): Truncate ctags lines to 50 chars, like it worked once.
(Perl_interpreters): Accept "@PERL@" as an interpreter.
(suggest_asking_for_help): New function.
(main, get_language_from_name): Use suggest_asking_for_help.
(main): Let get_language_from_name make language existence check.
(streq, strneq): Check the arguments #if DEBUG.
1995-12-06 Francesco Potortì <pot@cnuce.cnr.it>
* etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
(gperf): Added keywords for Objective C and GNU macros.
(sym_type): Added values to account for Objective C and GNU macros.
(begtk): The '@' character can start a token.
(objdef, methodlen, objtag): New variables for Objective C.
(consider_token, C_entries): Added code for Objective C.
(plain_C_suffixes): Add .m and .lm for Objective C.
(Yacc_suffixes): Add .ym for Objective yacc.
(GROW_LINEBUFFER): New macro.
(consider_token, C_entries, Pascal_functions): Use the new macro.
(consider_token): Take one more argument. Caller changed.
(consider_token): Use the hashing function to spot GNU macros.
(C_entries): Consider // as a comment start even in plain C for
the sake of Objective C parsing.
1995-12-04 Francesco Potortì <pot@cnuce.cnr.it>
* Makefile.in (ctags): Depend on etags only for simplicity;
compile with regexp support enabled.
1995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Version 19.30 released.
1995-11-22 Geoff Voelker <voelker@cs.washington.edu>
* makefile.nt (DOC, clean): Don't use switches to del not
supported by Windows 95.
1995-11-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Makefile.in (regex.o): Depend on ../src/config.h.
1995-11-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Makefile.in (LIB_STANDARD): Extract this as in src/Makefile.in.
(LOADLIBES): Use LIB_STANDARD.
1995-11-07 Kevin Gallo <kgallo@microsoft.com>
* makefile.nt (DOC): Include strings from w32term.c, w32xfns.c,
w32fns.c, w32faces.c, w32select.c, w32menu.c, w32reg.c; remove
Windows 95 conditional.
1995-11-06 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (get_lang_from_name, get_lang_from_interpreter,
get_lang_from_suffix): New functions.
(get_language): Function deleted.
(lang_entry): Two members added to struct.
(lang_names): Reflect the new layout of lang_entry.
(print_language_names, main, find_entries): Use the new functions.
(find_entries): Look at the first line for #! if no language.
(C_entries): Invalidate the token when funcdef is reset.
(Perl_functions): New function.
(lang_suffixes): .pl and .pm are Perl suffixes.
1995-11-02 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (lowcase): Use the standard tolower function.
(substitute): Remove some wrong and some useless code related with
escape '\' character in regexp replacement string.
(TEX_defenv): Added part, appendix, entry, index. Removed typeout.
(lang_suffixes): New suffixes: .hpp for C++; .f90 for Fortran;
.bib, .ltx, .TeX for TeX (.bbl, .dtx removed); .ml for Lisp;
.prolog for prolog (.pl removed).
(massage_name, etags_getcwd): Use lowcase instead of tolower.
(C_entries, find_entries): Added comments about memory leakage.
(add_node): Dead code removed.
1995-10-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Makefile.in (getdate.o, movemail.o): Specify -Demacs.
(ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Delete -Demacs.
1995-08-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* test-distrib.c: Add #undef for open, close, read, write.
1995-08-23 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* test-distrib.c [HAVE_CONFIG_H]: Include config.h.
[! O_RDONLY]: Define it to zero.
(main): Use O_RDONLY instead of explicit zero.
1995-08-17 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (Pascal_functions): Close comment bug corrected.
(add_node): Correctly compare node file names.
(Pascal_functions): Correctly allocate and free memory for tline.
(pfnote): Put the definition of fp in the innermost block.
(NODE): `named' member removed.
(pfnote, free_tree, put_entries, total_size_of_entries): Do not
use the `named' member, check whether `name' is NULL instead.
(pfnote): `named' argument removed, all callers changed.
(getit, Asm_labels, Pascal_functions, L_getit, get_scheme,
TeX_functions, TEX_getit, prolog_getit): Useless string allocation
removed from pfnote call, some code cleanup.
(relative_filename): Free temporary space allocated by concat.
1995-08-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Makefile.in (getdate.c): New target.
(getdate.o): Just compile getdate.c.
1995-08-12 Karl Heuer <kwzh@gnu.ai.mit.edu>
* fakemail.c (xrealloc): Change cast to match return type.
1995-08-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* fakemail.c (xmalloc, xrealloc): Use return-type long *.
1995-08-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* movemail.c (main): Fix previous change.
Add error check for empty OUTNAME.
1995-08-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* movemail.c (main): Mention lock file name in error message.
1995-07-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* profile.c (gettimeofday): New function, defined if necessary.
1995-07-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Makefile.in: Renamed from Makefile.in.in.
(distclean): Delete Makefile.c, not Makefile.in.
1995-07-17 Michael Shields <shields@tembel.org>
* Makefile.in.in (tags): Synonym for `TAGS'.
1995-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
* Makefile.in.in (install, maybe-blessmail): Don't cd ..;
configure has already set $(INSTALL) to the proper relative path.
1995-06-27 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (plain_C_entries): New function.
(lowcase): New macro.
(tail, Fortran_functions, Pascal_functions): Use new macro lowcase.
(lang_suffixes): New suffix ".pc" for Pro*C files.
(consider_token): Don't tag all tokens beginning with DEFUN & Co..
(tail): Look for the end of the token when comparing.
(takeprec): Since now tail behaves differently, use strneq.
1995-07-08 Paul Eggert <eggert@twinsun.com>
* rcs2log (datearg): Separate date from time with comma, not space,
to work around CVS 1.5 bug.
(CVSROOT): Don't abort when unset if repository is absolute.
1995-07-07 Paul Eggert <eggert@twinsun.com>
* rcs-checkin, rcs2log, vcdiff:
Replace `#!/bin/sh' with `#! /bin/sh', for benefit of systems
that interpret `#! /' as a 4-byte magic number.
1995-06-29 Jonathan I. Kamens <jik@cam.ov.com>
* movemail.c (main) [MAIL_USE_POP]: When a user specifies a
mailbox with "po:mailbox", the mailbox is everything after the
"po:" prefix.
1995-06-28 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* emacsserver.c: Make all error messages start with `Error: '.
(fatal_error, perror_1): New functions, use throughout.
1995-06-28 Paul Eggert <eggert@twinsun.com>
* rcs2log (CVSROOT, repository):
Allow remote repositories a la CVS 1.4.
1995-06-27 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (plain_C_entries): New function.
(lowcase): New macro.
(tail, Fortran_functions, Pascal_functions): Use new macro lowcase.
(lang_suffixes): New suffix ".pc" for Pro*C files.
(consider_token): Don't tag all tokens beginning with DEFUN & Co..
(tail): Look for the end of the token when comparing.
(takeprec): Since now tail behaves differently, use strneq.
1995-06-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* movemail.c (main): Add newline in usage message.
1995-06-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* make-docfile.c (scan_file): Make sure it never looks at filename[-1].
1995-06-21 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (find_entries): Rewind before rereading the input file.
1995-06-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Version 19.29 released.
* make-docfile.c (main) [MSDOS]: Do set _fmode.
This undoes part of the previous change.
1995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* make-docfile.c (main): On MSDOS, don't change stdout
to binary, and insist on an -o option.
1995-06-13 Geoff Voelker <voelker@cs.washington.edu>
* etags.c (process_file,absolute_filename): Handle filenames
starting with a drive letter.
* makefile.nt (install): Copy wakeup.exe properly.
1995-06-08 Karl Heuer <kwzh@gnu.ai.mit.edu>
* make-docfile.c [MSDOS]: #undef chdir.
1995-06-04 Paul Eggert <eggert@twinsun.com>
* rcs2log (output_authors): Allow ':' in time zone,
as per ISO 8601 and RCS 5.6.8 beta.
1995-05-29 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (etags_getcwd): Undo the /bin/pwd change. It may raise
compatibility problems.
1995-05-26 Richard Stallman <rms@gnu.ai.mit.edu>
* etags.c (etags_getcwd): Don't use #elif.
Have just one function body.
1995-05-25 Geoff Voelker <voelker@cs.washington.edu>
* makefile.nt (LIBS): Use BASE_LIBS.
(make-docfile.exe,hexl.exe,wakeup.exe,etags.exe): Don't depend
upon LIBS.
(DOC): Use del instead of rm.
(DOC) [WINDOWS95]: Use DOC.
(clean): Handle MSVC aux files.
(config.h,paths.h): Use $(CP) instead of cp.
(config.h): Use $(CONFIG_H)
(make-docfile.obj): Depend upon config.h.
Clean up comments.
1995-05-23 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (etags_getcwd): Use /bin/pwd instead of pwd because the
former gives the true path even in the presence of simlinks.
1995-05-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* movemail.c (main): Increase lock timeout to five minutes.
1995-05-06 Geoff Voelker <voelker@cs.washington.edu>
* makefile.nt (obj): Use .c files.
1995-05-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* make-docfile.c: Include config.h.
(NO_SHORTNAMES): New definition.
(xmalloc): Return long *.
* etags.c (C_entries): Cast result of xrealloc.
(xmalloc, xrealloc): Declare them to return long *.
* b2m.c (xmalloc, xrealloc): Declare them long *.
* movemail.c (xmalloc): Declare it to return long *.
1995-04-30 Paul Eggert <eggert@twinsun.com>
* rcs2log (datearg): If rlog options are specified explicitly,
omit the implicit '-d>DATE' option.
(repository, rlog): Allow absolute paths to CVS repositories.
Look only at the first line of CVS/Repository.
1995-04-26 Karl Heuer <kwzh@gnu.ai.mit.edu>
* Makefile.in.in (extraclean): Depend on maintainer-clean, not
realclean.
1995-04-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Makefile.in.in [REGEXP_IN_LIBC] (REGEXPOBJ, REGEXPDEPS):
Alternative (empty) definitions.
1995-04-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* emacsclient.c (main): Add argv[0] to an error message.
1995-04-13 Karl Heuer <kwzh@gnu.ai.mit.edu>
* emacsclient.c (main): Improve error handling.
* cvtmail.c (main, skip_to_lf): Improve error handling.
(sysfail): New function.
* b2m.c (main): Check for trailing ", " before trying to delete it.
1995-04-12 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* Makefile.in.in (all): Build test-distrib and make-docfile.
* make-docfile.c (scan_c_file): At end, restore file name last char
to its original value.
1995-04-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* emacsclient.c, emacsserver.c: Test NO_SOCKETS_IN_FILE_SYSTEM.
1995-04-08 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Makefile.in.in (BASE_CFLAGS): Renamed from ALLOCA_CFLAGS.
(alloca.o, regex.o): Use BASE_CFLAGS.
1995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* emacsclient.c [Berkeley sockets version] (main): Declare getcwd.
1995-04-04 Karl Heuer <kwzh@gnu.ai.mit.edu>
* Makefile.in.in (aixcc, aixcc.c): Targets deleted.
(SOURCES, distclean): Removed obsolete references to aixcc.
1995-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* aixcc.lex: File deleted--surely obsolete now.
1995-03-23 Paul Eggert <eggert@twinsun.com>
* rcs2log (output_authors): Replace /[/]/ by /[\/]/, for
portability to mawk and nawk.
1995-03-21 Paul Eggert <eggert@twinsun.com>
* rcs2log: Treat -u "login:fullname:mailaddr" as if it were
-u "login<tab>fullname<tab>mailaddr".
1995-03-21 Paul Eggert <eggert@twinsun.com>
* rcs2log: Add -u "login<tab>fullname<tab>mailaddr" option, which
replaces the (now obsolescent) -n login fullname mailaddr option.
Add -R option for recursive rlog.
(AWK): New environment variable (default `awk') for awk program name.
(output_authors, tab, loginFullnameMailaddrs, recursive): New vars.
Quote authors and fullnames correctly.
Don't omit path from repository root when logging CVS files.
1995-03-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* emacsclient.c, emacsserver.c: Use BSD sockets whenever available,
even if HAVE_SYSVIPC.
* emacsclient.c (main): Use getcwd if not BSD.
1995-03-13 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (process_file): Free (filename) after using it.
(readline_internal): Do not access the char before start of line.
1995-02-22 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (C_entries): token_saved removed. Initialise tok.valid and
savetok.valid. Mark token as valid when it is initialised.
(make_tag): Make token only if token is valid and reset validity.
(CNL_SAVE_DEFINEDEF): Test for savetok.valid instead of token_saved.
(TOKEN): Added a new member: valid.
1995-02-15 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (C_entries): Bug corrected in xrealloc of token_str.
(main): Do not read twice the last filename in the stdin file list.
1995-02-14 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (C_entries): Initialise the new members of TOKEN.
(C_entries): Do not allocate a new space for each token found by
consider_token. Let make_tag do that instead.
(make_tag): Since now TOKEN has memory of where it is taken from,
this new macro substitutes both make_tag_from_new_lb and
make_tag_from_oth_lb. All callers changed.
(TOKEN): Add linepos and buffer members.
(main): Initialise token_str.
(lang_extensions): Recognise .c++ and .h++ as C++ file suffixes.
(token_str): New global variable used by C_entries.
1995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
* Makefile.in.in (maintainer-clean): Renamed from realclean.
1995-02-01 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (pfnote): Initialise been_warned in the node.
(C_entries): Removed a speed hack for the sake of clarity.
1995-01-18 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (longopts, print_help, main): Use -I as abbreviation
for the --ignore-indentation option.
(main): Do not print an error message for unknown options.
1995-01-12 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (FILEPOS, GET_CHARNO, GET_FILEPOS, max, LINENO): Deleted.
(append_to_tagfile, typedefs, typedefs_and_cplusplus)
(constantypedefs, update, vgrind_style, no_warnings)
(cxref_style, cplusplus, noindentypedefs): Were int, now logical.
(permit_duplicates): Was a var, now a #define.
(filename_lb): Was global, now local to main.
(main): Open the tag file when in cxref mode.
Use a BUFSIZ size buffer for making the shell commands.
Look at the return value from the system routine.
Exit when cannot open the tag file.
(process_file): Open the file and pass the FILE* to find_entries.
(find_entries): Now void, because does not open the file itself.
(pfnote): Recovering from lack of memory does not work. Removed.
Use savenstr and simplify the code.
(free_tree): Only free the name space if node is named.
(structtag): Now a pointer, not a fixed length array of chars.
(consider_token): Don't take a token as argument. Use savenstr
when saving a tag in structtag. Callers changed.
(TOKEN): Structure changed. Now used only in C_entries.
(TOKEN_SAVED_P, SAVE_TOKEN, RESTORE_TOKEN): Deleted.
(C_entries): nameb and savenameb deleted. Use dinamic allocation.
(pfcnt): Deleted. Users updated.
(getit, Asm_labels, Pascal_functions, L_getit, get_scheme)
(TEX_getit, prolog_getit): Use dinamic allocation for storing
the tag instead of a fixed size buffer.
1995-01-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* movemail.c (main): Skip past the colon in inname.
1995-01-10 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (pfatal): New function.
(main, etags_getcwd): Use pfatal.
(etags_getcwd): Corrected another bug in the HAVE_GETCWD version.
1995-01-10 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (Lang_function): Use void instead to declare the
language functions, because many compilers are buggy.
(etags_getcwd): Fix the previous fix on the #else branch.
(readline_internal): Discard possible \r before \n here.
(C_entries): Do not deal with \r here: undo previous fix.
1995-01-09 Francesco Potortì (pot@fly)
* b2m.c (concat, xmalloc, xrealloc, readline, xnew): Four new
functions and a macro that allow the program to work on input
lines of whatever length. Copied from etags.c.
(fatal): Print a fatal error message and exit.
(main): Use the new functions. Fixed a bug that made a \037 char
appear at the end of the output.
1995-01-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* etags.c (C_entries): Ignore carriage return at end of line.
1994-12-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* fakemail.c (xmalloc, xrealloc): Add casts.
(add_field): Handle <...> and "..." syntax.
(setup_files, get_keyword): Clean up parens and line breaks.
(args_size): Likewise.
1994-12-21 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
* yow.c: Include program name in error messages.
1994-12-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* make-docfile.c (scan_lisp_file): Handle dynamic doc strings.
(xmalloc, fatal, error): New functions.
(progname): New variable.
(main): Set progname.
1994-12-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* emacsclient.c, emacsserver.c [HAVE_SYSVIPC]: Include sys/utsname.h.
(main): If socket/mqueue name is in home dir, add in the host name.
Rename .emacs_server to .emacs-server....
1994-12-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* emacsclient.c [!HAVE_SYSVIPC] (main): Fix error message diction.
1994-11-22 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (print_help): Print --regex usage for ctags also.
(main): Use -h in addition to -H as abbreviation for --help.
1994-11-16 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
is compiled if this is defined. The new functions and variables
added #ifdef ETAGS_REGEXP are not listed in this ChangeLog.
[VMS]: All VMS specific code previously contained in
etags-vmslib.c is now included here, modified for dealing with
language and regex options intermixed with filenames.
(header_file): Global variable deleted.
(Lang_Function): New typedef. All language parser functions
changed to this new type.
(string_numeric_p, substr, prestr): Functions deleted.
(readline_internal): Does the job that readline did previously.
(longopts): --language and --regex options added.
(lang_names, lang_extensions, lang_func, print_language_names):
New structures, variables and functions for choosing languages.
(print_help): Help strings updated. Calls print_language_names.
(argument_type, ARGUMENT): Typedefs for dealing with language and
regex options intermixed with filenames.
(main): Changed the way of dealing with arguments on the command
line to deal with language and regex options intermixed with
filenames.
(get_language, default_C_entries, Cplusplus_entries,
Cstar_entries, Yacc_entries, just_read_file): New functions.
(find_entries): Use the new method for choosing the language.
(Pascal_functions): Allow intermixing of comment styles.
(prolog_getit, skip_comment): Rewritten for speed.
(readline): Rewritten to deal with regexps.
1994-11-16 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (<errno.h>): #include added.
(etags_getcwd): Check return value from getcwd.
1994-11-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* profile.c (TV1, TV2): Use EMACS_TIME as type.
(get_time): Use EMACS_SUB_TIME.
1994-10-30 Geoff Voelker <voelker@cs.washington.edu>
* ntlib.c: New file.
* makefile.nt: New file.
* make-docfile.c (main) [WINDOWSNT]: Set _fmode and stdout to O_BINARY.
[WINDOWSNT]: Include the NT headers.
(READ_TEXT, READ_BINARY): Test DOS_NT, not MSDOS.
* etags.c (main, etags_getcwd): Test DOS_NT instead of MSDOS.
[WINDOWSNT]: Include some NT headers.
1994-10-24 Jonathan I. Kamens (jik@cam.ov.com)
* pop.c (getline): When a search of already-read input for CRLF
fails, store the fact that we've searched it and don't search it
again after reading more data.
* pop.c (getline): When determining whether or not it's necessary
to grow the input buffer, take into account the null that's stored
at the end of already-read input in the buffer.
1994-10-21 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (prestr, substr): Return a logical type.
(consider_token): Comment out "EXFUN". Use "DEFUN" instead of "DEF".
(consider_token): Set funcdef to fignore when a DEFUN is met.
(C_entries): Now we can use Tom Hageman patch for extern "C".
1994-10-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* movemail.c: PopServer renamed to popserver throughout.
1994-10-20 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
* etags.c: Don't declare malloc, since we include config.h.
* fakemail.c: Likewise.
1994-10-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* movemail.c: Don't declare malloc.
1994-10-19 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
* rcs-checkin: Use test -r instead of < to check readability, to
avoid syntax error.
1994-10-19 Jonathan I. Kamens (jik@cam.ov.com)
* pop.c: Only include ../src/config.h if HAVE_CONFIG_H is
defined, and if HAVE_CONFIG_H isn't defined, define
MAIL_USE_POP always (so that this file can be included in
other programs besides emacs).
* pop.c: Only declare h_errno if HAVE_H_ERRNO isn't defined or
HAVE_CONFIG_H isn't defined.
* pop.c (find_crlf, getline): Instead of using strstr, use a
custom function for finding CRLF.
(my_strstr): Function deleted.
1994-10-17 Jonathan I. Kamens (jik@cam.ov.com)
* pop.c (getline): Fix a segfault because of passing a
non-null-terminated string into strstr(). Fix from
djm@va.pubnix.com (David J. MacKenzie).
* pop.c: Don't include <string.h> and <strings.h>.
* pop.c: Include <des.h> before <krb.h>, rather than after. They
should be interchangeable, and indeed the inclusion is done in
both orders in various files in the Kerberos 4 library sources,
but djm@va.pubnix.com (David J. MacKenzie) reports that BSDI
requires that <des.h> be included first, and I don't see any harm
in changing the order.
* pop.c: Include ../src/config.h, to get HAVE_STRING_H and
STDC_HEADERS, if they're defined. Undef open, read, write and
close after including it.
1994-10-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* pop.c: Fix mismatch in conditionals.
* make-docfile.c (main): Don't process one input file twice.
Never use exit code > 1.
* pop.c (open, close, read, write): Add #undefs.
* pop.c: Don't declare malloc, realloc, free.
Include ../src/config.h.
Don't include string.h or strings.h.
Include des.h before krb.h.
Do declare my_strstr.
(getline): Really use my_strstr.
Leave one empty place in server->buffer,
and put a null at the end of the data in it.
1994-10-17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* emacsserver.c [SYSV_IPC] (main): Catch SIGHUP as well. Don't
call kill with pid 0. Handle EINTR when receiving messages.
1994-10-17 Karl Heuer <kwzh@gnu.ai.mit.edu>
* Makefile.in.in (regex.o): Use full path to find regex.c.
1994-10-17 Francesco Potortì (pot@fly.cnuce.cnr.it)
* Makefile.in.in (etags): Add dependency on regex.o, link with it.
(REGEXPOBJ, REGEXPDEPS, regex.o): Target and macros added.
1994-10-12 David J. MacKenzie (djm@duality.gnu.ai.mit.edu)
* Makefile.in.in (DONT_INSTALL): Remove make-path.
(${archlibdir}): Use mkinstalldirs instead.
* movemail.c: Make functions that return nothing void, not
implicitly int.
(main): Improve usage message.
(error): Write to stderr, not stdout.
* b2m.c cvtmail.c digest-doc.c emacsclient.c emacsserver.c etags.c
fakemail.c hexl.c make-docfile.c profile.c sorted-doc.c test-distrib.c
timer.c wakeup.c yow.c: Eliminate some -Wall warnings from unused
variables and implicitly declared functions.
1994-10-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Makefile.in.in (clean): rm DOC* and *.tab.[ch].
(distclean): Not here.
* Makefile.in.in (libexecdir): Renamed from libdir.
1994-10-11 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (C_entries): Name the #define's that are macros.
1994-10-10 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* emacsserver.c [! SYSVIPC] (main): Fix uses of FD_* macros:
fd_set arg is a pointer, descriptor arg comes first.
1994-09-29 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (C_entries): Recognise typedef of ANSI style functions.
(C_entries): Recognise #define inside a struct.
(C_entries): ANSI tells that preprocessor commands do not have to
start on the first column.
(print_help): Documentation corrected for -d and -D.
(white, endtk): ANSI tells the vertical tab is a separator.
1994-09-24 Jonathan I. Kamens (jik@gza-client1.aktis.com)
* Makefile.in.in (MOVE_FLAGS, MOVE_LIBS): New variables.
(pop.o, movemail.o): New targets.
(movemail): Link in pop.o and movemail.o. Use MOVE_LIBS, MOVE_FLAGS.
* pop.c, pop.h: New files.
* movemail.c: Improve POP code, move most of it into a separate file.
(mbx_delimit_end, mbx_delimit_begin): Check for errors.
(mbx_write): Check for errors and for From line.
(pop_retr, popmail): Use subroutines in pop.c to do the real work.
(get_errmsg, multiline, getline, putline, pop_stat, pop_command)
(pop_init): Functions deleted.
1994-09-23 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
* make-path.c (touchy_mkdir): Make dir ugo+rx even if it isn't new.
Rename path to dirname.
1994-09-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Makefile.in.in (UTILITIES):
Remove test-distrib, make-docfile, make-path.
(DONT_INSTALL): New variable--list those files here.
(clean): Delete the files in DONT_INSTALL.
1994-09-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* b2m.c (from, labels, data): Use MAX_DATA_LEN as length.
(main): Use fgets, not gets.
1994-09-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* timer.c: Don't declare malloc.
1994-09-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
* emacsserver.c (FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already
defined, use simple 32-bit versions of these macros.
(main) [HAVE_SOCKETS & !HAVE_SYSVIPC]: Use these macros.
1994-09-16 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* etags.c (etags_getcwd): Use getcwd if available.
1994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Version 19.27 released.
1994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Version 19.26 released.
1994-08-15 Paul Eggert <eggert@twinsun.com>
* rcs2log: Add support for CVS.
Work with `rlog's that output ISO 8601 dates.
1994-08-09 Lawrence R. Dodd <dodd@roebling.poly.edu>
* rcs2log: Use <> to delimit email address.
1994-08-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* emacsserver.c [SYSV_IPC] (main): Make a separate process
so we can listen for multiple requests.
1994-08-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* movemail.c: Include config.h first thing.
1994-08-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* emacsserver.c (main): Add casts to avoid warnings.
1994-07-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* Makefile.in.in (${archlibdir}): Compare the proper dir
before installing the scripts.
1994-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* emacsclient.c (main): New local var progname saves argv[0].
1994-07-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* emacsclient.c (main): Don't actually modify argv[0].
Modify a copy instead.
1994-07-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
* profile.c (reset_watch, get_time): Use EMACS_GET_TIME.
(tzp): Var deleted.
* Makefile.in.in: Add #undef alloca.
1994-07-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* timer.c (xmalloc): New function.
1994-07-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in.in (ALLOCA_CFLAGS): New variable.
(alloca.o): New target.
1994-07-08 Dave Love (d.love@dl.ac.uk)
* etags.c (takeprec): Recognise `character*(*) function'.
1994-07-08 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (main): Don't barf on obsolete -t and -T switches.
(main): Print an explicative message when a switch is not known.
1994-06-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* hexl.c: Don't declare exit or perror.
* emacsserver.c (main): Don't declare geteuid.
Don't declare getenv if convex.
1994-06-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in.in (test-distrib): Use ALL_CFLAGS.
1994-06-03 Francesco Potortì (pot@fly.cnuce.cnr.it)
* etags.c (absolute_filename): Remove infinite loop bug when
accessing files in directories whose name begins with a dot.
1994-06-03 Francesco Potortì (pot@fly.cnuce.cnr.it)
* etags.c (etags_getcwd): Delete the trailing newline from cwd.
1994-06-01 Morten Welinder (terra@diku.dk)
* yow.c (rootrelativepath) [MSDOS]: Define, expanding to dynamic
location of data directory.
1994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Version 19.25 released.
1994-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in.in (distclean): Delete Makefile, Makefile.in, blessmail.
1994-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in.in (blessmail): Don't depend on ../src/emacs.
1994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Version 19.24 released.
1994-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* make-docfile.c (write_c_args): Put `default' in upper case.
1994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* etags.c (etags_getcwd): Cast result of popen.
(popen): Declaration deleted.
1994-05-17 Karl Heuer (kwzh@gnu.ai.mit.edu)
* etags.c [!MSDOS]: Declare popen.
1994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* b2m.c (main): Avoid crash if argc is 1.
1994-05-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Version 19.23 released.
* Makefile.in.in (blessmail): Specify directory for blessmail.el.
1994-05-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in.in (maybe-blessmail): Mention bless-mail is in lib-src.
1994-05-05 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
* Makefile.in.in: Fix out of date comment.
1994-05-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in.in: Put in a separator for where to start cpp procssing.
Move all autoconf substitutions above that point.
Above that point, use Make-style comments.
This goes with changes in ../configure.in.
1994-05-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in.in (maybe-blessmail): New target to print the blessmail
warning message.
(${archlibdir}): Don't do it here. Don't depend on blessmail.
1994-05-02 Karl Heuer (kwzh@gnu.ai.mit.edu)
* Makefile.in.in (${archlibdir}): Be lenient about wc output format.
1994-05-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in.in (${archlibdir}): Don't run blessmail; instead
print advice to run it, if it has anything significant to do.
And only if MOVEMAIL_NEEDS_BLESSING.
(blessmail): Use emacs, not temacs.
(configuration): Renamed from configname.
1994-04-30 Morten Welinder (terra@diku.dk)
* etags.c (find_entries): Treat `*.cpp' as C++ files.
1994-04-30 Morten Welinder (terra@diku.dk)
* etags.c [MSDOS]: #include <sys/param.h> for the following.
[MSDOS] (etags_getcwd): Define simple MSDOS version without spawning
a shell.
1994-04-29 Morten Welinder (terra@diku.dk)
* hexl.c [MSDOS]: Don't define proto type for exit.
1994-04-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* b2m.c: Don't include string.h or strings.h.
1994-04-27 Karl Heuer (kwzh@gnu.ai.mit.edu)
* Makefile.in.in: C_SWITCH_SYSTEM and C_SWITCH_MACHINE are now cpp
symbols, not make variables.
1994-04-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in.in (etags, ctags): Make VERSION a string constant.
* etags.c (print_version): Print VERSION as a string.
1994-04-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* fakemail.c (readline): Fix updating of p when buffer grows.
1994-04-20 Karl Heuer (kwzh@gnu.ai.mit.edu)
* Makefile.in.in (blessmail): New target.
${archlibdir}: Use blessmail when installing movemail.
1994-04-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* fakemail.c (readline): When extending the buffer,
calculate end afresh using the new size.
1994-04-18 Francesco Potortì (pot@fly.cnuce.cnr.it)
* etags.c (main, print_help): Eliminate the -F option.
1994-04-18 Francesco Potortì (pot@fly.cnuce.cnr.it)
* etags.c (absolute_filename): Compare against '\0' instead of NULL.
1994-04-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in.in: Renamed from Makefile.in.
Makefile.in is now generated from it, and then preprocessed.
Change comments to C syntax.
Include config.h.
(LIBS_SYSTEM, LIBS_MACHINE): Define as empty if not defined.
(LOADLIBES): Define from LIBS_SYSTEM and LIBS_MACHINE.
1994-04-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* movemail.c [HAVE_UNISTD_H]: Include unistd.h.
1994-04-12 Francesco Potortì (pot@fly.cnuce.cnr.it)
* etags.c (etags_getcwd): Initialize bufsize.
1994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* profile.c (gettimeofday): If system doesn't have this, define it
to give a fatal error.
1994-04-11 Karl Heuer (kwzh@gnu.ai.mit.edu)
* movemail.c (main): Use setuid, not seteuid.
1994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* etags.c: #undef static.
1994-04-08 Francesco Potortì (pot@fly.cnuce.cnr.it)
* etags.c (outf, outfiledir): Renamed to tagf, tagfiledir.
(PF_funcs, Asm_funcs, L_funcs, PAS_funcs, TEX_funcs)
(Scheme_funcs, prolog_funcs): Renamed to Fortran_functions,
Asm_labels, Lisp_functions, Pascal_functions, Scheme_functions,
TeX_functions, Prolog_functions.
(inf): No more a global variable.
(C_entries): Take 2nd parameter `inf' instead of using the global one.
(find_entries): Added the cp1 var for optimisation.
(find_entries): Added more suffixes for assembler files.
(Asm_funcs): Now finds labels even without an ending colon.
1994-03-30 Francesco Potortì (pot@fly.cnuce.cnr.it)
* etags.c (main): Use etags_getcwd for compatibility.
(etags_getcwd): New function.
1994-03-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (etags, ctags): Pass -D for VERSION.
1994-03-25 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (emacs_tags_format, ETAGS): Removed. Use CTAGS instead.
(main): Don't allow the use of -t and -T in etags mode.
(print_help): Don't show options enabled by default.
(print_version): Show the emacs version number if VERSION is #defined.
(find_entries): Add "ss" as suffix for Chez Scheme.
1994-03-23 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (cwd, outfiledir): Vars added.
(relative_filename, absolute_filename, absolute_dirname):
functions added to compute filenames in tags files.
(process_file): Filenames in tags file are relative to the
directory where the tags file is (useful with the -o option).
(main): Initialise the outfiledir var.
(TYPEDST): Added the `tignore' value.
(C_entries): Corrected various small bugs.
1994-03-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (UTILITIES): `env' deleted.
(env): Target deleted.
* env.c: File deleted.
1994-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (install, ${archlibdir}): Switch back to ..
before running INSTALL_PROGRAM.
1994-03-14 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (TYPEDST): Added the `tignore' value.
(C_entries): Corrected various bugs, now correctly parses the
`extern "C" {' construction (patch by Tom R.Hageman).
1994-03-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* b2m.c: Use <...> to include config.h.
Don't include stdlib.h.
1994-03-03 Heiko Muenkel (muenkel@tnt.uni-hannover.de)
* b2m.c (main): Change delimiter from "^L" to "^_^L".
Allow for text following "BABYL OPTIONS:".
Add --help option. Use argv[0] in error messages.
1994-03-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* emacsclient.c (main) [HAVE_SYSVIPC]:
Make msgp->mtext longer if necessary.
On HPUX, error if it's more than 512 chars.
1994-02-26 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
* etags-vmslib.c: Use GPL.
* emacstool.c: Use GPL.
* fakemail.c: Update GPL.
* make-path.c (main): Return 1 on error, not -1.
Update GPL.
* cvtmail.c: Declare malloc, realloc, xmalloc, xrealloc, getenv.
(xmalloc, xrealloc): Return char *, not int.
(error): Write to stderr, not stdout.
Update GPL.
1994-02-23 Karl Heuer (kwzh@gnu.ai.mit.edu)
* profile.c (main, get_time): Don't crash on invalid input.
1994-02-22 Karl Heuer (kwzh@gnu.ai.mit.edu)
* profile.c (get_time): Simplify; avoid calling index.
(main): Exit on EOF.
1994-02-17 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (--absolute-pathnames): Option removed.
1994-02-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* fakemail.c (put_line): Don't break the line if it all fits.
1994-02-14 Francesco Potortì (pot@fly)
* etags.c (absolute_pathnames, cwd): Added global vars.
(longopts, print_help, main, process_file): Put absolute filenames
in the tag file if the -A --absolute-pathnames option is used.
(print_help): Alphabetically order the options.
(malloc, realloc, strcpy, strncpy, strcmp): Remove extern declar.
1994-02-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (C_SWITCH_MACHINE): Get this from autoconf.
(ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use C_SWITCH_MACHINE.
1994-02-07 Christian Lynbech (lynbech@avignon)
* emacsserver.c (main) [HAVE_SYSVIPC]: Reverse test of fork value.
1994-02-04 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (UTILITIES): Mention profile.
(profile): New target.
* profile.c: New file.
1994-01-16 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* make-docfile.c: Make the argument list output look more like the
Lisp docstrings do.
(write_c_args): Take new arg FUNC. Make output
look like lisp call prototypes: (function ARG1 ARG2), upcasing args.
(scan_c_file): Pass BUF to write_c_args for FUNC arg.
1994-01-14 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (stab_entry, stab_create, stab_find, stab_search,
stab_type, add_keyword, C_reate_stab, C_create_stabs): Deleted.
Use gperf generated hash table instead of linked list.
(C_stab_entry, hash, in_word_set, get_C_stab, C_symtype): Added.
Mostly code generated by gperf.
(consider_token): Removed unused parameter `lp'.
(PF_funcs, getit): Allow subroutine and similar declarations
to span multiple lines.
(C_entries): Check for newline if inchar to avoid bus errors.
(process_file, find_entries): Distinguish among nonexistent
and not regular file.
1994-01-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* timer.c: Include errno.h; don't include fasync.h.
(schedule): Don't return a value.
(sigcatch): Reestablish the handler first.
(getevent): Always call notify at the end.
(notify): Defer alarms around the whole body of function.
1994-01-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* timer.c (main): Don't request SIGIO, and don't handle it.
Loop calling getevent.
(sigcatch): Delete code to handle SIGIO.
if defer_alarms is set, don't call notify, just set alarm_deferred.
(getevent): Use read, not getchar. Handle EINTR and EAGAIN.
Set defer_alarms around realloc and schedule.
If alarm_deferred gets set, call notify.
Likewise if this event is the only pending event.
Make buf and buf_size global variables.
Don't malloc buf if it is already non-zero.
(schedule): Just exit if run out of memory.
Return the number of events.
(signal) [_CX_UX]: Add #undef.
1994-01-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* timer.c [USG] (SIGIO): Define as SIGPOLL.
(main) [USG]: Do ioctl to enable SIGPOLL.
1994-01-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* timer.c: Don't declare sys_errlist; declare strerror instead.
(schedule, main): Call strerror instead of using sys_errlist.
* movemail.c (get_errmsg, pfatal_with_name, pfatal_and_delete):
Call strerror instead of using sys_errlist.
* env.c (main): Call strerror instead of using sys_errlist.
* emacsclient.c: Don't declare sys_errlist; declare strerror instead.
(main): Call strerror instead of using sys_errlist.
* emacsclient.c [! HAVE_STRERROR] (strerror): Define the function.
* env.c [! HAVE_STRERROR] (strerror): Likewise.
* timer.c [! HAVE_STRERROR] (strerror): Likewise.
* movemail.c [! HAVE_STRERROR] (strerror): Likewise.
1994-01-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* hexl.c: Fix up whitespace. Get rid of spurious casts to void.
* movemail.c (malloc): Don't declare it.
(xmalloc): Cast result of malloc.
(strcpy): Don't declare it.
1993-11-14 Morten Welinder (terra@diku.dk)
* hexl.c [MSDOS]: Use binary file modes for non-text side of pipe.
(main): Use fclose to close file opened by fopen.
* fakemail.c (main) [MSDOS]: Dummy stub just to make the file compile.
* movemail.c [MSDOS]: #undef `access'.
* b2m.c (main) [MSDOS]: Open all files as binary.
* etags.c (main) [MSDOS]: Open all files as binary.
* make-docfile.c [MSDOS]: Use text/binary mode as appropriate.
(scan_c_file, scan_lisp_file): Extra parameter for the mode to open
with.
1994-01-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (ALL_CFLAGS): Include LDFLAGS.
Use ALL_CFLAGS in all the rules that compile and link with one cmd.
(LINK_CFLAGS): New variable.
(timer): Use LINK_CFLAGS.
1993-12-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* movemail.c: Include syswait.h.
Fork a subprocess and use it to copy the mail file.
1993-12-07 Richard Stallman (rms@srarc2)
* make-docfile.c (scan_lisp_file): Don't add newline at end of string.
1993-12-04 Richard Stallman (rms@srarc2)
* movemail.c (main): When making tempname, cast result of xmalloc.
Include room for EXXXXXX in the size.
Don't use result of strcpy.
1993-12-03 Paul Eggert (eggert@twinsun.com)
* vcdiff: Add --brief option.
1993-12-02 Richard Stallman (rms@srarc2)
* Makefile.in (${archlibdir}, install): Use $(INSTALL_PROGRAM)
for all executables and scripts.
1993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Version 19.22 released.
1993-11-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (mostlyclean): Make it distinct from clean.
1993-11-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (${archlibdir}): Don't do chown or chgrp.
1993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Version 19.21 released.
* Makefile.in (install): Don't change mode or group when installing.
* etags.c (FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
1993-11-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* make-docfile.c (read_c_string): For "", concatenate the two strings.
* movemail.c (main): Fix error message text.
1993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Version 19.20 released.
1993-11-08 Tom Hageman (tom@basil.icce.rug.nl)
* etags.c (C_entries): Keep track of ()-parenthesis level so that
functions returning a pointer to a function, a la `signal', can be
parsed. This also required new state `fstartlist' to `FUNCST'.
(SAVE_TOKEN, RESTORE_TOKEN, TOKEN_SAVED_P): 1-deep token save stack.
(C_entries, CNL): Use it to isolate preprocessor directive processing
from the other state engines.
(begtk): Add '~', for C++ class destructors.
1993-11-02 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (consider_token): Removed unused variable firsttok.
(prolog_getit): Call pfnote with the right number of arguments.
1993-10-19 Paul Eggert (eggert@twinsun.com)
* rcs2log (printlogline): Don't generate lines containing only
white space.
1993-10-04 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* Makefile.in (${archlibdir}):
Install ${SCRIPTS} from ${srcdir}, not cwd.
1993-10-03 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* Makefile.in: Fixed typos or brainos of whoever thought `@' was
the comment character.
1993-10-01 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (process_file): Dead code removed.
(S_ISREG): #define it using S_IFREG if not defined.
(process_file): Regular files have nothing to do with symlinks.
1993-09-28 Brian J. Fox (bfox@ai.mit.edu)
* Makefile.in (${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not
from current directory. Only chmod and chgrp files that we
installed, which excludes ${INSTALLABLE_SCRIPTS}. They go in
${bindir}.
(INSTALLFLAGS): Deleted definition, since it is an unused variable
now.
1993-09-27 Brian J. Fox (bfox@ai.mit.edu)
* Makefile.in (INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let
configure figure out the correct values for these variables.
1993-09-14 Brian J. Fox (bfox@ai.mit.edu)
* Makefile.in (archlibdir): Only install executables internally
used by emacs; don't install bindir binaries here.
1993-09-24 Paul Eggert (eggert@twinsun.com)
* rcs2log: Add -h, -n, -r options.
By default, look for *,v files as well as RCS/*,v files.
Use $TMPDIR (default /tmp) instead of /tmp.
1993-09-20 Francesco Potortì (pot@fly)
* etags.c (C_entries): is_func is initialised here instead of in
consider_token for the sake of the yacc rules section.
(C_entries): Now class, struct, enum, union and typedef produce
named tags.
1993-09-11 Roland McGrath (roland@baalperazim.gnu.ai.mit.edu)
* yow.c: Include <src/paths.h>, instead of "src/paths.h".
1993-09-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* Makefile.in: Support configuring in a different directory when
${srcdir} has already been configured.
(ALL_CFLAGS, CPP_CFLAGS): Put -I. -I../src before -I${srcdir}
-I${srcdir}/../src.
(b2m, movemail, fakemail, env, emacsserver, emacsclient,
getdate.o, timer.o, timer): Remove `-I${srcdir}/../src', since it
is already in CPP_FLAGS.
* etags.c, emacsclient.c, wakeup.c, timer.c, b2m.c, fakemail.c,
movemail.c, emacsserver.c: Include <config.h> instead of "config.h".
1993-08-25 Paul Eggert (eggert@twinsun.com)
* rcs2log: Change /{/ to /\{/ for Posix ERE compatibility;
otherwise, HP awk complains.
* vcdiff: Append /usr/ccs/bin and /usr/sccs to PATH, since these
are common hangouts for SCCS commands.
1993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Version 19.19 released.
1993-08-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (make-path): Dep on config.h.
1993-08-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* b2m.c (TRUE, FALSE): Don't define if already defined.
1993-08-09 Paul Eggert (eggert@twinsun.com)
* rcs2log (awkscript):
Some sites put comma-separated junk after the fullname.
Remove it, but leave "Bill Gates, Jr" alone.
Remove the junk from fullnames like "0000-Admin(0000)".
1993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Version 19.18 released.
1993-08-04 Francesco Potortì (pot@spiff.gnu.ai.mit.edu)
* etags.c (L_isdef, L_isquote, L_getit): Small optimisations.
(L_funcs): The (foo::defmumble stuff now should work.
(consider_token): Function returned random value--corrected.
(C_entries): Corrected == versus = typo.
1993-08-01 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* etags.c (put_entries): For NODE->rewritten, put pattern before
\177 and name after, not vice versa.
1993-08-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* timer.c (main): Generate a SIGIO as soon as we've initialized.
1993-07-30 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (FINCST): Added the fignore status. Means we are
after the parameter list and before the open curly brace.
Allows correct parsing of C++ constructors.
(C_entries, consider_token): Make use of fignore.
(consider_token): Reset funcdef when next_token_is_func: when in
ctags mode makes DEFVAR and others work better.
(L_isquote): Function that recognises the "(quote" string.
(L_getit): Ignore quoting via "'" or "(quote". Useful for defalias.
1993-07-29 Paul Eggert (eggert@twinsun.com)
* rcs-checkin: Don't check whether a file is readable until we have
decided not to ignore it.
1993-07-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (etags): Depend on ../src/config.h.
* emacsserver.c: Include types.h before file.h.
1993-07-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (install): Use .n, not .new, for temporary filenames.
1993-07-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Version 19.17 released.
1993-07-15 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* etags.c (print_help): Break up the very long strings containing
the help message into shorter strings, to placate chintzy C
compilers which can't handle strings that long.
* wakeup.c: Use CPP tangle from autoconf manual to #include the
correct combination of <time.h> and <sys/time.h>.
1993-07-08 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (alloca): Removed all references to it.
(main): Now calls xnew instead of alloca for portability.
(../src/config.h): Included only if HAVE_CONFIG_H.
(const): Void definition removed--config.h takes care of it.
1993-07-08 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (consider_token): Was `==', now is `='.
(consider_token): DEFUNs now treated like funcs in ctags mode.
* etags.c (LEVEL_OK_FOR_FUNCDEF): Removed.
(C_entries): Optimized the test that used LEVEL_OK_FOR_FUNCDEF.
(C_entries): Removed a piece of useless code.
(C_entries): Making typedef tags is delayed until a semicolon
is met. This handles "typedef int X, Y, Z;" correctly.
1993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
* Version 19.16 released.
* b2m.c: #include <sys/types.h>.
(ltoday): Declare this to be time_t.
1993-06-30 Paul Eggert (eggert@twinsun.com)
* vcdiff: Add -q option.
1993-06-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* etags.c: #include "config.h" and the alloca CPP tangle before
#including the system headers and getopt.h. AIX requires the
#pragma to come before any actual C code.
1993-06-21 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* Makefile.in (ctags): Depend on etags, so that parallel makes
don't write etags.o files on top of each other.
1993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* version 19.15 released.
1993-06-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* etags.c (add_node): Move var last_node to file scope.
1993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* Version 19.14 released.
1993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
Bring mumbleclean targets into conformance with GNU coding standards.
* Makefile.in (distclean): Call clean to do most of the work.
Delete aixcc.c and TAGS.
(realclean): Just call distclean.
* Makefile.in: Remember, spaces are not tabs.
1993-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (CPP_CFLAGS): New variable.
Use it instead of ALL_CFLAGS when compiling a .c file.
(getopt.o, getopt1.o): Add explicit compilation commands.
1993-06-10 Mark D. Baushke (mdb@cisco.com)
* etags.c: Reinstate old -f option as an alias for -o for
installed base uses.
1993-06-09 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* emacsserver.c (main): When we're passing a `struct sockaddr_un'
to bind or accept, cast the pointer, to avoid warnings on systems
which declare prototypes for this.
* emacsclient.c (main): Same.
* Makefile.in (YACC): New variable, to be set by top-level Makefile.
1993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* Version 19.13 released.
* wakeup.c: Include sys/types.h, too; I think that's where time_t
comes from, not sys/time.h.
1993-06-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* wakeup.c: Include sys/time.h.
* etags.c: #undef static.
* Version 19.12 released.
* Makefile.in (all): Exclude INSTALLABLE_SCRIPTS and SCRIPTS from deps.
1993-06-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Version 19.11 released.
* timer.c [LINUX]: #undef signal.
* emacsserver.c: #undef signal.
1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* wakeup.c (main): Make when a time_t.
1993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* Makefile.in (${archlibdir}): Use `(cd foo && pwd)' instead of
`(cd foo ; pwd)' to get the canonical name of a directory; cd
might fail, and have pwd print out the current directory.
* movemail.c [MAIL_USE_POP] (main): Don't use non-portable
string-handling functions.
1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Version 19.10 released.
1993-05-29 Paul Eggert (eggert@twinsun.com)
* rcs2log: When given no file arguments, inspect RCS/.* as well
as RCS/*. Don't report an error if RCS is empty or nonexistent.
1993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (timer): Link with $(LOADLIBES).
1993-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* fakemail.c (put_line): Don't output \n\t unless more text follows.
1993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
* etags.c: Replace the CPP tangle for alloca with the one from the
autoconf documentation, since that's working elsewhere.
1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
* Makefile.in (ALL_CFLAGS): Add "-I.", so the system and machine
description files can find their ancestors.
1993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* Makefile.in (install): Get the scripts from ${srcdir},
unlike the executables.
(ALL_CFLAGS): Add -I../src.
1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
* Version 19.9 released.
1993-05-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* Makefile.in (install): Do install the programs listed in
INSTALLABLE_SCRIPTS. Make the renaming loop use INSTALLABLES and
INSTALLABLE_SCRIPTS, instead of writing the programs out.
* Makefile.in (ALL_CFLAGS): Include -I${srcdir}.
(getopt.o, getopt1.c): Use ${srcdir} as appropriate.
1993-05-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* etags.c: Include ../src/config.h.
* Makefile.in (install): Don't handle INSTALLABLE_SCRIPTS
in first loop. Delete files from bindir before installing new ones.
(ALL_CFLAGS): Use ${srcdir} to find .../src dir.
1993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* Version 19.8 released.
* make-docfile.c: Doc fix.
1993-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* tcp.c: Fix comment syntax at top of file.
(main): Don't call htons with the port number.
1993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* Makefile.in (timer.o, sorted-doc.c): Link with alloca.o, if it's
appropriate.
* Makefile.in (install): Refer to the variables INSTALLABLES and
INSTALLABLE_SCRIPTS, instead of writing them out.
1993-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* make-path.c (main): Return 0.
1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
* Version 19.7 released.
1993-05-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* make-docfile.c (scan_lisp_file): Recognize defalias like fset.
1993-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* tcp.c: New file.
1993-05-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* Makefile.in (.c.o): Make the rule start with a tab, not spaces.
1993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
* timer.c (notify): Don't call sighold or sigrelse; they're USG
only. We should really fix this later, but let's just make it
compile for now.
Install patches from David J. Mackenzie to make the srcdir option
work.
* Makefile.in (srcdir, VPATH): Get this value from the top-level
Makefile.
(INSTALLABLES): Split this into two lists - INSTALLABLES and
INSTALLABLE_SCRIPTS.
(INSTALLABLE_SCRIPTS): New list.
(EXECUTABLES): Include INSTALLABLE_SCRIPTS.
(${archlibdir}): The scripts to be installed live in the source
tree, not in the object tree.
(test-distrib): Note that the data file lives in the source tree,
not the object tree.
(GETOPTDEPS): Note that getopt.h lives in the source tree.
(all other targets): Change references to source files to use
${srcdir}, except for config.h, which lives in the object dir.
(timer.o): Note that this depends on ../src/config.h.
* make-docfile.c (main): Add a -d option, to tell it where to find
the source files.
* test-distrib.c (main): Take the name of the distribution file to
test from the command line.
* timer.c: Fix misspellings of get_date function's name.
1993-05-12 Roland McGrath (roland@geech.gnu.ai.mit.edu)
* etags.c (main):
Don't require that there be input files if -i switches were given.
1993-05-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
The GNU coding standards specify that CFLAGS should be left for
users to set.
* Makefile.in (CFLAGS): Put this in the "things configure might
edit" section, and have it default to -g.
(ALL_CFLAGS): New variable, set to all the flags which should be
passed to compilations. Replace all other uses of CFLAGS with
ALL_CFLAGS.
(.c.o): New rule, to pass ALL_CFLAGS to compilations.
* Makefile.in (DEFS): Remove this; it's always just going to be
"-DHAVE_CONFIG_H -Demacs".
1993-05-03 Paul Eggert (eggert@twinsun.com)
* rcs2log: mawk, SunOS 4.1.3 nawk, and Ultrix/MKS nawk all barf on
/[/]/, so change it to /[\/]/. This should work on all
Posix-compliant awks. It's slightly wrong with traditional awk,
since it matches \ too, but that's a minor problem compared to awk
syntax errors.
1993-05-01 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
* Makefile.in (ALLOCA): New variable, whose value we should
inherit from the top-level makefile.
(etags, ctags): Include ALLOCA in the list of object files that
these executables depend on and link.
1993-04-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* Makefile.in (DEFS): Renamed from CONFIG_CFLAGS.
1993-04-07 Jim Blandy (jimb@churchy.gnu.ai.mit.edu)
* make-docfile.c (write_c_args): Print an argument named "defalt"
as "default".
1993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
* Makefile.in (C_SWITCH_SYSTEM): New variable.
(CFLAGS): Include C_SWITCH_SYSTEM in the flags to pass to the
compiler.
1993-03-22 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (YACC): Flag added to c_ext.
(c_ext): No more a synonim for c_ext&C_PLPL because of YACC.
(find_entries): Consistently use streq when reasonable.
(find_entries): A .y file is a yacc file.
(get_C_stab): c_ext becomes c_ext&C_PLPL.
(C_entries): Logical cplpl means c_ext&C_PLPL.
(C_entries): Logical yacc_rules means we are after the first %%.
(C_entries): Added logic for yacc files.
1993-03-16 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (C_entries): ':' case moved to the second switch.
(C_entries): Do not examine token if structdef==scolonseen.
(consider_token): structtag set to null string for enum.
1993-03-12 Francesco Potortì (pot@cnuce.cnr.it)
* etags.c (GET_COOKIE): And related macros removed.
(logical): Is now int, no more a char.
(reg): Define deleted.
(isgood, _gd, notgd): Deleted.
(gotone): Deleted.
(TOKEN): Member linestart removed.
(linepos, prev_linepos, lb1): Deleted.
(main): Call initbuffer on lbs array instead of lb1.
(init): Removed the initialisation of the logical _gd array;
(find_entries): A .sa suffix means assembler file.
(C_create_stab): "auto", "void", "extern", "static" are st_C_typespec.
All C state machines rewritten.
(C_entries): Complete rewrite.
(condider_token): Complete rewrite.
(getline): Deleted.
1993-03-01 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
* etags.c (C_entries): Added the quotednl logical variable.
Used for parsing of #define's spanning multiple lines.
1993-02-23 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
* etags.c (C_entries): Save the definedef status even when a
newline is met inside a string.
1993-03-19 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
* Makefile.in (EXECUTABLES): Added rcs-checkin.
* Makefile.in (unlock, relock): New productions.
1993-03-16 Paul Eggert (eggert@twinsun.com)
* rcs2log: Some awks don't understand "\r". Code around this.
Unfortunately this requires putting a carriage return in the
source code. Don't assume that rlog will tolerate times like
`10:10:60'; RCS 5.7 won't allow this.
1993-03-10 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* timer.c (main): Set the ownership of the stdin file descriptor
to the current process. Print error messages if either of the
fcntl's fails.
* timer.c (sigcatch): Declare this to return SIGTYPE (defined in
../src/config.h), not void.
1993-03-06 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* b2m.c (main): Don't exit upon reading a blank line.
1993-03-01 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
* etags.c (C_entries): New local variable quotednl. Used for
parsing of #define's spanning multiple lines.
* etags.c (C_entries): Save the definedef status
even when a newline is met inside a string.
1993-02-26 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* timer.c (notify): Initialize waitfor properly.
1993-02-22 Francesco Potortì (pot@CNUCE.CNR.IT)
* etags.c (C_entries): Don't reset definedef when a newline inside a
comment is met.
1993-01-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* etags.c (find_entries): If filename ends in .f or .for,
don't try anything but Fortran.
1993-01-08 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
* timer.c (notify): Flush stdout after writing message to avoid lossage
on terminals.
(notify): Also, write a newline after the token.
1992-12-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* Makefile.in (exec_prefix): New variable.
(bindir, libdir): Use it instead of `prefix'.
* Makefile.in (CFLAGS): #define HAVE_CONFIG_H, too.
* Makefile.in (libdir): Default to ${prefix}/lib.
(archlibdir): Adjusted to match.
* Makefile.in (distclean): Don't delete backup or autosave files.
(extraclean): Like realclean, but does delete backup and autosave
files.
* Makefile.in (realclean): Ignore errors from rm.
* Makefile.in (distclean): Don't bother to delete ../arch-lib;
that doesn't exist anymore.
1992-12-11 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* Makefile.in (prefix, bindir, libdir, srcdir): New variables, as
described in the top-level Makefile.
(UTILITIES): Add make-path to the list of utility programs.
(../arch-lib): Replaced by the ${archlibdir} target, which places
the executables in their permanent home.
(install, install.sysv, install.xenix): Consolidated into one
target which should work under all circumstances, modulo a few
ignored error messages.
* make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
a different number of arguments than other DEFVARs, recognize it
specially, and expect the right number of commas.
1992-12-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* make-path.c: New program, to help with the installation process.
* Makefile.in (make-path): New target.
* make-path.c (touchy_mkdir): Remove debugging output.
1992-11-05 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* Makefile.in (getdate.o): Added explicit target for this, so we
can indicate that it depends on ../src/config.h.
1992-11-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* Makefile.in (CONFIG_CFLAGS): Let the configure script edit this
instead of CFLAGS.
(CFLAGS): Add -Demacs and -I../src to CONFIG_CFLAGS to produce this.
1992-09-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* getdate.y: Correctly recognize Mt. Xinu BSD running on an HP
9000/300 as BSD; don't include both <sys/time.h> and <time.h> on
that system.
* Makefile.in (arch-lib): Give rm the `-f' option.
1992-09-28 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* make-docfile.c (write_c_args): Rewritten to correctly print
&optionals before the first identifier, but after the first paren.
This code used to just wait for commas or spaces; now it notices
identifier boundaries.
1992-09-26 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* rcs2log: When getting date, use %02d instead of %.2d in awk printf.
1992-09-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* make-docfile.c (write_c_args): Print the argument lists properly
when the first argument is optional.
1992-09-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* sorted-doc.c (main): Redefine special chars to use fonts tensy, teni.
Redefine @item. Set catcode of +.
1992-08-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* emacsclient.c (main): Set IPC_CREAT in msgget call.
1992-08-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* etags.c (TEX_funcs): Keep just 1 of two redundant nested loops.
(TEX_decode_env): Make `tab' one element longer.
1992-08-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* etags.c (PF_funcs): Recognize the "entry" keyword.
1992-08-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* Makefile.in: Add rcs2log and vcdiff to the list of utilities.
1992-08-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* timer.c (events): Rather than having slots marked as in use or
out of use by the `token' field, keep all pending events at the
beginning of the array. When we delete an event in the middle of
the array, we move the last event into its place.
(num_events): New variable.
(schedule): It is now cheaper to find a free event slot;
events[num_events] is the first free slot.
(notify): Scan events[0 .. num_events-1], instead of the whole
array. When an event fires, move the last event in the array into
its spot. Use num_events to determine whether or not there are
any pending events, not wait_for.
(getevent): Deleted unused variable `ep'.
(sigcatch): It's now easier to find all the active events.
(main): Initialize num_events.
* etags.c: Rather than fret about which systems have index and
which systems have strchr, and how to tell the difference between
them, we just write out our own versions. Big deal.
(index, rindex): Extern declarations removed.
(NEED_INDEX, NEED_RINDEX): Special hacks for hpux removed.
(etags_index, etags_rindex): New declarations.
(process_file, find_entries, pfnote, TEX_funcs, TEX_decode_env,
TEX_getit, substr): Use the etags_*index functions, rather than
the native *index functions.
(rindex, index): Renamed to etags_rindex and tags_rindex, and
made them unconditionally defined, rather than having them depend
on NEED_*INDEX.
* etags.c (savenstr): Add declaration for this at top of file.
(TEX_decode_env): Don't declare it local to this function.
* b2m.c: #include "../src/config.h", so we can test for the USG
macro, and decide whether to include <string.h> or <strings.h>.
* Makefile.in: Note that b2m.c depends on ../src/config.h.
1992-08-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* timer.c: Reformatted according to the GNU coding standards.
Removed arbitrary limits on the number of events queued and the
length of the tokens used to identify them.
Removed casts to (void).
Removed debugging printfs; they clutter the code, and the need
can be better filled using a real debugger.
1992-08-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* timer.c: Installed new version from Eric Raymond; this is more
portable, since it doesn't try to use SIGIO.
1992-07-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* emacsclient.c (main): If we can't find the socket in this
person's home directory, print a message which asks if they've
started the server, instead of just printing the message from
sys_errmsg; Cygnus finds that people are much less confused by
this.
1992-07-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* etags.c: Rather than defining "notdef" when "hpux" is #defined,
so that index and rindex get defined, why don't we actually
control index and rindex using symbols called "NEED_INDEX" and
"NEED_RINDEX", and define them if hpux is defined? Isn't that a
little more readable than defining something whose name implies
that it's not?
1992-07-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* movemail.c: Merged changes from Jamie Zawinski's byte compiler
distribution:
Miscellaneous doc fixes.
(skip_white, read_lisp_symbol): New functions.
(scan_lisp_file): Instead of using long hairy strings of ifs, call
read_lisp_symbol and then see what we got. Call skip_white
instead of writing out a loop to do its job. Correctly extract
docstrings from "defmacro" declarations.
1992-06-25 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* movemail.c (strcpy): Declare this to return char *.
1992-06-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* etags.c (C_entries): When we find a C++ comment, do actually
skip to the end of the line; do a 'break' instead of a 'continue'.
1992-06-11 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* etags.c (getit): Add missing parenthesis to expression which
decides if this token is an identifier.
1992-06-04 Roland McGrath (roland@geech.gnu.ai.mit.edu)
* etags.c (consider_token): Recognize `ENTRY' macro used in libc.
1992-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* etags.c (put_entries): Always put space between name and line num.
1992-05-28 Ken Raeburn (Raeburn@Cygnus.COM)
* etags.c (getit): Parenthesize &&/|| expression to avoid gcc
warning.
(LEVEL_OK_FOR_FUNCDEF): Ditto.
1992-05-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* make-docfile.c (write_c_args): Pass both arguments to putc.
1992-05-10 Roland McGrath (roland@albert.gnu.ai.mit.edu)
* etags.c (C_entries): Fixed reading of "..." strings.
(consider_token): Recognize `SYSCALL' and `PSEUDO' macros, used in
the C library source.
* etags.c (C_entries): When we see a backslash inside a quoted
string, skip to the next character. This allows us to correctly
deal with strings containing quotes.
1992-05-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* make-docfile.c (write_c_args): Print the C argument names as
they would be written in Elisp; print '_' as '-'.
1992-05-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* movemail.c [POP]: Get user name via getpwuid.
1992-05-04 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* Makefile.in: Flags in CC invocations rearranged for no reason.
1992-04-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* etags.c (print_help): Remember not to embed raw newlines in
strings - end the lines with `\n\'.
1992-04-17 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* timer.c (getevent): Removed declaration of memcpy; since
different systems have different return types, and we're not even
using the return type anyway, it wasn't doing us any good.
1992-04-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* emacsserver.c (msgcatch): Use the SIGTYPE macro to declare the
type of this function.
1992-04-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* ChangeLog: Since the old etc contents have been split into etc
and lib-src, the old etc's ChangeLog has been duplicated in the
new etc and lib-src. That means that each contains complete and
coherent information, although each contains extraneous
information.
1992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* etags.c: "--no-warning" option renamed to "--no-warn",
to be consistent with other GNU programs, like makeinfo.
* Makefile: Renamed to Makefile.in; the configure script
will edit this to produce Makefile.
1992-04-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* etags.c (print_help, print_version): New functions.
(main): Options added to support them.
* etags.c (longopts): New array of long names for the options.
(main): Recognize them.
1992-04-06 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* etags.c (C_entries): Removed comment saying that \" in a string
isn't recognized as magic, because it is correctly handled.
* getopt.c, getopt.h: New files, from GNU C library.
* etags.c: Rewritten to use getopt.
#include "getopt.h".
(file_num): Variable deleted; its role is now played by getopt's
optind.
(main): Argument processing loop rewritten to call getopt to get
next option. Options which take parameters (-o and -i) rewritten
to get parameter from optarg instead of argv[1]. Filename
preprocessing loop and update command changed similarly.
* Makefile (etags, ctags): Depend on and link with getopt.h,
getopt.o, and getopt1.o.
(getopt.o, getopt1.o): New targets for the GNU getopt routines.
* etags.c (outfflag): Variable deleted; it is non-zero iff outfile
is non-zero.
(main): In the argument processing loop, the 'goto next_arg'
statements are breaking out of the switch statement in exactly the
same way that a simple 'break' statement would; replace the gotos
with breaks, and remove the label.
1992-04-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* etags.c (C_entries): Clear tydef and next_token_is_func at start.
(consider_token): Move next_token_is_func to global.
1992-04-02 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* Makefile: Conform with GNU coding standards:
(mostlyclean): New target, synonymous with clean.
(TAGS, check): New targets.
(INSTALL, INSTALLFLAGS): New variables.
1992-03-31 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* lib-src/Makefile, etc/MACHINES, etc/NEWS: Changed references to
`config.emacs' to `configure'.
* lib-src/Makefile: Adjusted for renaming of share-lib to etc.
* etc/MACHINES: Same.
1992-03-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* movemail.c (main): Allow tempname to be as long as necessary,
instead of limiting it to 39 characters.
* movemail.c (main): Move declaration of buf from top of function
to local block surrounding the copy loop. This makes it less
likely to be confused with the buf used by the code which checks the
permissions on outname's directory.
1992-03-20 Jim Kingdon (kingdon@albert.gnu.ai.mit.edu)
* SERVICE: Remove my entry.
1992-03-09 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
* Makefile (emacstool, nemacstool, xvetool): Use ${CFLAGS}, not
hardcoded -g.
* movemail.c (xmalloc): Return char *, not int.
(main) [!MAIL_USE_FLOCK]: Add a new conditional, MAIL_UNLINK_SPOOL,
that is off by default -- normally don't unlink the mail spool
file, just empty it. Pass creat mode 0600, not 0666.
1992-02-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* Makefile (../arch-lib): Depend on ${EXECUTABLES}.
(all): Instead of here.
(install): Don't use the -s option, since people need symbols to
debug code.
1992-01-19 Eric Youngdale (youngdale@v6550c.nrl.navy.mil)
* etags-vmslib.c (fn_exp): Add type cast.
1992-01-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* movemail.c: Changes in comments.
1992-01-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* Makefile: Make the distclean target erase the DOC files from
../share-lib and the executables from ../arch-lib.
1992-01-09 Jim Blandy (jimb@pogo.cs.oberlin.edu)
* emacsclient.c: #include <sys/stat.h>
(main): Do declare statbfr.
1991-12-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* emacsserver.c, emacsclient.c [BSD]: Use either /tmp or ~
for the socket, depending on SERVER_HOME_DIR.
If using /tmp, put host name in the socket name.
* movemail.c (pfatal_and_delete): New function.
(main, popmail): Use it.
(popmail): Close output before deleting messages.
Check for error on close and on fsync.
Use `fatal' where appropriate.
(main): Remove (void).
* aixcc.lex: New file. Not officially part of Emacs.
* Makefile: Rules for that.
1991-12-04 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
* yow.c (main): Rename all references to PATH_EXEC to PATH_DATA.
* etags.c (main): Properly cast call to alloca that initializes
included_files.
1991-08-17 Roland McGrath (roland@geech.gnu.ai.mit.edu)
* etags.c (files_are_tag_tables): Remove global var.
(process_file): Don't test it. Also remove hack checking for a
file named "TAGS".
(main): -i now takes an arg which is the name of a file to include.
Collect these names and emit include tags for them after processing
all the argument files.
1991-07-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* wakeup.c: Terminate if parent goes away.
1991-07-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* etags.c (C_entries): Process token before handling end of line.
When inner loops reach end of line, just back up.
Let the real end of line processing happen in just one place.
(consider_token): Likewise.
1991-04-11 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
* etags.c (TEX_mode): Skip comments while scanning the text to see
which escape character this file uses.
1991-03-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* emacsserver.c [USG]: Terminate if msgrcv fails.
1991-03-03 Richard Stallman (rms@mole.ai.mit.edu)
* emacsserver.c [BSD]: Check for errors on stdin after scanf.
1991-01-25 Jim Blandy (jimb@churchy.ai.mit.edu)
* make-docfile: Find the arguments to a C function correctly,
by not ignoring the character that read_c_string returns. Don't
even try to find argument names for functions that take MANY
or UNEVALLED arguments, since they're a figment of the docstring's
imagination.
1991-01-14 Jim Blandy (jimb@churchy.ai.mit.edu)
* make-docfile: Read the .elc files generated by the new byte
compiler.
1990-12-31 Richard Stallman (rms@mole.ai.mit.edu)
* refcard.tex: Use cm fonts, not am, in multi-column mode.
1990-11-29 Richard Stallman (rms@mole.ai.mit.edu)
* movemail.c (mbx_delimit_begin): Put space before `unseen'.
1990-11-27 Richard Stallman (rms@mole.ai.mit.edu)
* Makefile (install*): No need to install wakeup.
1990-11-26 Richard Stallman (rms@mole.ai.mit.edu)
* Makefile (install*): Install emacsclient like etags.
1990-11-13 Richard Stallman (rms@mole.ai.mit.edu)
* movemail.c (error): Handle 3 args.
(main): Don't check input access if using pop.
1990-10-16 Richard Stallman (rms@mole.ai.mit.edu)
* etags.c (find_entries): Check for numbers after Scheme suffix.
1990-10-14 Richard Stallman (rms@mole.ai.mit.edu)
* termcap.dat (vt200-80): Fix ke and ks to frob flag 1.
1990-10-09 Richard Stallman (rms@mole.ai.mit.edu)
* Makefile (nemacstool, xvetool): New targets.
1990-09-26 Richard Stallman (rms@mole.ai.mit.edu)
* emacsclient.c: Include errno.h and define related variables.
1990-09-23 Richard Stallman (rms@mole.ai.mit.edu)
* emacsclient.c: Change usage message.
1990-08-30 David Lawrence (tale@pogo.ai.mit.edu)
* emacs.1: Add break before -nw option.
1990-08-19 David J. MacKenzie (djm@apple-gunkies)
* qsort.c: Replace with GNU version.
1990-08-14 David J. MacKenzie (djm@apple-gunkies)
* wakeup.c: New program replacing loadst.c.
1990-08-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* emacsclient.c [USG]: Pass msgsnd only 4 args.
1990-08-09 David J. MacKenzie (djm@pogo.ai.mit.edu)
* etags.c: Rename `flag' variables for what they do instead of
which option character sets them.
1990-05-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* loadst.c (main): Conditional to get load average on Apollo.
1990-05-22 Joseph Arceneaux (jla@churchy.ai.mit.edu)
* emacsserver.c: Set the permission on the socket to 0600.
1990-03-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* emacsclient.c [BSD]: Print clean message for failing getwd.
1990-03-20 David Lawrence (tale@pogo.ai.mit.edu)
* getdate.y: Use the getdate.y from GNU tar for timer.
1990-03-18 Jim Kingdon (kingdon@pogo.ai.mit.edu)
* emacsclient.c (main): Don't put brackets around "filename" in
usage message. It isn't optional.
1990-03-14 Joseph Arceneaux (jla@churchy.ai.mit.edu)
* etags.c (getit): Recognize '$' as beginning identifiers.
1990-02-22 David Lawrence (tale@pogo.ai.mit.edu)
* emacsserver.c: Renamed from server.c.
* Makefile: Reference emacsserver rather than server.
* MACHINES: Doc fix for new emacsserver name.
1990-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* emacsclient.c: Print program name in error messages.
1990-01-19 David Lawrence (tale@cocoa-puffs)
* timer.c, getdate.y (new files) and Makefile:
Sub-process support for run-at-time in timer.el.
Doesn't yet work correctly for USG.
1990-01-10 Jim Kingdon (kingdon@pogo)
* MACHINES: Add HP 300 running BSD.
1990-01-02 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* yow.c: Dynamically allocate buffer; skip header before random
choice to avoid bias toward first item.
1989-12-24 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c (readline): Separate out init of `pend'.
1989-12-17 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c: Undo changes relating to isgoodhdr.
1989-12-16 Mosur Mohan (rms@sugar-bombs.ai.mit.edu)
* etags.c (isgoodhdr): New macro.
(_gdh, notgdh): New variable used by that.
(init): Initialize _gdh.
(find_entries): Set header_file.
(consider_token): Use isgoodhdr if in header file.
* etags.c (total_size_of_entries):
Was miscalculating by 1 in rewritten case.
* etags.c (PAS_funcs): One arg to pfnote was missing.
1989-12-05 Joseph Arceneaux (jla@spiff)
* MACHINES: Change for the ULTRIX entry.
1989-11-21 Joseph Arceneaux (jla@spiff)
* etags.c (process_file): If file is not regular, return.
1989-11-06 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* loadst.c (main): Handle FIXUP_KERNEL_SYMBOL_ADDR.
1989-10-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* loadst.c (load_average): If HAVE_GETLOADAVG, use getloadavg.
(main): If HAVE_GETLOADAVG, don't call `nlist'.
1989-10-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c (consider_token): Allow any number of typespec keywords
after `typedef', before new type name.
(enum sym_type): Add st_C_typespec.
(C_create_stab): Put typespec kwds in table.
1989-08-27 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
* etags.c (main): Don't depend on name invoked by.
If CTAGS is not defined, assume it is ETAGS.
1989-07-31 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c (L_funcs): Allow package name in define construct,
as in (foo::defmumble name-defined ...).
1989-07-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c (find_entries): Stupid bug testing for C filename suffixes.
* Makefile (yow): Depends on ../src/paths.h.
1989-07-04 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
* etags.c: Fix compilation by moving Pascal after Fortran.
1989-06-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* movemail.c [USG]: Define F_OK, etc., if not found in header.
1989-05-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* hexl.c: New file, supports hexl-mode.
1989-05-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* movemail.c: New compilation flag MAIL_USE_MMDF.
1989-05-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* emacsclient.c: Use BSD code whenever HAVE_SOCKETS.
* server.c: Likewise.
* make-docfile.c (scan_c_file): Output argument names at end of string.
(write_c_args): New subroutine.
1989-04-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* movemail.c: Report failure of flock.
1989-04-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c (find_entries): Allow multi-letter extensions for fortran.
1989-04-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* loadst.c: On bsd4.3, use gettimeofday instead of CPUSTATES.
1989-03-15 Jeff Peck (rms@sugar-bombs.ai.mit.edu)
* emacstool.c: setenv IN_EMACSTOOL=t, TERM=sun, TERMCAP=.
* emacstool.1: Update to document environment variables.
1989-02-21 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c (PAS_funcs): New function by Mosur Mohan.
* movemail.c: On sysv, include unistd.h.
1989-02-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* b2m.c: New file.
1989-02-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c: Prolog support from Sunichirou Sugou.
1989-02-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* Makefile (clean): New target.
1989-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* fakemail.c (put_line): Break header lines at 79 cols.
1989-01-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c: Greatly rewritten by Sam Kendall for C++ support and for
multiple tags per line.
1989-01-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* movemail.c: Check access before doing real work.
Check that outfile is in a writable directory.
On fatal error, delete the lock file.
1988-12-31 Richard Mlynarik (mly@rice-chex.ai.mit.edu)
* env.c: Add decl for my-index
* etags.c (file-entries): .oak => scheme.
1988-12-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* movemail.c: Use `access' to check input and output files.
1988-12-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* emacsclient.c (main): Ignore all of CWD before first slash.
1988-12-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c (readline): Double linebuffer->size outside the xrealloc.
1988-12-22 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* server.c, emacsclient.c: Don't try to use gid_t; it isn't defined.
* server.c: chmod the socket to 0700.
1988-12-09 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* fakemail.c (main): Let env var FAKEMAILER override pgm to run.
(add_field): Delete comments and turn `<', `>' to spaces
in header lines.
(USE_FAKEMAIL): New customization macro says to make fakemail
not be a no-op even on a BSD system.
1988-12-01 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c (consider_token): Skip comments just like whitespace.
Notice `struct', etc. and set strtag for those tokens.
Return 1 for the token following `struct' if an open-brace follows it.
(C_entries): Special handling of token following `struct'
needed because we have probably advanced to the following line
to find the `{'.
(main): New option `T' sets tflag and strflag.
Set both of them by default if eflags.
1988-11-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* movemail.c: Do fsync before closing output.
1988-11-29 Richard Mlynarik (mly@pickled-brain.ai.mit.edu)
* movemail.c: Better error message when can't create tempname.
This file needs a great deal of extra error-checking and lucid reporting...
1988-11-16 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c: Support assembler code for .s and .a files.
(getit): Allow underscore in a tag.
1988-11-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* movemail.c: Close output and check errors before deleting input.
1988-10-01 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
* emacsclient.c [SYSVIPC]: Compute cwd only once; decide properly
whether to prefix it. Handle line number args.
1988-09-24 Richard Stallman (rms@gluteus.ai.mit.edu)
* etags.c (main): Default setting of eflag was backwards.
1988-09-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c: New option -i. -f renamed -o.
`-' as input file means read input file names from stdin.
-i spec'd or input file named TAGS means the input file is another
tag table; output an "include" line for it.
1988-09-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* Makefile: New vars DESTDIR, BINDIR, LIBDIR, MANDIR, MANEXT.
New targets install, install.sysv, install.xenix.
This makefile is now responsible for installing executables
and documentation from this directory into system directories.
1988-09-16 Richard Stallman (rms@corn-chex.ai.mit.edu)
* server.c, emacsclient.c (main): Compute socket name from euid.
1988-08-04 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* emacsclient.c: Args like +DIGITS are passed through unchanged.
1988-07-12 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* server.c: If both BSD and HAVE_SYSVIPC, use the latter.
* emacsclient.c: Likewise.
In the HAVE_SYSVIPC alternative, if BSD, use getwd instead of getcwd.
1988-06-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c: Handle `typedef struct foo {' (price@mcc.com).
(istoken): New string-comparison macro.
(consider_token): New arg `level'. New state `tag_ok' in `tydef'.
1988-06-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* etags.c: Changes for VMS.
Always define ETAGS on VMS.
Define macros GOOD and BAD for success and failure exit codes.
(begtk, intk): Allow `$' in identifiers
(main): Don't support -B, -F or -u on VMS.
Alternate loop for scanning filename arguments.
(system): Delete definition of this function.
* etags-vmslib.c (system): Undefine this; VMS now provides it.
1988-06-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
* loadst.c: Prevent multiple-def errors on BSD and BSD4_3
around include of param.h. (Like fns.c.)
1988-05-16 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
* loadst.c (load_average): Move load-average code to this new fn.
Add conditionals to compute load ave on UMAX.
1988-05-14 Richard Stallman (rms@lucky-charms.ai.mit.edu)
* loadst.c: Change DK_HEADER_FILE to DKSTAT_HEADER_FILE
with opposite sense.
1988-05-13 Chris Hanson (cph@kleph)
* emacsclient.c: Delete references to unused variable `out'. This
caused a bus error when used under hp-ux.
1988-05-06 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
* loadst.c: Control dk.h conditional with DK_HEADER_FILE.
1988-05-04 Richard Stallman (rms@rice-krispies.ai.mit.edu)
* etags.c (find_entries): `.t' or `.sch' means scheme code.
1988-04-29 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
* loadst.c: Add BSD4_3 conditional for file dk.h instead of dkstat.h.
1988-04-28 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
* movemail.c: #undef close, since config can #define it on V.3.
* emacsclient.c, fakemail.c, loadst.c, server.c: Likewise.
1988-04-26 Richard Stallman (rms@lucky-charms.ai.mit.edu)
* etags.c (TEX_mode, etc.): Remove superfluous backslashes from
invalid escape sequences such as `\{'.
* loadst.c: Add `sequent' conditional for file dk.h.
1988-03-20 Richard M. Stallman (rms@wilson)
* server.c [not BSD and not HAVE_SYSVIPC]: Fix error message.
* loadst.c (main) [XENIX]: Use /usr/spool/mail, not /usr/mail.
;; Local Variables:
;; coding: utf-8
;; add-log-time-zone-rule: t
;; End:
Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006,
2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
This file is part of GNU Emacs.
GNU Emacs is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
GNU Emacs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
;;; arch-tag: 2d979296-954c-448e-95c1-b46d134513dc
|