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
|
2009-10-27 rocky <rocky@gnu.org>
* ChangeLog, NEWS: See previous
2009-10-27 rocky <rocky@gnu.org>
* ChangeLog, NEWS: One more change noted
2009-10-27 rocky <rocky@gnu.org>
* NEWS: What's up.
2009-10-27 rocky <rocky@gnu.org>
* ChangeLog, configure.ac: Get ready for 4.0-0.4 release.
2009-10-26 R. Bernstein <rocky@gnu.org>
* configure.ac, test/data/Makefile.am,
test/data/misc-output-41.right, test/data/sig-41.right,
test/integration/test-misc, test/integration/test-sig,
test/unit/test-sort.sh.in: Changes to not complain when bash 4.1 is
installed/used.
2009-10-23 R. Bernstein <rocky@gnu.org>
* emacs/bashdb.el: Remove Emacs compilation warnings.
2009-10-22 rocky <rocky@gnu.org>
* ChangeLog, NEWS: What's up.
2009-10-22 rocky <rocky@gnu.org>
* ChangeLog, bashdb.in, dbg-main.sh.in, test/data/Makefile.am,
test/data/bugI.cmd, test/data/bugI.right, test/example/Makefile.am,
test/example/bugI.sh, test/integration/Makefile.am,
test/integration/test-bugI: bashdb.in: Remove variable name confict
which occurs when the source code uses a variable "i". Stupid huh?
Thanks to Rob Woolley for isolate the bug and reporting it.
dbg-main.sh.in: avoid same problem which might occur if someones
uses a variable called "file".
2009-10-22 rocky <rocky@gnu.org>
* bashdb-main.inc.in, dbg-opts.sh: Remove the triplicate banner
problem by brute force - check that _Dbg_shell name is set.
2009-10-22 rocky <rocky@gnu.org>
Merge branch 'master' of
ssh://rockyb@bashdb.git.sourceforge.net/gitroot/bashdb/bashdb
2009-10-22 rocky <rocky@gnu.org>
* ChangeLog, bashdb-main.inc.in: Need to use @PACKAGE_VERSION@
rather than $_Dbg_release because we may be called via bash
--debugger.
2009-10-13 R. Bernstein <rocky@gnu.org>
Merge branch 'master' of
ssh://rockyb@bashdb.git.sourceforge.net/gitroot/bashdb/bashdb
2009-10-13 R. Bernstein <rocky@gnu.org>
* INSTALL: Note that umask changes permissions on an install:
Tracker #2872847
2009-09-25 rocky <rocky@gnu.org>
* dbg-io.sh, lib/Makefile.am, lib/break.sh, lib/file.sh,
lib/filecache.sh, test/data/Makefile.am: Create filecache.sh from
hither and yon: this reduces the size of those other files and
consolidates this in one place and keeps in sync with kshdb and
zshdb.
2009-09-25 R. Bernstein <rocky@atwood.corp.ce-interactive.com>
* test/data/sig-Darwin.right, test/integration/test-sig: Darwin
handles signals differently?
2009-09-21 R. Bernstein <rocky@gnu.org>
* command/break.sh, lib/break.sh, test/data/file with spaces.cmd,
test/data/file with spaces.right: Need to quote filenames in "info
break". Some error messages tagged as such. Some = -> ==. Keep in
better sync with zshdb.
2009-09-21 rocky <rocky@gnu.org>
* ChangeLog, command/source.sh, configure.ac, dbg-main.sh.in,
lib/file.sh, test/data/file with spaces.cmd, test/data/file with
spaces.right, test/example/file with spaces.sh,
test/integration/check-common.sh.in,
test/integration/test-file-with-spaces, test/unit/test-file.sh.in:
Add unit/integration test into git repository. Haven't figured out
how test which have files with embedded spaces into the tarball
though. In the process, a couple more bugs dealing with blanks in
command file names found/fixed. Change release name.
2009-09-21 rocky <rocky@gnu.org>
* lib/file.sh: One more place I need to quote a variable with a file
path
2009-09-20 rocky <rocky@gnu.org>
* lib/fns.sh: One more place we need to quote variable which contian
file paths.
2009-09-20 rocky <rocky@gnu.org>
* lib/frame.sh, lib/hook.sh, lib/list.sh,
test/unit/test-frame.sh.in: Fix one more place where we need to
quote function arguments. print_source_line ->
print_location_and_command to match zshdb and kshdb.
2009-09-20 rocky <rocky@gnu.org>
* command/break.sh, command/display.sh, command/history.sh,
command/info.sh, command/list.sh, command/restart.sh, dbg-io.sh,
dbg-opts.sh, lib/break.sh, lib/file.sh, lib/fns.sh, lib/list.sh,
lib/save-restore.sh, test/data/list.right: Make sure to quote
filenames in argument passing so as to be able to handle files with
embedded blanks. Problem reported by Fritz Mehner. Keep in sync
with kshdb and zshdb.
2009-08-21 R. Bernstein <rocky@gnu.org>
* lib/file.sh: Should be able to use builtin readarray which is
provided with bash 4
2009-08-21 R. Bernstein <rocky@gnu.org>
* dbg-opts.sh, test/data/sopts.right, test/integration/sopts.tests:
Use echo, not print. This is not zsh or ksh. Thanks again to Nicolai
Lissner.
2009-08-21 R. Bernstein <rocky@gnu.org>
* htdocs/index.html: another link typo
2009-08-21 R. Bernstein <rocky@gnu.org>
* htdocs/index.html: Typo
2009-08-21 R. Bernstein <rocky@gnu.org>
* htdocs/index.html: Correct the git location.
2009-08-20 R. Bernstein <rocky@gnu.org>
* command/stepping.sh, dbg-opts.sh, lib/journal.sh,
lib/processor.sh, test/data/Makefile.am,
test/data/bug-step-subshell.cmd, test/data/bug-step-subshell.right,
test/data/sig.right, test/example/Makefile.am,
test/example/bug-step-subshell.sh, test/integration/Makefile.am,
test/integration/test-bug-step-subshell: Fix bug in stepping inside
a subshell. Thanks to Nicolai Lissner.
2009-08-20 rocky <rocky@gnu.org>
* ChangeLog, Makefile.am, builtin/.gitignore, lib/processor.sh,
test/.gitignore, test/data/sig.right: lib/processor.sh : Try to make
sure we have quotes around: _Dbg_old_set_opts="$_Dbg_old_set_opts -o
functrace". Bug and fix reported by Nicolai Lissner
Makefile.am/ChangeLog: adjust for git rather than CVS
2009-06-26 rocky <rocky@sanchez.(none)>
* .gitignore, builtin/.gitignore, command/.gitignore,
doc/.gitignore, emacs/.gitignore, htdocs/index.html,
lib/.gitignore, test/.gitignore, test/data/.gitignore,
test/example/.gitignore, test/integration/.gitignore,
test/unit/.gitignore: Git administrivia: ignore derived files
2009-06-23 rockyb <rockyb>
* ChangeLog, command/condition.sh, test/data/brkpt1.right: Clean up
code a little. Error messages are now error messages.
2009-06-22 rockyb <rockyb>
* doc/Makefile.am, doc/bashdb-man.pod: Small doc fixes and better
alignment with kshdb and zshdb.
2009-06-19 rockyb <rockyb>
* test/unit/.cvsignore: Administrivia
2009-06-19 rockyb <rockyb>
* dbg-main.sh.in: Typo
2009-06-19 rockyb <rockyb>
* command/debug.sh, dbg-main.sh.in, doc/bashdb.texi, lib/list.sh,
lib/processor.sh, test/data/debug.cmd, test/data/debug.right,
test/data/debug2.cmd, test/example/debug.sh: BASHDB_LEVEL ->
_Dbg_DEBUGGER_LEVEL
2009-06-19 rockyb <rockyb>
* test/data/Makefile.am, test/data/enable.cmd,
test/data/enable.right, test/example/Makefile.am,
test/example/nexting.sh, test/integration/Makefile.am,
test/integration/test-enable: Add integration test test-enable from
zshdb/kshdb
2009-06-18 rockyb <rockyb>
* dbg-pre.sh: See previous commit
2009-06-18 rockyb <rockyb>
* command/info.sh, dbg-init.sh, lib/hook.sh, lib/save-restore.sh:
Clean up code with respect to setting current breakpoint number
2009-06-16 rockyb <rockyb>
* command/kill.sh, lib/processor.sh, test/data/setshow.right: kill
now uses common confirm routine in lib/msg.sh; zshdb, kshdb
synchronization part II.
2009-06-16 rockyb <rockyb>
* ChangeLog, configure.ac, lib/msg.sh, test/data/setshow.right,
test/unit/Makefile.am, test/unit/test-io.sh.in,
test/unit/test-msg.sh.in: Synchronize lib/msg.sh and
test/unit/test-msg.sh with kshdb and zshdb. Probably more later...
2009-04-10 rockyb <rockyb>
* ChangeLog, NEWS: Get ready for release.
2009-04-10 rockyb <rockyb>
* configure.ac: Get ready for release
2009-03-28 rockyb <rockyb>
* lib/alias.sh, lib/frame.sh: Allow an arbitrary number of aliases.
Bug fix and patch courtesy of Nicolai Lissner.
2009-03-28 rockyb <rockyb>
* bashdb-trace.in, dbg-init.sh, test/unit/test-bashdb-trace.sh.in:
Correct test in bashdb-trace: -d twice in a row Bug id 2498103
2009-03-27 rockyb <rockyb>
* ChangeLog, configure.ac, doc/bashdb.texi: Update release number
2009-03-02 rockyb <rockyb>
* htdocs/index.html: pydbg -> pydbgr
2009-02-22 rockyb <rockyb>
* htdocs/bashdb-break.png, htdocs/bashdb-break_thumb.png,
htdocs/bashdb-ddd.png, htdocs/bashdb-ddd_thumb.png,
htdocs/bashdb-where.png, htdocs/bashdb-where_thumb.png,
htdocs/index.html, htdocs/index.html~, htdocs/jc.css,
htdocs/sflogo.png: Add web pages
2009-02-13 rockyb <rockyb>
* command/stepping.sh, test/data/Makefile.am,
test/data/bug-step.cmd, test/data/bug-step.cmd~,
test/data/bug-step.right, test/example/Makefile.am,
test/example/bug-step.sh, test/integration/test-bug-step: Fix bug in
clearing functrace flag in a "step" after a "next". Bug reported by
Richard A Hogaboom
2009-01-06 rockyb <rockyb>
* doc/bashdb.texi: Clean up text surrounding PS4.
2008-11-30 rockyb <rockyb>
* ChangeLog, lib/alias.sh, lib/frame.sh: return -1 => return -- -1
2008-11-28 rockyb <rockyb>
* configure.ac: Allow bash 3.1. Comment by otheus
https://sourceforge.net/forum/message.php?msg_id=5730043
2008-11-18 rockyb <rockyb>
* bashdb-trace.in: Some comment corrections and typos
2008-11-17 rockyb <rockyb>
* ChangeLog, NEWS: Adminstrivia
2008-11-17 rockyb <rockyb>
* .cvsignore: Administrivia
2008-11-17 rockyb <rockyb>
* test/unit/.cvsignore: Last commit before 4.0-0.2 release
2008-11-15 rockyb <rockyb>
* doc/bashdb.texi: Go over manual in preparation for release.
2008-11-15 rockyb <rockyb>
* command/break.sh, command/eval.sh: Sync up with zshdb
2008-11-15 rockyb <rockyb>
* command/continue.sh, command/delete.sh, command/edit.sh,
command/help.sh: Synch up with zshdb
2008-11-15 rockyb <rockyb>
* .cvsignore, configure.ac: Administrivia
2008-11-08 rockyb <rockyb>
* lib/Makefile.am, lib/break.sh, lib/brk.sh,
test/unit/test-break.sh.in: Synch up with zshdb.
2008-11-08 rockyb <rockyb>
* ChangeLog, configure.ac, lib/brk.sh, test/data/brkpt1.right,
test/unit/Makefile.am, test/unit/test-break.sh.in: Add more
breakpoint parameter checking and unit test, changing some msgs to
errmsgs. Sync up with zshdb/kshdb.
2008-11-03 rockyb <rockyb>
* lib/brk.sh: Add more argument count checking
2008-10-30 rockyb <rockyb>
* command/set.sh, test/data/setshow.right: Fix bug in "set annotate"
2008-10-30 rockyb <rockyb>
* dbg-opts.sh: Minor comment typo
2008-10-30 rockyb <rockyb>
* test/unit/test-bashdb-trace.sh.in: Get debugger name and version
in unit test. Not really necessary but nice to do.
2008-10-30 rockyb <rockyb>
* bashdb.in, command/show.sh, dbg-opts.sh, dbg-pre.sh,
test/data/brkpt2.right, test/data/bug-source.right,
test/data/sig.right, test/data/tbreak.right,
test/data/watch1.right, test/unit/test-pre.sh.in: Fix bugs in
--version and "show version"
2008-10-27 rockyb <rockyb>
* ChangeLog, configure.ac: Update docs
2008-10-25 rockyb <rockyb>
* .cvsignore, Makefile.am: Create tar.bz2 as well as tar.gz in
distribution.
2008-10-20 rockyb <rockyb>
* test/data/interrupt.right, test/data/setshow.right,
test/integration/check-common.sh.in, test/integration/setshow.tests:
Add option to ignore bashdb profile when doing integration tests
2008-10-20 rockyb <rockyb>
* Makefile.am, test/data/setshow.cmd, test/data/setshow.right: Don't
assume history size was set to the default
2008-10-19 rockyb <rockyb>
* .cvsignore, Makefile.am, configure.ac: Administrivia
2008-10-19 rockyb <rockyb>
* Makefile.am: Administrivia
2008-10-19 rockyb <rockyb>
* bashdb-main.inc, dbg-sig-ret.inc: Remove unneeded files
2008-10-18 rockyb <rockyb>
* test/integration/test-interrupt: Skip interrupt test on osx as
well. Really need to rewrite it better
2008-10-18 rockyb <rockyb>
* test/integration/test-brkpt: Better portability
2008-10-18 rockyb <rockyb>
* test/version, test/version.mini: Remove unused files
2008-10-18 rockyb <rockyb>
* dbg-pre.sh: zshdb sync
2008-10-18 rockyb <rockyb>
* dbg-pre.sh: Another portability issue (opensolaris)
2008-10-18 rockyb <rockyb>
* configure.ac, test/integration/check-common.sh.in,
test/integration/test-interrupt: Remove "uname -o" for NetBSD
2008-10-18 rockyb <rockyb>
* ChangeLog, configure.ac: Do not create GNU Emacs makefiles and
test if skipping installation
2008-10-18 rockyb <rockyb>
* test/integration/test-interrupt: Skip interrupt test on cygwin
2008-10-18 rockyb <rockyb>
* ChangeLog, configure.ac: Correct Emacs disabling
2008-10-18 rockyb <rockyb>
* ChangeLog, lib/fns.sh, test/data/parm.right: esc_dq portability
(e.g. NetBSD)
2008-10-18 rockyb <rockyb>
* ChangeLog, command/restart.sh: See above
2008-10-18 rockyb <rockyb>
* ChangeLog, command/restart.sh: Reduce assumption on regexp library
(NetBSD compatibility)
2008-10-16 rockyb <rockyb>
* ChangeLog, configure.ac, doc/bashdb.texi: Update bashdb texi
2008-10-14 rockyb <rockyb>
* ChangeLog, NEWS: What's up
2008-10-14 rockyb <rockyb>
* configure.ac: Require GNU Emacs 22 or better
2008-10-14 rockyb <rockyb>
* dbg-pre.sh, test/data/restart.cmd, test/data/restart.right,
test/integration/test-lopts, test/integration/test-restart:
Reinstate restart test. Clean up test-lopts a little bit more.
2008-10-14 rockyb <rockyb>
* dbg-opts.sh: print -> echo'
2008-10-14 rockyb <rockyb>
* dbg-opts.sh: Usage typo
2008-10-14 rockyb <rockyb>
* dbg-opts.sh: Another export for subshell/eval
2008-10-14 rockyb <rockyb>
* bashdb.in, command/restart.sh, dbg-main.sh.in, dbg-opts.sh,
lib/file.sh, lib/hook.sh: Sync up with zshdb.
2008-10-14 rockyb <rockyb>
* bashdb.in, dbg-opts.sh, lib/hook.sh, lib/sig.sh,
test/data/brkpt2.right, test/data/bug-source.right,
test/data/lopts.right, test/data/sig.right, test/data/sopts.right,
test/data/tbreak.right, test/data/watch1.right,
test/integration/lopts.tests, test/integration/test-lopts,
test/integration/test-sopts, test/integration/test-watch1: Make
--command -c work. Fix up options tests.
2008-10-13 rockyb <rockyb>
* test/integration/test-lopts: Split out options processing tests
2008-10-13 rockyb <rockyb>
* Makefile.am, dbg-main.sh.in, lib/processor.sh,
test/data/sig.right: Remove duplicate stdin reading code. Add
getopt_long to distribution.
2008-10-03 rockyb <rockyb>
* bashdb-trace.in, bashdb.in, dbg-opts.sh, test/data/brkpt2.right,
test/data/bug-source.right, test/data/lopts.right,
test/data/sig.right, test/data/sopts.right, test/data/tbreak.right,
test/data/watch1.right, test/integration/Makefile.am,
test/integration/test-opts, test/integration/test-sopts: More work
on options processing
2008-10-03 rockyb <rockyb>
* bashdb.in, command/edit.sh, command/info.sh, command/list.sh,
command/restart.sh, dbg-init.sh, dbg-io.sh, lib/file.sh,
lib/fns.sh, lib/frame.sh, lib/hook.sh, lib/list.sh,
lib/processor.sh, lib/save-restore.sh, test/data/restart.cmd,
test/data/watch1.right, test/integration/test-restart: Rename a
couple of variables to start with _Dbg_. Get closer to getting
restart integration test working.
2008-10-03 rockyb <rockyb>
* test/integration/interrupt-3.tests: Bash version 3 interrupt test
2008-10-03 rockyb <rockyb>
* AUTHORS, Makefile.am, THANKS, command/set.sh, command/show.sh,
getopt-test.sh, test/data/interrupt.right,
test/integration/Makefile.am, test/integration/test-interrupt: Fix
set/show args breakage from getopts upgrade.
2008-10-02 rockyb <rockyb>
* bashdb-trace.in, command/set.sh, dbg-opts.sh,
test/example/hanoi.sh.in, test/integration/check-common.sh.in,
test/integration/trace2.tests: Misc bugs fixed. More integration
tests pass.
2008-10-02 rockyb <rockyb>
* bashdb-trace.in, bashdb.in, command/restart.sh, configure.ac,
dbg-init.sh, dbg-main.sh.in, dbg-opts.sh, dbg-pre.sh,
dbg-pre.sh.in, getopts_long.sh, lib/hist.sh, lib/sig.sh,
test/data/brkpt2.right, test/data/bug-source.right,
test/data/debug.cmd, test/data/debug.right, test/data/sig.right,
test/data/tbreak.right, test/data/watch1.right,
test/integration/Makefile.am, test/integration/lopts.tests,
test/integration/sopts.tests, test/unit/test-bashdb-trace.sh.in,
test/unit/test-file.sh.in, test/unit/test-pre.sh.in,
test/unit/test-save-restore.sh.in: Convert to portable
getopts_long.sh from Stéphane Chazelas. There is a bit of breakage
in the integration tests that needs to fixed.
2008-09-30 rockyb <rockyb>
* dbg-init.sh: eval/print need to to see tty file descriptor. Export
it
2008-09-27 rockyb <rockyb>
* bashdb-trace.in, bashdb.in, command/debug.sh, doc/bashdb.texi,
lib/sig.sh, test/example/hanoi.sh.in, test/example/interrupt.sh.in,
test/unit/shunit2: Use _Dbg prefix more
2008-09-26 rockyb <rockyb>
* Makefile.am, configure.ac: Better test for Emacs. Don't run Emacs
tests if Emacs is not installed.
2008-09-25 rockyb <rockyb>
* command/list.sh, lib/processor.sh: Add list alias
2008-09-25 rockyb <rockyb>
* command/list.sh, lib/processor.sh,
test/integration/test-bug-source, test/integration/test-list: Slight
list command cleanup
2008-09-25 rockyb <rockyb>
* test/integration/Makefile.am, test/integration/bug-source.tests,
test/integration/test-bug-source, test/integration/test-bugIFS:
Small test/integration cleanup
2008-09-25 rockyb <rockyb>
* command/quit.sh, command/restart.sh, dbg-init.sh, dbg-pre.sh,
dbg-pre.sh.in, lib/hook.sh, lib/journal.sh, lib/save-restore.sh,
lib/sig.sh, test/data/sig.right, test/unit/test-fns.sh.in,
test/unit/test-save-restore.sh.in: Code cleanup and alignment with
zshdb/kshdb.
2008-09-24 rockyb <rockyb>
* command/list.sh, lib/processor.sh, lib/save-restore.sh: Code
reorganization
2008-09-24 rockyb <rockyb>
* command/list.sh, lib/fns.sh, lib/processor.sh: Minor cleanup
2008-09-23 rockyb <rockyb>
* lib/help.sh: Minor changes
2008-09-20 rockyb <rockyb>
* command/help.sh, command/show.sh, lib/list.sh: DRY
2008-09-20 rockyb <rockyb>
* lib/columnize.sh, test/unit/test-columns.sh.in: Fix columnize bug
2008-09-20 rockyb <rockyb>
* command/info.sh, command/list.sh, lib/fns.sh, lib/processor.sh,
test/data/list.right: Minor changes
2008-09-19 rockyb <rockyb>
* lib/list.sh, test/data/brkpt2.right, test/data/lopts.right,
test/data/search.right: Make "list" respect frame movement
2008-09-18 rockyb <rockyb>
* lib/hist.sh, lib/list.sh: Small changes
2008-09-18 rockyb <rockyb>
* command/examine.sh, lib/hook.sh, lib/processor.sh,
test/data/action.right, test/data/brkpt2.right,
test/data/brkpt3.right, test/data/bug-args.right,
test/data/bugIFS.right, test/data/command.right,
test/data/display.right, test/data/frame.right,
test/data/list.right, test/data/misc.right, test/data/multi1.right,
test/data/multi2.right, test/data/multi3.right,
test/data/parm.right, test/data/settrace.right,
test/data/sig.right, test/data/skip.right,
test/data/subshell1.right, test/data/subshell2.right,
test/data/subshell4.right, test/data/tbreak.right,
test/data/watch1.right: Go back to saving command as it is entered
in history.
2008-09-16 rockyb <rockyb>
* command/examine.sh: "examine" with a empty or blanks should print
the blanks
2008-09-14 rockyb <rockyb>
* command/examine.sh: examine portability issues and bug fix
2008-09-14 rockyb <rockyb>
* command/examine.sh, lib/fns.sh, lib/processor.sh: Small things
regarding the "examine" command
2008-09-13 rockyb <rockyb>
* command/break.sh, command/continue.sh, lib/processor.sh,
test/data/misc.right: Add tbreak to help display. Go over
tbreak/break help text.
2008-09-12 rockyb <rockyb>
* command/disable.sh, command/enable.sh, lib/processor.sh,
test/data/setshow.cmd, test/data/setshow.right: Had duplicate code
"source" code which was opening up an extra file descriptro.
setshow: set width for repeatable results.
2008-09-11 rockyb <rockyb>
* lib/processor.sh, test/data/sig.right: Put in history mechanism in
a more idomatic way.
2008-09-11 rockyb <rockyb>
* command/set.sh, command/show.sh, lib/help.sh, lib/processor.sh,
test/data/misc.right, test/data/setshow.right, test/data/sig.right:
.
2008-09-10 rockyb <rockyb>
* Makefile.am, test/example/interrupt.sh: Allow "make test" as a
synonym for "make check"
2008-09-10 rockyb <rockyb>
* command/delete.sh: Small cleanups
2008-09-10 rockyb <rockyb>
* command/break.sh, command/delete.sh, command/info.sh, lib/brk.sh,
lib/frame.sh, test/data/misc.right, test/data/tbreak.right: Give
errmsg more often when it is warranted. More idiomatic, more zshdb
compatible.
2008-09-09 rockyb <rockyb>
* command/show.sh, test/data/misc.right, test/data/setshow.right:
Columnize invalid subccommand data error message.
2008-09-09 rockyb <rockyb>
* command/info.sh, command/show.sh, lib/help.sh,
test/example/interrupt.sh: Columnize info and sort subcommand lists
in showing error. Increase zsh portability.
2008-09-09 rockyb <rockyb>
* command/info.sh, lib/brk.sh, lib/info.sh: ksh and zsh
compatability. Turn a Dbg_msg to a Dbg_errmsg.
2008-09-07 rockyb <rockyb>
* command/Makefile.am, command/help.sh, command/history.sh,
command/set.sh, command/show.sh, configure.ac, lib/Makefile.am,
lib/columnize.sh, lib/hist.sh, lib/processor.sh, lib/sort.sh,
test/data/misc.cmd, test/data/misc.right,
test/example/interrupt.sh, test/unit/.cvsignore,
test/unit/Makefile.am, test/unit/test-columns.sh.in,
test/unit/test-sort.sh.in: Sort output in "show aliases". Break out
history to a command file and standard help for that. Some small
breakage and some small fixage.
2008-09-06 rockyb <rockyb>
* configure.ac, dbg-pre.sh, dbg-pre.sh.in, lib/file.sh,
test/example/interrupt.sh, test/unit/.cvsignore,
test/unit/Makefile.am, test/unit/test-file.sh.in: Fix one more file
resolution/expansion bug. Add unit test for this. All good stuff as
a result of reworking in zshdb/kshdb.
2008-09-06 rockyb <rockyb>
* command/break.sh, lib/brk.sh, lib/file.sh, lib/fns.sh,
lib/frame.sh, test/data/brkpt1.right, test/data/list.right,
test/data/tbreak.cmd, test/data/tbreak.right,
test/example/interrupt.sh, test/example/interrupt.sh.in,
test/integration/interrupt.tests, test/integration/test-interrupt:
Remove some bugs in file name expansion. Clean up code and align
more with zshdb.
2008-09-05 rockyb <rockyb>
* test/data/interrupt.right, test/example/interrupt.sh,
test/example/interrupt.sh.in, test/integration/interrupt.tests: Make
the interrupt test work even on a slow-running bash interpreter (as
in bash alpha).
2008-09-04 rockyb <rockyb>
* lib/file.sh: A couple of minor bugs
2008-08-29 rockyb <rockyb>
* configure.ac, test/example/interrupt.sh,
test/integration/Makefile.am: Tolerance for bash 4.0.
2008-08-29 rockyb <rockyb>
* command/quit.sh, command/stepping.sh, command/tracefn.sh,
lib/hook.sh, lib/list.sh, lib/processor.sh, lib/save-restore.sh,
test/data/sig.right, test/data/watch1.right,
test/integration/test-subshell: Finish step+, step-
2008-08-28 rockyb <rockyb>
* bashdb-trace.in, bashdb.in, command/set.sh, command/show.sh,
command/stepping.sh, lib/hook.sh, lib/processor.sh,
test/data/brkpt2.cmd, test/data/brkpt2.right,
test/data/bug-source.right, test/data/debug.cmd,
test/data/debug.right, test/data/debug2.cmd, test/data/finish.cmd,
test/data/finish.right, test/data/frame.cmd, test/data/frame.right,
test/data/misc.right, test/data/parm.cmd, test/data/parm.right,
test/data/setshow.right, test/data/sig.right,
test/data/tbreak.right, test/data/watch1.right,
test/example/interrupt.sh: Less't hard-coding of debugger name. Less
line-number specific stack traces. Code towards step+ and step-.
2008-08-27 rockyb <rockyb>
* command/set.sh: Erroneously remove "set editing" command
2008-08-27 rockyb <rockyb>
* test/integration/test-action, test/integration/test-command,
test/integration/test-complete, test/integration/test-display,
test/integration/test-finish, test/integration/test-search,
test/integration/test-skip: Dry integration tests more
2008-08-27 rockyb <rockyb>
* command/set.sh: More integration test DRYing
2008-08-27 rockyb <rockyb>
* test/example/interrupt.sh, test/integration/check-common.sh.in,
test/integration/test-bug-args, test/integration/test-bugIFS,
test/integration/test-frame: Start of long process to DRY tests.
2008-08-25 rockyb <rockyb>
* test/data/frame.cmd, test/data/frame.right: Make test-frame less
subject to changes in bashdb code by limiting number of frames in
backtraces.
2008-08-25 rockyb <rockyb>
* Makefile.am, builtin/Makefile.am, test/example/interrupt.sh,
test/integration/test-interrupt: * builtin/Makefile.am: Typo in rm target in cut-and-paste. Use a
more generic and therefore more robust reference. Thanks to
Masatake YAMATO. rest: small changes.
2008-08-25 rockyb <rockyb>
* lib/processor.sh: Comment change and small code change based on
that
2008-08-24 rockyb <rockyb>
* command/alias.sh, command/continue.sh, command/delete.sh,
command/disable.sh, command/display.sh, command/edit.sh,
command/enable.sh, command/frame.sh, command/handle.sh,
command/kill.sh, command/list.sh, command/load.sh, command/pwd.sh,
command/quit.sh, command/restart.sh, command/signal.sh,
command/source.sh, command/tracefn.sh, command/tty.sh,
command/watch.sh, test/data/misc.right: Work on help output. Most of
the commands are now listed in help.
2008-08-24 rockyb <rockyb>
* command/eval.sh, command/where.sh, configure.ac, dbg-main.sh.in,
dbg-opts.sh, doc/bashdb.texi, emacs/.cvsignore, lib/Makefile.am,
lib/hook.sh, lib/sig.sh, test/data/sig.cmd, test/data/sig.right,
test/example/interrupt.sh, test/integration/.cvsignore: Break off
hook routine from sig.sh. More kshdb, zshdb alignment.
2008-08-23 rockyb <rockyb>
* configure.ac, emacs/Makefile.am, emacs/bashdb-test.el.in,
emacs/dbg-test.el.in: Infrastructure more generic and common with
other *shdb debuggers
2008-08-23 rockyb <rockyb>
* test/integration/test-misc, test/integration/test-setshow,
test/integration/test-sig: Clean up temporary test-file output
better.
2008-08-23 rockyb <rockyb>
* configure.ac, test/.cvsignore, test/Makefile.am, test/README,
test/check-common.sh.in, test/data/settrace.right,
test/example/interrupt.sh, test/example/settrace.sh,
test/integration/Makefile.am, test/integration/check-common.sh.in,
test/integration/lopts.tests, test/integration/sopts.tests,
test/integration/test-action, test/integration/test-brkpt,
test/integration/test-bug-args, test/integration/test-bug-source,
test/integration/test-bugIFS, test/integration/test-command,
test/integration/test-complete, test/integration/test-debug,
test/integration/test-display, test/integration/test-finish,
test/integration/test-frame, test/integration/test-interrupt,
test/integration/test-list, test/integration/test-misc,
test/integration/test-multi, test/integration/test-opts,
test/integration/test-parm, test/integration/test-restart,
test/integration/test-search, test/integration/test-setshow,
test/integration/test-settrace, test/integration/test-sig,
test/integration/test-skip, test/integration/test-subshell,
test/integration/test-tbreak, test/integration/test-trace,
test/integration/test-watch1, test/integration/test-watch2: Move
check-common.sh.in into integration directory.
2008-08-23 rockyb <rockyb>
* bashdb-trace.in, command/help.sh, test/data/trace.right,
test/data/trace2.right, test/example/hanoi.sh.in,
test/example/interrupt.sh: Minor stuff
2008-08-22 rockyb <rockyb>
* test/example/interrupt.sh: .
2008-08-22 rockyb <rockyb>
* test/.cvsignore, test/data/lopts.right, test/example/interrupt.sh:
.
2008-08-22 rockyb <rockyb>
* command/list.sh: Split off list into its own file in command
2008-08-22 rockyb <rockyb>
* ChangeLog, command/Makefile.am, command/linetrace.sh,
lib/list.sh, lib/sig.sh, test/example/hanoi.sh.in,
test/example/interrupt.sh: Split off list as into it's own file in
commands.
2008-08-22 rockyb <rockyb>
* integration/.cvsignore: .
2008-08-22 rockyb <rockyb>
* test/integration/.cvsignore, test/integration/Makefile.am,
test/integration/README, test/integration/brkpt1.tests,
test/integration/brkpt2.tests, test/integration/brkpt3.tests,
test/integration/bug-source.tests,
test/integration/interrupt.tests, test/integration/lopts.tests,
test/integration/multi.sh, test/integration/setshow.tests,
test/integration/settrace.tests, test/integration/sig.sh,
test/integration/sig.tests, test/integration/sopts.tests,
test/integration/subshell1.tests, test/integration/subshell2.tests,
test/integration/subshell3.tests, test/integration/subshell4.tests,
test/integration/test-action, test/integration/test-brkpt,
test/integration/test-bug-args, test/integration/test-bug-source,
test/integration/test-bugIFS, test/integration/test-command,
test/integration/test-complete, test/integration/test-debug,
test/integration/test-display, test/integration/test-finish,
test/integration/test-frame, test/integration/test-interrupt,
test/integration/test-list, test/integration/test-misc,
test/integration/test-multi, test/integration/test-opts,
test/integration/test-parm, test/integration/test-restart,
test/integration/test-search, test/integration/test-setshow,
test/integration/test-settrace, test/integration/test-sig,
test/integration/test-skip, test/integration/test-subshell,
test/integration/test-tbreak, test/integration/test-trace,
test/integration/test-watch1, test/integration/test-watch2,
test/integration/trace.tests, test/integration/trace2.tests: Add
integration tests in test/integration directory.
2008-08-22 rockyb <rockyb>
* integration/Makefile.am, integration/README,
integration/brkpt1.tests, integration/brkpt2.tests,
integration/brkpt3.tests, integration/bug-source.tests,
integration/interrupt.tests, integration/lopts.tests,
integration/multi.sh, integration/setshow.tests,
integration/settrace.tests, integration/sig.sh,
integration/sig.tests, integration/sopts.tests,
integration/subshell1.tests, integration/subshell2.tests,
integration/subshell3.tests, integration/subshell4.tests,
integration/test-action, integration/test-brkpt,
integration/test-bug-args, integration/test-bug-source,
integration/test-bugIFS, integration/test-command,
integration/test-complete, integration/test-debug,
integration/test-display, integration/test-finish,
integration/test-frame, integration/test-interrupt,
integration/test-list, integration/test-misc,
integration/test-multi, integration/test-opts,
integration/test-parm, integration/test-restart,
integration/test-search, integration/test-setshow,
integration/test-settrace, integration/test-sig,
integration/test-skip, integration/test-subshell,
integration/test-tbreak, integration/test-trace,
integration/test-watch1, integration/test-watch2,
integration/trace.tests, integration/trace2.tests: Files got checked
into the wrong place.
2008-08-22 rockyb <rockyb>
* test/bug-args.sh.in, test/bugIFS, test/command.tests: These files
are no longer needed.
2008-08-22 rockyb <rockyb>
* ChangeLog, integration/README: What this directory is about.
2008-08-22 rockyb <rockyb>
* integration/.cvsignore, integration/Makefile.am,
integration/brkpt1.tests, integration/brkpt2.tests,
integration/brkpt3.tests, integration/bug-source.tests,
integration/interrupt.tests, integration/lopts.tests,
integration/multi.sh, integration/setshow.tests,
integration/settrace.tests, integration/sig.sh,
integration/sig.tests, integration/sopts.tests,
integration/subshell1.tests, integration/subshell2.tests,
integration/subshell3.tests, integration/subshell4.tests,
integration/test-action, integration/test-brkpt,
integration/test-bug-args, integration/test-bug-source,
integration/test-bugIFS, integration/test-command,
integration/test-complete, integration/test-debug,
integration/test-display, integration/test-finish,
integration/test-frame, integration/test-interrupt,
integration/test-list, integration/test-misc,
integration/test-multi, integration/test-opts,
integration/test-parm, integration/test-restart,
integration/test-search, integration/test-setshow,
integration/test-settrace, integration/test-sig,
integration/test-skip, integration/test-subshell,
integration/test-tbreak, integration/test-trace,
integration/test-watch1, integration/test-watch2,
integration/trace.tests, integration/trace2.tests: Cleanup from
integration test move
2008-08-22 rockyb <rockyb>
* test/example/interrupt.sh, test/example/skip.sh,
test/hanoi.sh.in, test/sig.sh, test/skip.sh: More cleanup from last
commit
2008-08-22 rockyb <rockyb>
* configure.ac, test/Makefile.am, test/brkpt1.tests,
test/brkpt2.tests, test/brkpt3.tests, test/bug-source.tests,
test/data/brkpt1.cmd, test/data/brkpt1.right, test/data/brkpt2.cmd,
test/data/brkpt2.right, test/data/brkpt3.cmd,
test/data/brkpt3.right, test/data/bug-source.right,
test/data/debug.cmd, test/data/debug.right,
test/data/interrupt.right, test/data/list.cmd,
test/data/list.right, test/data/lopts.right, test/data/misc.cmd,
test/data/misc.right, test/data/prof2.cmd, test/data/watch1.cmd,
test/data/watch1.right, test/debug.sh, test/example/Makefile.am,
test/example/dbg-test1.sh, test/example/debug.sh,
test/example/hanoi.sh.in, test/example/interrupt.sh,
test/example/parm.sh, test/example/restartbug.sh,
test/example/settrace.sh, test/example/subshell.sh,
test/interrupt.tests, test/lopts.tests, test/multi.sh,
test/parm.sh, test/restartbug.sh, test/setshow.tests,
test/settrace.tests, test/sig.tests, test/sopts.tests,
test/subshell.sh, test/subshell1.tests, test/subshell2.tests,
test/subshell3.tests, test/subshell4.tests, test/test-action,
test/test-all, test/test-brkpt, test/test-brkpt1,
test/test-bug-args, test/test-bug-source, test/test-bugIFS,
test/test-command, test/test-complete, test/test-debug,
test/test-display, test/test-finish, test/test-frame,
test/test-interrupt, test/test-list, test/test-misc,
test/test-multi, test/test-opts, test/test-parm, test/test-restart,
test/test-search, test/test-setshow, test/test-settrace,
test/test-sig, test/test-skip, test/test-subshell,
test/test-tbreak, test/test-trace, test/test-watch1,
test/test-watch2, test/trace.tests, test/trace2.tests: Move
integration tests into integration directory. Yay!
2008-08-22 rockyb <rockyb>
* command/break.sh, command/commands.sh, command/continue.sh,
command/help.sh, test/data/brkpt1.right, test/data/command.right,
test/data/frame.right, test/data/misc.right: More of the same: more
help documentation. More alignment with kshdb/zshdb.
2008-08-22 rockyb <rockyb>
* command/Makefile.am, command/help.sh, command/info.sh,
lib/frame.sh, lib/help.sh, lib/info.sh, test/unit/test-frame.sh.in:
Break out info command, add help. More rigorous unit test for frame
- more bugs fixed. Give help on aliased commands.
2008-08-22 rockyb <rockyb>
* command/help.sh, lib/alias.sh: Minor changes
2008-08-21 rockyb <rockyb>
* command/help.sh, doc/bashdb.texi, lib/alias.sh, lib/help.sh,
test/check-common.sh.in, test/lopts.tests, test/sopts.tests,
test/unit/test-alias.sh.in: Show aliases in help for a command.
bashdb.texi: remove bogosity around calling the debugger in-line.
2008-08-21 rockyb <rockyb>
* command/file.sh, command/handle.sh, command/help.sh,
command/kill.sh, command/signal.sh, command/stepping.sh,
test/data/misc.right: Add documentation for more commands: file,
handle, kill, next, signal, skip and step. Alas, there are yet more
commands to be done.
2008-08-21 rockyb <rockyb>
* command/alias.sh, command/set.sh, command/show.sh, dbg-init.sh,
dbg-io.sh, lib/help.sh, lib/msg.sh, lib/sig.sh,
test/data/complete.right, test/data/misc.right,
test/data/setshow.right, test/data/sig.right,
test/example/dbg-test2.sh, test/setshow.tests, test/test-setshow:
Small changes to keep up with the Joneses.
2008-08-20 rockyb <rockyb>
* test/example/hanoi.sh.in: Moved from ..
2008-08-20 rockyb <rockyb>
* AUTHORS, command/help.sh, command/set.sh, command/show.sh,
lib/help.sh, lib/processor.sh, test/data/misc.right,
test/data/setshow.right: Add set and show to commands listed by
help. Correct some missing show entries (annotate and autoeval).
Other small changes.
2008-08-20 rockyb <rockyb>
* command/alias.sh, command/break.sh, command/condition.sh,
command/debug.sh, command/edit.sh, command/frame.sh,
command/help.sh, command/kill.sh, command/quit.sh, command/show.sh,
command/source.sh, command/where.sh, lib/help.sh,
test/check-common.sh.in, test/data/complete.right,
test/data/misc.right, test/test-opts: Bang on help some more.
2008-08-19 rockyb <rockyb>
* command/alias.sh, test/Makefile.am, test/brkpt1.tests,
test/brkpt2.tests, test/brkpt3.tests, test/bug-source.tests,
test/check-common.sh.in, test/command.tests,
test/example/Makefile.am, test/example/settrace.sh,
test/interrupt.tests, test/lopts.tests, test/setshow.tests,
test/settrace.sh, test/settrace.tests, test/sig.tests,
test/sopts.tests, test/subshell1.tests, test/subshell2.tests,
test/subshell3.tests, test/subshell4.tests, test/trace.tests,
test/trace2.tests: Remove more bashisms.
2008-08-19 rockyb <rockyb>
* bashdb-main.inc, test/Makefile.am, test/README,
test/data/Makefile.am, test/data/README, test/example/.cvsignore,
test/unit/.cvsignore: Miscellaneous CVS and auto* administration.
2008-08-19 rockyb <rockyb>
* configure.ac, test/.cvsignore, test/Makefile.am,
test/brkpt1.tests, test/brkpt2.tests, test/bug-source.tests,
test/bugIFS.sh.in, test/command.tests, test/data/brkpt1.cmd,
test/data/brkpt1.right, test/data/brkpt2.cmd,
test/data/brkpt2.right, test/data/bug-source.right,
test/data/list.cmd, test/data/list.right, test/data/setshow.right,
test/data/watch1.cmd, test/data/watch1.right, test/dbg-test1.sh,
test/dbg-test1.sub, test/dbg-test2.sh, test/example/.cvsignore,
test/example/Makefile.am, test/example/README,
test/example/bug-args.sh.in, test/example/bugIFS.sh.in,
test/example/dbg-test1.sh, test/example/dbg-test1.sub,
test/example/dbg-test2.sh, test/example/interrupt.sh.in,
test/interrupt.sh.in, test/interrupt.tests, test/lopts.tests,
test/setshow.tests, test/sopts.tests, test/test-action,
test/test-bug-args, test/test-bugIFS, test/test-command,
test/test-complete, test/test-display, test/test-frame,
test/test-list, test/test-misc, test/test-search, test/test-tbreak,
test/test-watch1, test/test-watch2, test/trace.tests,
test/trace2.tests: Integration script programs moved to
test/example.
2008-08-19 rockyb <rockyb>
* command/show.sh, lib/Makefile.am, lib/processor.sh: Add Command to
show aliases. Need some integration tests though.
2008-08-19 rockyb <rockyb>
* test/data/sig.right: I really need to redo this test.
2008-08-19 rockyb <rockyb>
* command/alias.sh, lib/processor.sh: Add alias and unalias debugger
commands
2008-08-19 rockyb <rockyb>
* test/test-brkpt, test/test-bug-source, test/test-multi,
test/test-opts, test/test-subshell, test/test-tbreak,
test/test-trace, test/unit/test-alias.sh.in,
test/unit/test-bashdb-trace.sh.in, test/unit/test-io.sh.in,
test/unit/test-pre.sh.in, test/unit/test-run.sh.in,
test/unit/test-save-restore.sh.in: Getting closer to having "make
distcheck" work again.
2008-08-19 rockyb <rockyb>
* lib/alias.sh, test/unit/test-alias.sh.in: alias routines and unit
test for it.
2008-08-19 rockyb <rockyb>
* configure.ac, lib/columnize.sh, test/unit/.cvsignore,
test/unit/Makefile.am, test/unit/test-save-restore.sh.in: Add
save/restore unit test from kshdb (and zshdb).
2008-08-19 rockyb <rockyb>
* command/break.sh, lib/processor.sh: Reinstate alias expansion.
2008-08-18 rockyb <rockyb>
* test/data/action.right, test/data/brkpt2.right,
test/data/brkpt3.right, test/data/bug-args.right,
test/data/bugIFS.right, test/data/command.right,
test/data/display.right, test/data/frame.cmd,
test/data/frame.right, test/data/list.right,
test/data/multi1.right, test/data/multi2.right,
test/data/multi3.right, test/data/parm.right,
test/data/settrace.right, test/data/skip.right,
test/data/subshell1.right, test/data/subshell2.right,
test/data/tbreak.right, test/data/watch1.right: Reinstate alias
expansion and make use of it to reduce hard-coded commands.
2008-08-18 rockyb <rockyb>
* command/continue.sh, command/edit.sh, command/examine.sh,
command/file.sh, command/frame.sh, command/help.sh,
command/tracefn.sh, command/where.sh, lib/brk.sh, lib/frame.sh,
lib/help.sh, lib/processor.sh, test/data/sig.right,
test/unit/Makefile.am, test/unit/test-bashdb-trace.sh.in,
test/unit/test-tracefn.sh: Add more commands under new help system.
More code realignment towards zshdb and kshdb.
2008-08-17 rockyb <rockyb>
* Makefile.am, bashdb-main.inc.in, bashdb-trace.in, bashdb.in,
command/Makefile.am, command/break.sh, command/commands.sh,
command/condition.sh, command/continue.sh, command/debug.sh,
command/delete.sh, command/disable.sh, command/display.sh,
command/edit.sh, command/enable.sh, command/eval.sh,
command/frame.sh, command/help.sh, command/quit.sh,
command/restart.sh, command/source.sh, command/where.sh,
configure.ac, dbg-main.sh.in, dbg-opts.sh, doc/bashdb.texi,
lib/.cvsignore, lib/Makefile.am, lib/columnize.sh, lib/dbg-call.sh,
lib/frame.sh, lib/help.sh, lib/processor.sh, test/bug-args.sh.in,
test/bugIFS.sh.in, test/check-common.sh.in, test/data/brkpt2.right,
test/data/bug-source.right, test/data/debug.right,
test/data/finish.right, test/data/frame.right,
test/data/lopts.right, test/data/parm.right,
test/data/settrace.right, test/data/sig.right,
test/data/sopts.right, test/data/tbreak.right,
test/data/watch1.right, test/hanoi.sh.in, test/interrupt.sh.in,
test/lopts.tests, test/settrace.sh, test/test-opts,
test/unit/Makefile.am, test/unit/test-bashdb-trace.sh.in,
test/unit/test-fns.sh.in, test/unit/test-frame.sh.in,
test/unit/test-io.sh.in, test/unit/test-pre.sh.in,
test/unit/test-run.sh.in, test/unit/test-set0.sh.in: Work on help
system. Lots of modularity things to keep in line with kshdb and
zshdb.
2008-08-14 rockyb <rockyb>
* bashdb-trace.in, bashdb.in, dbg-main.sh.in, lib/dbg-call.sh,
lib/frame.sh: Broke bash --debugger when moving trap DEBUG. Damn.
test-settrace is broken by this commit
2008-08-13 rockyb <rockyb>
* bashdb-trace.in, bashdb.in, dbg-main.sh.in, lib/Makefile.am,
lib/dbg-call.sh, test/data/brkpt2.right,
test/data/bug-source.right, test/data/debug.right,
test/data/finish.right, test/data/frame.right,
test/data/parm.right, test/data/sig.right, test/data/tbreak.right:
Move trap DEBUG out of dbg-main.sh and into bashdb in preparation
for adding code to loop when debugged script exits. Move
_Dbg_debugger into lib so we can call it even if bashdb was called
initially. Incompatble change interface to dbg_debugger to set
step_ignore.
2008-08-12 rockyb <rockyb>
* dbg-io.sh, lib/Makefile.am, lib/fns.sh, lib/msg.sh,
lib/save-restore.sh, test/unit/test-fns.sh.in,
test/unit/test-io.sh.in: Split off from fns debugger messages and
save/restore user vars into two different files
2008-08-12 rockyb <rockyb>
* lib/processor.sh, test/data/sig.right: Remove weird IFS setting.
2008-08-11 rockyb <rockyb>
* dbg-opts.sh, test/sopts.tests: Allow --library in short options
since that's what we do. Correct help option on short options and
ignore -L or --library option.
2008-08-11 rockyb <rockyb>
* Makefile.am: dbg-main.inc -> dbg-main.sh
2008-08-11 rockyb <rockyb>
* ChangeLog, Makefile.am, bashdb-trace.in, bashdb.in,
command/frame.sh, command/where.sh, dbg-opts.sh, lib/frame.sh,
test/data/brkpt2.right, test/data/bug-source.right,
test/data/debug.right, test/data/finish.right,
test/data/frame.right, test/data/parm.right, test/data/sig.right,
test/data/sopts.right, test/data/tbreak.right,
test/data/watch1.right: Split off common options-processing routine
into its own file.
2008-08-10 rockyb <rockyb>
* command/Makefile.am, command/backtrace.sh, command/where.sh,
test/data/tbreak.right: backtrace.sh -> where.sh (to match zshdb and
kshdb). Use _Dbg_not_running in it.
2008-08-10 rockyb <rockyb>
* configure.ac, lib/Makefile.am, lib/frame.sh, lib/stack.sh,
test/unit/.cvsignore, test/unit/Makefile.am,
test/unit/test-frame.sh.in, test/unit/test-stack.sh.in: lib/stack.sh
-> lib/frame.sh to match kshdb and zshdb. Other small changes, e.g.
typo: top_srcdir=@top_builddir@.
2008-08-10 rockyb <rockyb>
* ChangeLog, test/check_common.in, test/complete.tests: Test clean
up no longer uses these files.
2008-08-10 rockyb <rockyb>
* lib/sig.sh: Typo in fn name
2008-08-10 rockyb <rockyb>
* configure.ac, test/Makefile.am, test/action.tests,
test/brkpt1.tests, test/brkpt2.tests, test/brkpt3.tests,
test/bug-source.tests, test/check-common.sh.in, test/command.tests,
test/data/brkpt1.right, test/data/brkpt2.right,
test/data/bug-source.right, test/data/list.right,
test/data/sig.right, test/dbg-test1.sh, test/dbg-test1.sh.in,
test/lopts.tests, test/search.tests, test/setshow.tests,
test/sig.tests, test/sopts.tests, test/subshell1.tests,
test/subshell2.tests, test/subshell3.tests, test/test-action,
test/test-bug-args, test/test-bug-source, test/test-bugIFS,
test/test-command, test/test-complete, test/test-debug,
test/test-list, test/test-misc, test/test-multi, test/test-opts,
test/test-setshow, test/test-sig, test/test-trace,
test/test-watch1, test/trace.tests, test/trace2.tests: More work to
clean up Tests. Some bugs fixed. TOP_BUILDDIR -> top_builddir (to
match zshdb)
2008-08-09 rockyb <rockyb>
* Makefile.am, README, test/test-bug-args: test-bug-args: better for
make distcheck. Other small changes.
2008-08-09 rockyb <rockyb>
* ChangeLog, test/unit/Makefile.am, test/unit/test-tracefn.sh: unit
test of function tracing.
2008-08-09 rockyb <rockyb>
* test/check-common.sh.in, test/data/Makefile.am,
test/test-bug-args, test/test-bugIFS, test/test-command,
test/test-complete, test/test-debug, test/test-display,
test/test-finish, test/test-frame, test/test-interrupt: Fix some of
the "make distcheck" breakage. Use /bin/bash -f in tests, not
/bin/sh.
2008-08-09 rockyb <rockyb>
* test/Makefile.am, test/bug-args.tests, test/data/bug-args.right,
test/test-bug-args: Clean up test-bug-args.
2008-08-09 rockyb <rockyb>
* Makefile.am: See previous commit
2008-08-09 rockyb <rockyb>
* ChangeLog, bashdb.in, command/restart.sh, dbg-init.inc,
dbg-init.sh, dbg-io.inc, dbg-io.sh, dbg-main.sh.in,
test/check-common.sh.in, test/data/brkpt2.right,
test/data/bug-source.right, test/data/debug.right,
test/data/finish.right, test/data/frame.right,
test/data/parm.right, test/data/sig.right, test/data/tbreak.right,
test/data/watch1.cmd, test/data/watch1.right, test/test-debug,
test/test-watch1, test/test-watch2, test/trace2.tests,
test/unit/test-io.sh.in: Check for dbg-main.sh. dbg-{init,io}.inc ->
dbg-{init.io}.sh Bang on tests some more to get them to be more
general. Remove basename hack in restart. Only add --debugger if we
didn't invoke via bashdb.
2008-08-09 rockyb <rockyb>
* test/.cvsignore, test/Makefile.am, test/bugIFS.tests,
test/check-common.sh.in, test/data/.cvsignore,
test/data/misc-output.right, test/data/misc.cmd,
test/data/misc.right, test/data/prof2.cmd, test/data/setshow.right,
test/data/settrace.right, test/data/watch1.cmd,
test/data/watch1.right, test/debug.tests, test/display.tests,
test/finish.tests, test/frame.tests, test/hanoi.sh.in,
test/list.tests, test/lopts.tests, test/misc.tests,
test/multi1.tests, test/multi2.tests, test/multi3.tests,
test/multi4.tests, test/parm.tests, test/restart.tests,
test/setshow.tests, test/settrace.sh, test/settrace.tests,
test/sig.tests, test/skip.tests, test/sopts.tests,
test/subshell1.tests, test/subshell2.tests, test/subshell3.tests,
test/subshell4.tests, test/tbreak.tests, test/test-bugIFS,
test/test-debug, test/test-display, test/test-finish,
test/test-frame, test/test-list, test/test-misc, test/test-multi,
test/test-opts, test/test-parm, test/test-restart,
test/test-search, test/test-setshow, test/test-settrace,
test/test-sig, test/test-skip, test/test-subshell,
test/test-tbreak, test/test-trace, test/test-watch1,
test/test-watch2, test/trace2.tests, test/unit/.cvsignore,
test/watch1.tests, test/watch2.tests: Move debugger command files
and the output to check against into data. Reduce test bulk and one
level of indirection in many of the simple cases.
2008-08-09 rockyb <rockyb>
* test/check-common.sh.in: Old check_common.in
2008-08-08 rockyb <rockyb>
* configure.ac, test/Makefile.am, test/action.cmd,
test/action.right, test/action.tests, test/brkpt1.cmd,
test/brkpt1.right, test/brkpt1.tests, test/brkpt2.cmd,
test/brkpt2.right, test/brkpt2.tests, test/brkpt3.cmd,
test/brkpt3.right, test/brkpt3.tests, test/bug-args.cmd,
test/bug-args.right, test/bug-args.tests, test/bug-source.cmd,
test/bug-source.right, test/bug-source.tests, test/bugIFS.cmd,
test/bugIFS.right, test/command.cmd, test/command.right,
test/command.tests, test/complete.cmd, test/complete.right,
test/complete.tests, test/continue.cmd, test/data/Makefile.am,
test/data/action.cmd, test/data/action.right, test/data/brkpt1.cmd,
test/data/brkpt1.right, test/data/brkpt2.cmd,
test/data/brkpt2.right, test/data/brkpt3.cmd,
test/data/brkpt3.right, test/data/bug-args.cmd,
test/data/bug-args.right, test/data/bug-source.cmd,
test/data/bug-source.right, test/data/bugIFS.cmd,
test/data/bugIFS.right, test/data/command.cmd,
test/data/command.right, test/data/complete.cmd,
test/data/complete.right, test/data/continue.cmd,
test/data/debug.cmd, test/data/debug.right, test/data/debug2.cmd,
test/data/display.cmd, test/data/display.right,
test/data/finish.cmd, test/data/finish.right, test/data/frame.cmd,
test/data/frame.right, test/data/interrupt.right,
test/data/list.cmd, test/data/list.right, test/data/lopts.right,
test/data/misc-output.right, test/data/misc.cmd,
test/data/misc.right, test/data/multi1.cmd, test/data/multi1.right,
test/data/multi2.cmd, test/data/multi2.right, test/data/multi3.cmd,
test/data/multi3.right, test/data/multi4.cmd,
test/data/multi4.right, test/data/parm.cmd, test/data/parm.right,
test/data/prof1.cmd, test/data/prof2.cmd, test/data/quit.cmd,
test/data/restart.cmd, test/data/restart.right,
test/data/restart2.cmd, test/data/search.cmd,
test/data/search.right, test/data/setshow.cmd,
test/data/setshow.right, test/data/settrace.cmd,
test/data/settrace.right, test/data/sig.cmd, test/data/sig.right,
test/data/skip.cmd, test/data/skip.right, test/data/sopts.right,
test/data/subshell1.cmd, test/data/subshell1.right,
test/data/subshell2.cmd, test/data/subshell2.right,
test/data/subshell3.cmd, test/data/subshell3.right,
test/data/subshell4.cmd, test/data/subshell4.right,
test/data/tbreak.cmd, test/data/tbreak.right,
test/data/trace.right, test/data/trace2.right,
test/data/watch1.cmd, test/data/watch1.right, test/data/watch2.cmd,
test/data/watch2.right, test/debug.cmd, test/debug.right,
test/debug.tests, test/debug2.cmd, test/display.cmd,
test/display.right, test/finish.cmd, test/finish.right,
test/frame.cmd, test/frame.right, test/interrupt.right,
test/list.cmd, test/list.right, test/lopts.right,
test/misc-output.right, test/misc.cmd, test/misc.right,
test/multi1.cmd, test/multi1.right, test/multi2.cmd,
test/multi2.right, test/multi3.cmd, test/multi3.right,
test/multi4.cmd, test/multi4.right, test/parm.cmd, test/parm.right,
test/prof1.cmd, test/prof2.cmd, test/quit.cmd, test/restart.cmd,
test/restart.right, test/restart2.cmd, test/search.cmd,
test/search.right, test/setshow.cmd, test/setshow.right,
test/settrace.cmd, test/settrace.right, test/sig.cmd,
test/sig.right, test/skip.cmd, test/skip.right, test/sopts.right,
test/subshell1.cmd, test/subshell1.right, test/subshell2.cmd,
test/subshell2.right, test/subshell3.cmd, test/subshell3.right,
test/subshell4.cmd, test/subshell4.right, test/tbreak.cmd,
test/tbreak.right, test/test-action, test/test-brkpt,
test/test-brkpt1, test/test-bug-args, test/test-bug-source,
test/test-command, test/test-complete, test/test-debug,
test/trace.right, test/trace2.right, test/watch1.cmd,
test/watch1.right, test/watch2.cmd, test/watch2.right: Add data
directory. "make check" is broken until more tests are converted.
2008-08-08 rockyb <rockyb>
* command/Makefile.am, command/eval.sh, command/print.sh: Put print
and eval in same file
2008-08-08 rockyb <rockyb>
* dbg-main.sh.in: See previous commit
2008-08-08 rockyb <rockyb>
* dbg-main.sh.in, lib/Makefile.am, lib/brk.inc, lib/brk.sh,
lib/commands.inc, lib/commands.sh, lib/complete.inc,
lib/complete.sh, lib/file.inc, lib/file.sh, lib/fns.inc,
lib/fns.sh, lib/help.inc, lib/help.sh, lib/hist.inc, lib/hist.sh,
lib/info.inc, lib/info.sh, lib/journal.inc, lib/journal.sh,
lib/list.inc, lib/list.sh, lib/processor.inc, lib/processor.sh,
lib/run.inc, lib/run.sh, lib/sig.inc, lib/sig.sh, lib/stack.inc,
lib/stack.sh, test/sig.right, test/unit/test-fns.sh.in,
test/unit/test-run.sh.in, test/unit/test-stack.sh.in: More .inc ->
.sh
2008-08-08 rockyb <rockyb>
* configure.ac, test/Makefile.am, test/action.tests,
test/brkpt1.tests, test/brkpt2.tests, test/brkpt3.tests,
test/bug-args.tests, test/bug-source.tests, test/command.tests,
test/complete.tests, test/debug.tests, test/display.tests,
test/finish.tests, test/frame.tests, test/list.tests,
test/lopts.tests, test/misc.tests, test/multi1.tests,
test/multi2.tests, test/multi3.tests, test/multi4.tests,
test/parm.tests, test/restart.tests, test/search.tests,
test/setshow.tests, test/sig.right, test/sig.tests,
test/skip.tests, test/sopts.tests, test/subshell1.tests,
test/subshell2.tests, test/subshell3.tests, test/tbreak.tests,
test/test-action, test/test-brkpt, test/test-brkpt1,
test/test-bug-args, test/test-bug-source, test/test-bugIFS,
test/test-command, test/test-complete, test/test-debug,
test/test-display, test/test-frame, test/test-interrupt,
test/test-list, test/test-misc, test/test-multi, test/test-opts,
test/test-parm, test/test-restart, test/test-setshow,
test/test-settrace, test/test-sig, test/test-skip,
test/test-subshell, test/test-tbreak, test/test-trace,
test/test-watch1, test/test-watch2, test/trace.tests,
test/watch1.tests, test/watch2.tests: check_common.in =>
check-common.sh
2008-08-08 rockyb <rockyb>
* test/bugIFS.cmd, test/bugIFS.right, test/bugIFS.sh.in,
test/bugIFS.tests, test/check_common.in, test/test-bugIFS: Clean up
and shorten bugIFS.sh and the testing framework a little. More later
2008-08-07 rockyb <rockyb>
* bashdb-trace.in, bashdb.in, command/help.sh, command/source.sh,
lib/processor.inc, test/sig.right, test/unit/test-fns.sh.in: Some
_Dbg_msg turned into error _Dbg_errmsg. Some .inc -> .sh; cosmetic
changes.
2008-08-07 rockyb <rockyb>
* command/display.sh: Forgot to add previously
2008-08-07 rockyb <rockyb>
* .cvsignore, dbg-pre.sh.in: Missing files, etc.
2008-08-07 rockyb <rockyb>
* Makefile.am, bashdb-trace.in, bashdb.in: Install bugs caused by
.inc->.sh change.
2008-08-07 rockyb <rockyb>
* Makefile.am, bashdb-trace.in, bashdb.in, configure.ac,
dbg-init.inc, dbg-main.inc.in, dbg-main.sh.in, dbg-pre.sh,
lib/Makefile.am, lib/pre.inc.in, test/unit/test-pre.sh.in: More .inc
-> .sh
2008-08-07 rockyb <rockyb>
* command/Makefile.am, command/backtrace.cmd, command/backtrace.sh,
command/break.cmd, command/break.sh, command/commands.cmd,
command/commands.sh, command/condition.cmd, command/condition.sh,
command/continue.cmd, command/continue.sh, command/debug.cmd,
command/debug.sh, command/delete.cmd, command/delete.sh,
command/disable.cmd, command/disable.sh, command/edit.cmd,
command/edit.sh, command/enable.cmd, command/enable.sh,
command/eval.cmd, command/eval.sh, command/examine.cmd,
command/examine.sh, command/file.cmd, command/file.sh,
command/frame.cmd, command/frame.sh, command/handle.cmd,
command/handle.sh, command/help.cmd, command/help.sh,
command/kill.cmd, command/kill.sh, command/linetrace.cmd,
command/linetrace.sh, command/load.cmd, command/load.sh,
command/log.cmd, command/log.sh, command/print.cmd,
command/print.sh, command/pwd.cmd, command/pwd.sh,
command/quit.cmd, command/quit.sh, command/restart.cmd,
command/restart.sh, command/set.cmd, command/set.sh,
command/show.cmd, command/show.sh, command/signal.cmd,
command/signal.sh, command/source.cmd, command/source.sh,
command/stepping.cmd, command/stepping.sh, command/tracefn.cmd,
command/tracefn.sh, command/tty.cmd, command/tty.sh,
command/undisplay.cmd, command/watch.cmd, command/watch.sh,
dbg-main.inc.in, lib/brk.inc, test/sig.right,
test/unit/test-bashdb-trace.sh.in: *.cmd -> *.sh. Combine display
stuff in display.sh
2008-08-06 rockyb <rockyb>
* test/unit/test-run.sh.in: Get a couple of _Dbg_not_running test
working.
2008-08-06 rockyb <rockyb>
* command/source.cmd, lib/file.inc, test/unit/Makefile.am: Cosmetic
changes.
2008-08-06 rockyb <rockyb>
* command/continue.cmd, command/frame.cmd, command/stepping.cmd,
configure.ac, dbg-main.inc.in, lib/processor.inc, lib/run.inc: Turn
run from alias into fn
2008-08-06 rockyb <rockyb>
* test/unit/test-run.sh.in: Add missing file
2008-08-06 rockyb <rockyb>
* test/sig.right, test/tbreak.right, test/unit/Makefile.am,
test/unit/test-bashdb-trace.sh.in, test/unit/test-fns.sh.in,
test/unit/test-stack.sh.in: Add generic test of running program
debugged. test/unit: Hopefully more precice use of src/build
directories
2008-08-06 rockyb <rockyb>
* test/unit/test-fns.sh.in: Remove a test of set $? which currently
does not work and we do not know how to fix
2008-08-06 rockyb <rockyb>
* command/stepping.cmd: step/next moved into a command file
2008-08-06 rockyb <rockyb>
* test/unit/test-fns.sh.in: Add more set_dol_q tests
2008-08-06 rockyb <rockyb>
* command/Makefile.am, command/down.cmd, command/frame.cmd,
command/log.cmd, command/restart.cmd, command/up.cmd,
lib/Makefile.am, lib/log.inc, lib/processor.inc, lib/run.inc: Move
more command things into command.
2008-08-05 rockyb <rockyb>
* builtin/set0.c: Add copyleft.
2008-08-04 rockyb <rockyb>
* lib/journal.inc: journal.inc - var journaling; formerly split off
from file.inc
2008-08-04 rockyb <rockyb>
* test/unit/test-set0.sh.in: Skip set0 test if it's not around.
2008-08-04 rockyb <rockyb>
* builtin/set0.c, command/Makefile.am, command/tracefn.cmd,
lib/Makefile.am, lib/tracefn.inc, test/unit/test-bashdb-trace.sh.in:
Set0 patches from Masatake-san: Fix comments.
(set0_builtin): Free $0 before overwriting. Return SUCCESS
instead of FAILURE. lib/tracefn.inc -> command/tracefn.cmd
2008-08-04 rockyb <rockyb>
* command/Makefile.am, command/linetrace.cmd, command/trace.cmd,
test/unit/shunit2, test/unit/test-fns.sh.in: Add set_dol_q test. Add
more is_function tests. trace.cmd->linetrace.cmd to distinguish
function trace.
2008-08-04 rockyb <rockyb>
* bashdb-trace.in, bashdb.in, command/restart.cmd, dbg-init.inc,
dbg-set-d-vars.inc, lib/Makefile.am, lib/file.inc,
lib/processor.inc, lib/sig.inc, test/watch1.right: journal code
split off into its own file. Rename _Dbg_steps to _Dbg_step_ignore
to match pdb, pydb, zshdb.
2008-08-03 rockyb <rockyb>
* bashdb-trace.in, bashdb.in, command/backtrace.cmd,
command/restart.cmd, dbg-init.inc, test/unit/test-pre.sh.in: Motion
movement bugs.
2008-08-02 rockyb <rockyb>
* .cvsignore, ChangeLog, Makefile.am, builtin/.cvsignore,
command/Makefile.am, command/edit.cmd, command/file.cmd,
command/handle.cmd, command/set.cmd, command/show.cmd,
command/signal.cmd, command/watch.cmd, configure.ac, dbg-file.inc,
dbg-info.inc, dbg-pre.inc.in, lib/.cvsignore, lib/Makefile.am,
lib/brk.inc, lib/file.inc, lib/pre.inc.in, lib/set.inc,
lib/show.inc: See above.
2008-08-02 rockyb <rockyb>
* Makefile.am, command/Makefile.am, command/handle.cmd,
command/signal.cmd, dbg-main.inc.in, lib/Makefile.am,
lib/complete.inc, lib/info.inc, lib/sig.inc: More of the same as
before
2008-08-02 rockyb <rockyb>
* ChangeLog, command/Makefile.am, dbg-fns.inc, dbg-main.inc.in,
dbg-stack.inc, lib/Makefile.am, lib/fns.inc, lib/stack.inc,
test/unit/test-fns.sh.in: More to lib. Fix install command location
(singular now, not plural). Should work when installed now.
2008-08-02 rockyb <rockyb>
* Makefile.am, command/Makefile.am, command/backtrace.cmd,
command/break.cmd, command/commands.cmd, command/condition.cmd,
command/continue.cmd, command/delete.cmd, command/disable.cmd,
command/enable.cmd, command/frame.cmd, command/help.cmd,
command/kill.cmd, command/undisplay.cmd, dbg-main.inc.in,
lib/Makefile.am, lib/brk.inc, lib/commands.inc, lib/help.inc,
lib/info.inc, test/unit/.cvsignore, test/unit/test-stack.sh.in: More
command files. More files moved into lib.
2008-08-02 rockyb <rockyb>
* ChangeLog, Makefile.am, dbg-commands.inc, dbg-complete.inc,
dbg-log.inc, dbg-main.inc.in, dbg-processor.inc, dbg-sig.inc,
dbg-tracefn.inc, lib/.cvsignore, lib/Makefile.am, lib/commands.inc,
lib/complete.inc, lib/log.inc, lib/processor.inc, lib/sig.inc,
lib/tracefn.inc, test/sig.right, test/unit/test-bashdb-trace.sh,
test/unit/test-bashdb-trace.sh.in: Move more files around.
2008-08-02 rockyb <rockyb>
* lib/Makefile.am: Forgot to add Makefile.am for new lib directory
2008-08-02 rockyb <rockyb>
* ChangeLog, Makefile.am, command/.cvsignore, command/Makefile.am,
command/backtrace.cmd, command/debug.cmd, command/down.cmd,
command/edit.cmd, command/eval.cmd, command/examine.cmd,
command/file.cmd, command/frame.cmd, command/kill.cmd,
command/load.cmd, command/print.cmd, command/pwd.cmd,
command/quit.cmd, command/restart.cmd, command/source.cmd,
command/trace.cmd, command/tty.cmd, command/up.cmd,
commands/.cvsignore, commands/Makefile.am, commands/backtrace.cmd,
commands/debug.cmd, commands/down.cmd, commands/eval.cmd,
commands/examine.cmd, commands/file.cmd, commands/frame.cmd,
commands/kill.cmd, commands/load.cmd, commands/print.cmd,
commands/pwd.cmd, commands/quit.cmd, commands/restart.cmd,
commands/source.cmd, commands/trace.cmd, commands/tty.cmd,
commands/up.cmd, configure.ac, dbg-brk.inc, dbg-edit.inc,
dbg-file.inc, dbg-help.inc, dbg-hist.inc, dbg-list.inc,
dbg-main.inc.in, dbg-processor.inc, dbg-set-d-vars.inc,
dbg-set.inc, dbg-show.inc, lib/brk.inc, lib/help.inc, lib/hist.inc,
lib/list.inc, lib/set.inc, lib/show.inc: Start to move library files
into lib. More work sorting out command files.
2008-07-29 rockyb <rockyb>
* commands/eval.cmd, commands/print.cmd, dbg-file.inc,
dbg-init.inc, dbg-processor.inc, dbg-set-d-vars.inc, test/sig.right:
Code cleanu, better modularization
2008-07-29 rockyb <rockyb>
* commands/down.cmd, dbg-init.inc, dbg-processor.inc, dbg-stack.inc:
More cleanups (as a result looking at and writing zshdb)
2008-07-28 rockyb <rockyb>
* dbg-main.inc.in: dbg-cmd.inc -> dbg-processor.inc
2008-07-27 rockyb <rockyb>
* commands/Makefile.am, commands/backtrace.cmd, commands/down.cmd,
commands/frame.cmd, commands/up.cmd, dbg-info.inc,
dbg-processor.inc, dbg-sig.inc, dbg-stack.inc: Move more commands
indo comands. do_stack_trace -> do_backtrace
2008-07-26 rockyb <rockyb>
* test/sig.right, test/watch1.right: See above.
2008-07-26 rockyb <rockyb>
* Makefile.am, dbg-cmds.inc, dbg-processor.inc, test/brkpt2.right,
test/bug-source.right, test/debug.right, test/finish.right,
test/frame.right, test/parm.right, test/sig.right,
test/sopts.right, test/tbreak.right: dbg-cmds.inc ->
dbg-processor.inc to make more in line with ruby-debug name
2008-07-26 rockyb <rockyb>
* bashdb.in, commands/Makefile.am, commands/quit.cmd, dbg-cmds.inc,
dbg-sig.inc: quit is in its own command file.
2008-07-26 rockyb <rockyb>
* ChangeLog, dbg-cmds.inc, dbg-commands.inc, dbg-sig.inc,
test/sig.right: _Dbg_cmdloop -> _Dbg_process_commands to bring in
line with ruby-debug name.
2008-07-22 rockyb <rockyb>
* bashdb-trace.in: Update copyright date.
2008-07-18 rockyb <rockyb>
* bashdb-trace.in, dbg-init.inc, dbg-pre.inc.in,
test/settrace.right, test/settrace.sh,
test/unit/test-bashdb-trace.sh: Make debugger work under set -u. Add
set -u to settrace.
2008-07-17 rockyb <rockyb>
* bashdb-trace.in: Make a little more set -u friendly: change "-n
$1" to "$# > 0"
2008-07-17 rockyb <rockyb>
* bashdb-trace.in: Replace -n $1 test with $# which works under set
-u.
2008-07-16 rockyb <rockyb>
* bashdb-trace.in, configure.ac, test/unit/Makefile.am,
test/unit/test-bashdb-trace.sh.in: Save and restore set options when
sourceing bashdb-trace. Add unit test for saving/restoring set
options.
2008-07-13 rockyb <rockyb>
* Makefile.am, builtin/Makefile.am, commands/.cvsignore,
commands/Makefile.am, commands/debug.cmd, commands/eval.cmd,
commands/examine.cmd, commands/file.cmd, commands/kill.cmd,
commands/load.cmd, commands/print.cmd, commands/pwd.cmd,
commands/restart.cmd, commands/source.cmd, commands/trace.cmd,
commands/tty.cmd, configure.ac, dbg-cmds.inc, test/sig.right: Move
debugger commands into directory commands.
2008-07-13 rockyb <rockyb>
* Makefile.am, NEWS, builtin/Makefile.am, dbg-init.inc: Fix
installating built-in's readarray and set0.
2008-07-12 rockyb <rockyb>
* bashdb.in, dbg-cmds.inc, dbg-init.inc, test/brkpt2.right,
test/bug-source.right, test/debug.right, test/finish.right,
test/frame.right, test/parm.right, test/sig.right,
test/tbreak.right, test/watch1.right: Set $0 if the builtin is
available.
2008-07-12 rockyb <rockyb>
* bashdb.in, configure.ac, doc/bashdb.texi, test/unit/.cvsignore,
test/unit/Makefile.am, test/unit/test-pre.sh.in,
test/unit/test-set0.sh.in: Add unit test for set0 builtin.
doc/bashdb.texi: add { escapes in PS4 example. bashdb.in: don't
tryoe to initialize _Dbg_ver more than once test-pre.sh.in: was
using builddir rather than srcdir.
2008-07-05 rockyb <rockyb>
* dbg-stack.inc: Simpler emacs line.
2008-07-05 rockyb <rockyb>
* configure.ac, dbg-stack.inc, test/unit/.cvsignore,
test/unit/Makefile.am, test/unit/test-stack.sh.in: Add
_Dbg_print_frame to make a little more like ruby-debug. Add minimal
unit test for _Dbg_print_frame.
2008-06-19 rockyb <rockyb>
* doc/bashdb.texi: Small formatting changes.
2008-06-19 rockyb <rockyb>
* doc/bashdb.texi: More detail regarding calling inside the
debugger.
2008-06-11 rockyb <rockyb>
* dbg-pre.inc.in, dbg-tracefn.inc, test/unit/test-fns.sh.in,
test/unit/test-pre.sh.in: More tests, more quirks found by tests.
2008-06-09 rockyb <rockyb>
* builtin/.cvsignore, dbg-cmds.inc, dbg-fns.inc,
test/unit/test-fns.sh.in: copies() to create a string with that many
copies. remove is_defined_old.
2008-06-08 rockyb <rockyb>
* Makefile.am, dbg-cmds.inc, dbg-fns.inc, dbg-io.inc,
dbg-sig-ret.inc, dbg-tracefn.inc, test/unit/test-fns.sh.in: Add
errmsg routine distinct from msg routine. Add _Dbg_is_traced more
unit tests.
2008-06-07 rockyb <rockyb>
* dbg-fns.inc, test/unit/test-fns.sh.in: Add parse linespec unit
tests and fix some small robustness bugs.
2008-06-06 rockyb <rockyb>
* dbg-cmds.inc: Uninitialized variable bug on restart
2008-06-06 rockyb <rockyb>
* dbg-brk.inc, dbg-fns.inc, dbg-help.inc, dbg-sig.inc,
dbg-tracefn.inc, doc/bashdb.texi, test/sig.right: Add "continue -"
to turn off debugger and allow it to run full speed. Function
tracing also turns off debugger stepping while tracing.
2008-06-06 rockyb <rockyb>
* dbg-info.inc: Cleanups.
2008-06-06 rockyb <rockyb>
* configure.ac, dbg-fns.inc: Replace 'cut' with a parameter
substitution primative. Reduce backtick use.
2008-06-05 rockyb <rockyb>
* dbg-cmds.inc, test/unit/.cvsignore: Remove some depricated
backticks.
2008-06-05 rockyb <rockyb>
* test/sig.right: Really need to redo this test because line numbers
change too much.
2008-06-05 rockyb <rockyb>
* Makefile.am, dbg-cmds.inc, dbg-file.inc, dbg-fns.inc, dbg-io.inc,
dbg-main.inc.in, dbg-tracefn.inc, test/sig.right,
test/test-restart, test/unit/test-fns.sh.in: Add ability to trace a
function.
2008-06-03 rockyb <rockyb>
* configure.ac, dbg-file.inc, dbg-io.inc, test/unit/.cvsignore,
test/unit/Makefile.am, test/unit/test-io.sh.in: Add another unit
test of fns in dbg-io.inc. readin routine moved from dbg-io.inc to
dbg-file.inc
2008-06-02 rockyb <rockyb>
* dbg-file.inc, dbg-io.inc, dbg-log.inc: kshdb compatibility and
modernization.
2008-06-02 rockyb <rockyb>
* ChangeLog, Makefile.am, configure.ac, dbg-file.inc,
test/unit/.cvsignore, test/unit/Makefile.am,
test/unit/test-fns.sh.in, test/unit/test-pre.sh.in: More unit tests.
More ksh93 compatability.
2008-06-01 rockyb <rockyb>
* builtin/.cvsignore, configure.ac, dbg-cmds.inc, dbg-fns.inc,
dbg-hist.inc, dbg-list.inc, test/Makefile.am, test/sig.right,
test/unit/.cvsignore, test/unit/Makefile.am, test/unit/shunit2,
test/unit/test-fns.sh.in: START UNIT TESTS! Some code clean ups as I
learn how to program bash a little better.
2008-05-27 rockyb <rockyb>
* bashdb.in, builtin/Makefile.am, dbg-brk.inc, dbg-cmds.inc,
dbg-edit.inc, dbg-fns.inc, dbg-help.inc, dbg-init.inc, dbg-io.inc,
dbg-list.inc, dbg-main.inc.in, dbg-pre.inc.in, dbg-sig.inc,
test/sig.right: Make more compatible with ksh93. Some work to
separate builtins into their own directory.
2008-05-24 rockyb <rockyb>
* doc/bashdb.texi: Small typos. Add the straight-quote in typewriter
font.
2008-05-23 rockyb <rockyb>
* Makefile.am, builtin/Makefile.am, builtin/readarray.c,
builtin/set0.c, configure.ac, readarray.c: Add new builtin set0 to
set $0. Now that we have a couple of these, create a builtin
directory.
2008-05-22 rockyb <rockyb>
* configure.ac: Minor code changes
2008-05-22 rockyb <rockyb>
* Makefile.am, configure.ac, getopt-test.sh: Add getopt long test to
address #1915306 better.
2008-05-21 rockyb <rockyb>
* bashdb.in, configure.ac: Bug in showing correct way to get help
when short option is in effect. Bug reported by Josh May.
2008-05-17 rockyb <rockyb>
* doc/bashdb.texi: e.g. -> e.g.@:
2008-04-15 rockyb <rockyb>
* doc/bashdb.texi, test/setshow.cmd, test/setshow.right: Document
set autoeval. Add autoeval test.
2008-04-12 rockyb <rockyb>
* dbg-cmds.inc, dbg-fns.inc, dbg-help.inc, dbg-init.inc,
dbg-set.inc, dbg-show.inc, test/complete.right, test/misc.right,
test/sig.right: Add set autoeval like ruby-debug has.
2008-02-05 rockyb <rockyb>
* bashdb-trace.in, bashdb.in, doc/bashdb.texi: Change info-dir entry
as suggested in #1844025 . Some housekeeping.
2008-01-11 rockyb <rockyb>
* emacs/Makefile.am: Don't give an error on "make check" if Emacs is
not around.
2008-01-10 rockyb <rockyb>
* doc/bashdb.texi: Remove redundancy.
2008-01-03 rockyb <rockyb>
* Makefile.am, dbg-edit.inc: Add gdb's edit command.
2008-01-03 rockyb <rockyb>
* dbg-brk.inc, dbg-cmds.inc, dbg-fns.inc, dbg-help.inc,
dbg-main.inc.in, doc/bashdb.texi, test/sig.right: Add gdb's 'edit'
command.
2007-12-01 rockyb <rockyb>
* emacs/bashdb-test.el.in: Add a marker-filter test.
2007-11-30 rockyb <rockyb>
* emacs/bashdb.el: Was creating duplicate buffers.
2007-11-26 rockyb <rockyb>
* emacs/bashdb.el: Make sure we have emacs 22 or greater.
2007-11-25 rockyb <rockyb>
* emacs/bashdb.el: Make a major mode for backtrace
2007-11-20 rockyb <rockyb>
* emacs/bashdb.el: bashdb-goto-trace-line; to goto a trace line show
in a shell in bashdbtrack. Attempt to use define-minor-mode.
bashdb-bashdbtrack -> bashdbtrack for when we split off to another
file.
2007-11-17 rockyb <rockyb>
* emacs/bashdb.el: Set --annotate=3 which is what it is in gdba
2007-11-17 rockyb <rockyb>
* emacs/bashdb.el: Add an advise function to hook into gud-reset.
2007-11-15 rockyb <rockyb>
* emacs/bashdb.el: Make like the others (pydb and rdebug)
2007-11-14 rockyb <rockyb>
* dbg-hist.inc: Use HISTSIZE environment variable.
2007-11-13 rockyb <rockyb>
* test/run-watch2: .
2007-11-13 rockyb <rockyb>
* test/sopts.right: Update sopts.
2007-11-13 rockyb <rockyb>
* test/Makefile.am, test/run-action, test/run-all, test/run-brkpt,
test/run-brkpt1, test/run-bug-args, test/run-bug-source,
test/run-bugIFS, test/run-command, test/run-complete,
test/run-debug, test/run-display, test/run-finish, test/run-frame,
test/run-interrupt, test/run-list, test/run-misc, test/run-multi,
test/run-opts, test/run-parm, test/run-restart, test/run-search,
test/run-setshow, test/run-settrace, test/run-sig, test/run-skip,
test/run-subshell, test/run-tbreak, test/run-trace,
test/run-watch1, test/test-action, test/test-all, test/test-brkpt,
test/test-brkpt1, test/test-bug-args, test/test-bug-source,
test/test-bugIFS, test/test-command, test/test-complete,
test/test-debug, test/test-display, test/test-finish,
test/test-frame, test/test-interrupt, test/test-list,
test/test-misc, test/test-multi, test/test-opts, test/test-parm,
test/test-restart, test/test-search, test/test-setshow,
test/test-settrace, test/test-sig, test/test-skip,
test/test-subshell, test/test-tbreak, test/test-trace,
test/test-watch1, test/test-watch2: run-* -> test-* to match other
debuggers.
2007-11-13 rockyb <rockyb>
* dbg-set.inc, test/Makefile.am, test/setshow.right: Had broke "set
listsize"
2007-11-13 rockyb <rockyb>
* test/Makefile.am: Don't need setshow-output.right?
2007-11-13 rockyb <rockyb>
* dbg-set.inc, doc/bashdb.texi, test/Makefile.am, test/misc.cmd,
test/misc.right, test/run-setshow, test/setshow.cmd,
test/setshow.right, test/setshow.tests: Add set history commands and
document that. Split off set/show testing from misc.
2007-11-12 rockyb <rockyb>
* doc/bashdb.texi: Document --command and --exec-command.
2007-11-12 rockyb <rockyb>
* bashdb-trace.in, bashdb.in: --command and --exec-command have same
meaning as they do in gdb.
2007-11-12 rockyb <rockyb>
* dbg-cmds.inc: Disable history manipulation. Need to figure out how
to deal with adding "-" as a command.
2007-11-12 rockyb <rockyb>
* dbg-cmds.inc, dbg-fns.inc, dbg-hist.inc, dbg-init.inc,
dbg-show.inc, dbg-sig.inc, test/brkpt2.right, test/misc.right,
test/run-misc, test/sig.right, test/watch1.right: Fix bug in
displaying watch number. Add/start "show history". .bashdb_hist now
stores history.
2007-11-07 rockyb <rockyb>
* test/settrace.right: See above
2007-11-07 rockyb <rockyb>
* bashdb-trace.in, test/settrace.sh: Revert code for set_trace since
alias doesn't work. Revise test to use both debugger and set_trace.
2007-11-07 rockyb <rockyb>
* emacs/bashdb.el: Remove annotation lines in bashdbtrace.
2007-11-05 rockyb <rockyb>
* emacs/bashdb.el: Improper breakpoint buffer string manipulation.
2007-11-05 rockyb <rockyb>
* emacs/bashdb.el: Not all Emacs have split-string-and-unquote.
2007-11-05 rockyb <rockyb>
* test/settrace.right, test/settrace.sh, test/sig.right: sig.right:
was checking for previous erroneous stack entry behavior.
settrace.*: convert set_trace to debugger. It does point out that
the set_trace alias doesn't work properly though.
2007-11-05 rockyb <rockyb>
* dbg-cmds.inc, dbg-stack.inc, emacs/bashdb.el: dbg-stack.inc: fix
bug when stack adjustment offset given was not 2. bashdb.el: stack
buffer now uses fringe marker. dbg-cmds.inc: bug in not showing
stack buffer correctly after a stack-moving command. (In truth
though this wasn't possible before because of the dbg-stack.inc bug)
2007-11-04 rockyb <rockyb>
* emacs/bashdb.el: Revise/expand bashdb command documentation.
2007-11-04 rockyb <rockyb>
* dbg-cmds.inc, emacs/bashdb-test.el.in, emacs/bashdb.el: Fix more
bugs in new annotation mode. Stack tracks correctly now. More field
coloring, more tests.
2007-11-03 rockyb <rockyb>
* emacs/bashdb-test.el.in, emacs/bashdb.el: bashdb.el: make
bashdb-script-name more Lisp idiomatic. We also now parse the whther
the --annotation option was given and only set multiple windows if
that is set. Use gud-target-name in annotation buffers and set
gud-target-name in those buffers too. bashdb-test.el.in: modify
test of bashdb-script-name for new interface and to check whether
--annotation was given.
2007-11-02 rockyb <rockyb>
* emacs/bashdb.el: Code reorganized
2007-11-02 rockyb <rockyb>
* emacs/bashdb.el: a little more DRY.
2007-11-02 rockyb <rockyb>
* emacs/bashdb-test.el.in, emacs/bashdb.el: Parse all of the bashdb
options. Delete gud buffer before rename if it is already there and
use the short filename. Clean up regression tests (run them all now)
and add a couple more.
2007-11-02 rockyb <rockyb>
* emacs/bashdb.el: A hacky way to get the current buffer to show the
file name rather than '1' from "--annotate 1"
2007-10-30 rockyb <rockyb>
* NEWS, THANKS, bashdb-trace.in: Dbg_set_trace -> Dbg_debugger more
often. Thank Alberto Griggio. Note what's happened.
2007-10-30 rockyb <rockyb>
* bashdb.in, emacs/bashdb.el: bashdb.in: correct long option
"annotate" option bashdb.el: correct regexps for stack and
breakpoint entries
2007-10-29 rockyb <rockyb>
* bashdb-trace.in, bashdb.in, dbg-help.inc, dbg-show.inc,
emacs/bashdb.el, test/brkpt2.right, test/bug-source.right,
test/debug.right, test/finish.right, test/frame.right,
test/misc.right, test/parm.right, test/sig.right,
test/tbreak.right, test/watch1.right: annotate now takes an integer
parameter. bashdb-trace.in: bring in line with bashdb - add annotate
2007-10-29 rockyb <rockyb>
* bashdb.in, configure.ac, dbg-cmds.inc, dbg-init.inc,
emacs/bashdb.el, test/brkpt2.right, test/bug-source.right,
test/debug.right, test/finish.right, test/frame.right,
test/parm.right, test/sig.right, test/tbreak.right,
test/watch1.right: Add "set/show annotate" and guda-like emacs
support. Adds buffers for breakpoints and frames in addition to the
source code and command buffers.
2007-10-27 rockyb <rockyb>
* ChangeLog, NEWS: Small typo
2007-10-27 rockyb <rockyb>
* test/run-bugIFS: Remove temporary file.
2007-10-27 rockyb <rockyb>
* ChangeLog, INSTALL, NEWS, configure.ac, test/bugIFS.right,
test/run-bugIFS: Get ready for 3.1 0.09 release. bugIFS: some OS's
or bash versions report declare output as "declare --" and some
"declare -x"
2007-10-14 rockyb <rockyb>
* ChangeLog, Makefile.am, NEWS: Another install bug when
$(DESTDIR)$(PKGDATADIR) = $(DESTDIR)$(PARENT_DIR:/=)
2007-10-14 rockyb <rockyb>
* dbg-fns.inc, test/bugIFS.right: Bug when IFS was set. A couple of
subshell commands in the debugger, in particluar the one setting the
current filename was subject to the IFS value set in the debugged
program. This could cause us to report the wrong filename.
2007-10-14 rockyb <rockyb>
* ChangeLog, test/brkpt2.right, test/bug-source.right,
test/debug.right, test/finish.right, test/frame.right,
test/parm.right, test/sig.right, test/tbreak.right,
test/watch1.right: line numbers again.
2007-10-14 rockyb <rockyb>
* test/sig.right: Line #'s again.
2007-10-14 rockyb <rockyb>
* ChangeLog, NEWS, test/brkpt2.right, test/bug-source.right,
test/debug.right, test/finish.right, test/parm.right,
test/tbreak.right: Line number changes.
2007-10-14 rockyb <rockyb>
* bashdb.in, dbg-main.inc.in, test/brkpt2.right,
test/bug-source.right, test/debug.right, test/finish.right,
test/parm.right, test/sig.right, test/tbreak.right: Set prefix at
run-time for cygwin. Line number change again.
2007-10-14 rockyb <rockyb>
* Makefile.am: Replace := with = for portability.
2007-10-14 rockyb <rockyb>
* ChangeLog, NEWS, cvs2cl_usermap, test/brkpt2.right,
test/bug-source.right, test/debug.right, test/finish.right,
test/frame.right, test/parm.right, test/sig.right,
test/tbreak.right, test/watch1.right: test/*: bashdb added another
line Go over in preparation of another release 3.1-0.09
2007-08-16 rockyb <rockyb>
* Makefile.am: Add more ugliness. If we remove the bashdb directory,
in adding a symlink, make sure we recopy pkgdata files.
2007-07-16 rockyb <rockyb>
* bashdb.in: More explicit error message when we can't find the
debugger directory.
2007-07-12 myamato <myamato>
* emacs/Makefile.am: To irmpove portability use = instead of :=.
2007-07-12 myamato <myamato>
* emacs/bashdb.el: Fix a typo in document strings. Fix regexp used
for finding "bashdb" in command-line. Use `when' instead of `if'.
Add documents about to `bashdb'. Use lambda to pass command-line to
gud-bashdb-massage-args. Introduce `gud-bashdb-complete-command'
that wraps `gud-gdb-complete-command'. Set
`bashdb-bashdbtrack-is-tracking-p' to nil as default value. This is
temporary solution. Use `bashdb-bashdbtrack-is-tracking-p' instead
of `bashdb-bashdbtrack-minor-mode-string' as key for
`minor-mode-alist'.
2007-06-27 rockyb <rockyb>
* doc/bashdb.texi: Add info links in Eamcs section.
2007-05-14 rockyb <rockyb>
* doc/Makefile.am, doc/bashdb.texi: Makefile.am: get PDF generation
working again. bashdb.texi: some typos and small fixups listing
parameter on some commands.
2007-05-07 rockyb <rockyb>
* TODO: Revise - note what --tty and tty command should be doing.
Cross one thing off the list of remaining items. (Thanks to Matt
Fleming.)
2007-04-28 rockyb <rockyb>
* AUTHORS: Change email address.
2007-03-03 rockyb <rockyb>
* dbg-cmds.inc, dbg-fns.inc, dbg-help.inc, dbg-set.inc, dbg-sig.inc:
Remove some "evil" eval commands that emacs 23 warns about.
2007-03-03 rockyb <rockyb>
* test/sig.right: Lines have changed again.
2007-03-03 rockyb <rockyb>
* NEWS, dbg-cmds.inc, dbg-help.inc, doc/bashdb.texi: Allow tilde,
filename and variable expansion in the "cd" command for Poor Yarick.
2007-03-02 rockyb <rockyb>
* dbg-sig.inc, emacs/bashdb.el: bashdb.el: remove use of free
variable db-sig.inc: allow unbound variables - at least for now.
2007-03-02 rockyb <rockyb>
* dbg-fns.inc: Typo
2007-03-02 rockyb <rockyb>
* dbg-fns.inc: A tad nicer
2007-03-02 rockyb <rockyb>
* dbg-fns.inc: Split file:line the POSIX way, _Dbg_split was failing
under weird circumstances
2007-03-02 rockyb <rockyb>
* dbg-brk.inc: Deal with some of the many undefined variable bugs.
2007-03-02 rockyb <rockyb>
* doc/bashdb-man.pod: Typo caught by Yarik the Wise.
2007-03-01 rockyb <rockyb>
* doc/bashdb.texi, emacs/bashdb-test.el.in, emacs/bashdb.el:
doc/bashdb.texi: Wrong order of title/info-name for info directory
listing Thanks to Yaroslav the Wise for catching this. emacs/*:
allow a space in filenames which makes things nicer under Microsoft
Windows. Add more stringent testing too. Thanks to DaveS.
2007-02-18 rockyb <rockyb>
* bashdb.in, dbg-sig.inc, test/sig.right: More reduction of
uninitialized variables.
2007-02-18 rockyb <rockyb>
* NEWS: What's up.
2007-02-18 rockyb <rockyb>
* dbg-cmds.inc, dbg-sig.inc, test/debug.right, test/sig.right:
Initialize more variables.
2007-02-18 rockyb <rockyb>
* dbg-fns.inc: Initialize another variable.
2007-02-18 rockyb <rockyb>
* dbg-brk.inc, dbg-cmds.inc, test/sig.right: Remove some more
uninitialized variables.
2007-02-18 rockyb <rockyb>
* dbg-brk.inc: Remove use of an uninitialized variable.
2007-02-17 rockyb <rockyb>
* dbg-help.inc, dbg-hist.inc, dbg-init.inc, dbg-show.inc,
test/misc.cmd, test/misc.right: show commands now allows an optional
"+" or int parameter same as gdb. A negative value is a start
location. Add this to the help.
2007-02-17 rockyb <rockyb>
* test/trace.tests: .
2007-02-15 rockyb <rockyb>
* test/misc.right: Added linetrace delay.
2007-02-15 rockyb <rockyb>
* dbg-help.inc, dbg-init.inc, dbg-set.inc, dbg-show.inc,
dbg-sig.inc: Add linetrace delay
2007-02-13 rockyb <rockyb>
* emacs/bashdb.el: Make file names on (temporary) breakpoints and
clear include the directory name.
2007-02-11 rockyb <rockyb>
* bashdb-trace.in, dbg-cmds.inc, dbg-fns.inc, dbg-set-d-vars.inc,
dbg-sig.inc, doc/bashdb.texi, test/bugIFS.cmd, test/bugIFS.right,
test/bugIFS.sh.in, test/sig.right: Set PS4 to a better value and
make sure to restore it when going back into the user program. Also
restore on quit. Likewise for other variables.
2007-02-11 rockyb <rockyb>
* bashdb-trace.in: Typo.
2007-02-11 rockyb <rockyb>
* bashdb-trace.in: ALlow _Dbg_debugger() as an alias for _Dbg_step()
2007-02-11 rockyb <rockyb>
* ChangeLog, dbg-help.inc: Add help for debugger command "kill"
2007-02-03 rockyb <rockyb>
* THANKS: Give credit where it is due.
2007-02-03 rockyb <rockyb>
* test/.cvsignore: .
2007-02-03 rockyb <rockyb>
* test/run-sig: Signals seem to be working on cygwin now
2007-02-03 rockyb <rockyb>
* test/dbg-test1.sh: remove derived file
2007-02-03 rockyb <rockyb>
* test/run-sig: Changes to make FreeBSD work.
2007-01-25 rockyb <rockyb>
* ChangeLog, NEWS, configure.ac, dbg-cmds.inc, dbg-help.inc,
dbg-init.inc, dbg-set.inc, dbg-show.inc, doc/bashdb-man.pod,
doc/bashdb.texi, test/action.cmd, test/action.right,
test/brkpt1.cmd, test/brkpt1.right, test/brkpt2.cmd,
test/brkpt2.right, test/brkpt3.cmd, test/brkpt3.right,
test/bug-args.cmd, test/bug-args.right, test/bug-source.cmd,
test/bug-source.right, test/bugIFS.cmd, test/bugIFS.right,
test/command.cmd, test/command.right, test/complete.cmd,
test/complete.right, test/debug.cmd, test/debug.right,
test/debug2.cmd, test/display.cmd, test/display.right,
test/finish.cmd, test/finish.right, test/frame.cmd,
test/frame.right, test/list.cmd, test/list.right,
test/misc-output.right, test/misc.cmd, test/misc.right,
test/multi1.cmd, test/multi1.right, test/multi2.cmd,
test/multi2.right, test/multi3.cmd, test/multi3.right,
test/multi4.cmd, test/multi4.right, test/parm.cmd, test/parm.right,
test/prof1.cmd, test/prof2.cmd, test/quit.cmd, test/restart.cmd,
test/restart.right, test/restart2.cmd, test/search.cmd,
test/search.right, test/settrace.cmd, test/settrace.right,
test/sig.cmd, test/sig.right, test/skip.cmd, test/skip.right,
test/subshell1.cmd, test/subshell1.right, test/subshell2.cmd,
test/subshell2.right, test/subshell3.cmd, test/subshell3.right,
test/subshell4.cmd, test/tbreak.cmd, test/tbreak.right,
test/watch1.cmd, test/watch1.right, test/watch2.cmd,
test/watch2.right: Add set/show trace-commands to be compatible with
gdb 6.6. Lots of output changed, but really not much else.
2007-01-23 rockyb <rockyb>
* THANKS: How could I have let this slip for so long?
2007-01-20 rockyb <rockyb>
* doc/bashdb-man.pod, doc/bashdb.texi: More doc fixes
2007-01-20 rockyb <rockyb>
* doc/bashdb-man.pod: Remove --vtrace
2007-01-20 rockyb <rockyb>
* ChangeLog, doc/bashdb.texi: bashdb.tex: more "set -x" reworking.
2007-01-20 rockyb <rockyb>
* NEWS: Add date.
2007-01-20 rockyb <rockyb>
* emacs/.cvsignore: Wasn't this committed already?
2007-01-20 rockyb <rockyb>
* ChangeLog, emacs/Makefile.am: More things to make "make distcheck"
work.
2007-01-20 rockyb <rockyb>
* ChangeLog, configure.ac, emacs/Makefile.am, emacs/bashdb-test.el,
emacs/bashdb-test.el.in, test/Makefile.am, test/dbg-test1.sh: Things
to make "make distcheck" work.
2007-01-20 rockyb <rockyb>
* bashdb.in, configure.ac, doc/bashdb.texi, test/Makefile.am,
test/dbg-test1.sh, test/dbg-test1.sh.in, test/list.right,
test/search.right: Change to make "make distcheck" work.
2007-01-20 rockyb <rockyb>
* ChangeLog, test/watch1.right: [no log message]
2007-01-20 rockyb <rockyb>
* test/tbreak.right: .
2007-01-20 rockyb <rockyb>
* ChangeLog, test/brkpt2.right, test/bug-source.right,
test/debug.right, test/finish.right, test/frame.right,
test/parm.right, test/sig.right: Line numbers changed bashdb 277 is
now bashdb 275
2007-01-20 rockyb <rockyb>
* configure.ac, doc/.cvsignore, test/misc.right: Get ready for
3.1-0.08 release
2007-01-19 rockyb <rockyb>
* ChangeLog, NEWS, bashdb.in, dbg-show.inc, doc/bashdb.texi: Note
$PS4.
2007-01-19 rockyb <rockyb>
* NEWS: What's new.
2007-01-04 rockyb <rockyb>
* emacs/Makefile.am, emacs/bashdb-test.el, emacs/bashdb.el,
emacs/elk-test.el: Tighten regulare expression and add 1st trivial
emacs regression test.
2006-12-28 rockyb <rockyb>
* doc/bashdb-man.pod: Typo.
2006-12-28 rockyb <rockyb>
* dbg-cmds.inc, doc/Makefile.am, doc/bashdb-man.pod:
doc/bashdb-man.pod: Document -Y|--vtrace option. Make html/man
customizations for links. Note unavailability of long options
sometimes. doc/Makefile: Remove Perlisms. This is not part of Perl
dbg-cmds.inc: correct a comment
2006-12-27 rockyb <rockyb>
* doc/bashdb.texi: Example program bugs. Perhaps at one time I was
going to make use of these?
2006-12-26 rockyb <rockyb>
* test/trace2.right: .
2006-12-26 rockyb <rockyb>
* test/trace.right: Last change made better output.
2006-12-26 rockyb <rockyb>
* dbg-list.inc: Don't linetrace if depth < 0; this removes that
bashdb call lines. Use last_command on string substitution, not
source line. That way we don't have problems of mismatched quotes
and such. This is subtle, because the source line is what (not the
command) is really what we want in showing location info.
2006-12-26 rockyb <rockyb>
* test/brkpt2.right, test/bug-source.right, test/debug.right,
test/finish.right, test/frame.right, test/parm.right,
test/sig.right, test/tbreak.right, test/trace.right,
test/watch1.right: Arg!!!
2006-12-26 rockyb <rockyb>
* bashdb.in, dbg-list.inc: Add -Y --vtrace options in bashdb script.
/dev/null error in expanding line.
2006-12-26 rockyb <rockyb>
* test/brkpt2.right, test/bug-source.right, test/debug.right,
test/finish.right, test/frame.right, test/misc.right,
test/parm.right, test/sig.right, test/tbreak.right,
test/trace.right, test/watch1.right: Output line numbers have
changed yet again.
2006-12-26 rockyb <rockyb>
* dbg-cmds.inc, dbg-init.inc, dbg-list.inc, dbg-set.inc,
dbg-show.inc, test/Makefile.am, test/frame.cmd, test/frame.right,
test/frame.tests, test/run-frame, test/sig.right: Add set linetrace
full Check in frame tests.
2006-12-26 rockyb <rockyb>
* doc/bashdb-man.pod: Make note of -X|Trace and --.
2006-12-26 rockyb <rockyb>
* doc/bashdb.texi: Add footnote about undefined variables in
debugger example section.
2006-12-24 rockyb <rockyb>
* doc/bashdb.texi: Remove duplicate listing of "return" command.
2006-12-24 rockyb <rockyb>
* doc/bashdb.texi: More small typos.
2006-12-23 rockyb <rockyb>
* doc/bashdb.texi: Note we can use negative numbers in frame, up and
down. Fix some weird grammar one problem caused by a weird texinfo
formatting problem - easier to switch remove the formatting that
figure out why texinfo mangled things.
2006-12-20 rockyb <rockyb>
* test/sig.right: A different wrong
2006-12-20 rockyb <rockyb>
* dbg-sig.inc, dbg-stack.inc, test/brkpt2.right: dbg-stack.inc:
Allow negative numbers in up/down/frame. frame -1 means least-recent
frame. Refactor to reduce duplication of code (and increase
reliability). dbg-sig.inc: there is still a bug in dbg-stack.in in
showing the stack. The old and new output are both slightly wrong,
just a different wrong.
2006-12-20 rockyb <rockyb>
* dbg-init.inc: Revert change a little. Dunno why it doesn't work.
2006-12-20 rockyb <rockyb>
* dbg-init.inc: Simplfy regexp and add a signed int pattern.
2006-12-20 rockyb <rockyb>
* dbg-brk.inc, dbg-list.inc, test/list.right: More refactoring and
reduction of code via dynamic binding of local variables.
2006-12-19 rockyb <rockyb>
* dbg-brk.inc, dbg-list.inc: Refactor list - and it adds stuff like
the ability to list fns too.
2006-12-19 rockyb <rockyb>
* dbg-brk.inc, test/list.right: Refactor a little to reduce
redundancy. Much more is needed though.
2006-12-19 rockyb <rockyb>
* dbg-brk.inc, dbg-list.inc: Info messages corrected.
2006-12-19 rockyb <rockyb>
* dbg-brk.inc, dbg-file.inc, test/misc.right, test/sig.right: Do
more in terms of trying to find a file by using pwd in addition to
dbg_init_cwd.
2006-12-19 rockyb <rockyb>
* ChangeLog, dbg-cmds.inc, dbg-help.inc: First crack at a "load"
command.
2006-12-19 rockyb <rockyb>
* doc/bashdb.texi: More wordsmithing regarding --.
2006-12-19 rockyb <rockyb>
* dbg-brk.inc, dbg-fns.inc, dbg-list.inc, test/Makefile.am,
test/bug-source.cmd, test/bug-source.right, test/bug-source.tests,
test/run-bug-source: Files names coming from function
line-specificiations should be read in. Debian Bug#403306:
2006-12-19 rockyb <rockyb>
* dbg-io.inc: Was trying to access an uninitialized variable.
2006-12-19 rockyb <rockyb>
* Makefile.am: bashdb-trace is *not* an install script!
2006-12-19 rockyb <rockyb>
* doc/bashdb.texi, test/.cvsignore, test/bug-args.cmd,
test/bug-args.right, test/bug-args.sh.in, test/bug-args.tests: When
running bashdb we need -- to indicate where to stop bashdb options
processing. Document this and test for it.
2006-12-12 rockyb <rockyb>
* Makefile.am: Forgot to install bashdb-trace
2006-12-12 rockyb <rockyb>
* test/misc.right: .
2006-12-12 rockyb <rockyb>
* ChangeLog, configure.ac, dbg-help.inc, dbg-show.inc,
test/Makefile.am, test/misc.right: Wasn't giving "set/show
linetrace" in help output. configure.ac: In CVS again,
2006-12-11 rockyb <rockyb>
* doc/bashdb.texi: If I did things right, Oleksandr Moskalenko says
this is what works for Debian.
2006-12-10 rockyb <rockyb>
* doc/bashdb.texi: linespec -> line-specification.
2006-12-10 rockyb <rockyb>
* ChangeLog, NEWS, configure.ac, test/Makefile.am,
test/bug-args.sh, test/bug-args.sh.in, test/hanoi.sh.in:
bug-args.sh: More consistent with other tests of this ilk
2006-12-03 rockyb <rockyb>
* test/command.cmd, test/command.right: There's a bug lurking
somewhere in command variable expansion. Put for now.
2006-12-03 rockyb <rockyb>
* ChangeLog, NEWS, test/sig.right: sig.right: line numbers have
shifted around again.
2006-12-03 rockyb <rockyb>
* configure.ac, dbg-cmds.inc, test/interrupt.sh.in,
test/watch2.right: dbg-cmds.inc: Changes mostly for cygwin. Cygwin
doesn't have /dev/stdin. It does have block (at least via bash) the
special character test -c. interrupt.sh.in: put in getting this
test working for now. test/watch2.right: Should be echoing debugger
commands? I may reverse this later as what the "right" output should
be. Dunno.
2006-12-03 rockyb <rockyb>
* ChangeLog, NEWS: The usual.
2006-12-03 rockyb <rockyb>
* configure.ac: We should have made the 0.7cvs a while ago.
2006-12-03 rockyb <rockyb>
* ChangeLog, NEWS, bashdb.in, configure.ac: Add --enable-getopt
option to disable GNU getopt for systems that have non-GNU getopt
like NetBSD.
2006-12-03 rockyb <rockyb>
* Makefile.am, NEWS: .
2006-11-30 rockyb <rockyb>
* test/sig.right, test/watch2.cmd, test/watch2.right: Fix up output.
watch2.cmd was relying on a previous bug!
2006-11-29 rockyb <rockyb>
* dbg-sig.inc, test/Makefile.am, test/bug-args.cmd,
test/bug-args.right, test/bug-args.sh, test/bug-args.tests,
test/run-bug-args: Fix bug when $1, $2, etc. are reduced such as
when shift'ed.
2006-11-02 rockyb <rockyb>
* doc/Makefile.am, doc/bashdb.texi, doc/copyright.texi: Address
Debian legal concerns, yet again. Actually it is Oleksandr
Moskalenko who did all the heavy lifting. Send thanks (or gripes) to
him.
2006-11-01 rockyb <rockyb>
* README: Revise to reflect current changes over the years.
2006-10-08 rockyb <rockyb>
* doc/bashdb.texi: Small typos.
2006-10-03 rockyb <rockyb>
* test/.cvsignore, test/run-interrupt: See above
2006-10-03 rockyb <rockyb>
* NEWS, bashdb-trace.in, configure.ac, test/Makefile.am,
test/interrupt.right, test/interrupt.sh.in, test/interrupt.tests:
Add an interrupt test
2006-10-03 rockyb <rockyb>
* doc/bashdb.texi: Hack on new program-controlled debugger sections
some more.
2006-10-03 rockyb <rockyb>
* bashdb-trace.in, doc/bashdb.texi: Document behavior. Fix bug in
signal handling.
2006-10-03 rockyb <rockyb>
* bashdb-trace.in, test/hanoi.sh.in: Document linetrace on/off at
least as comments to the routines. Add a routine to set debugger
signal handling.
2006-09-17 rockyb <rockyb>
* doc/bashdb.texi: We don't yet allow signal ranges or "all" like
gdb does.
2006-09-06 rockyb <rockyb>
* NEWS: Note "kill".
2006-09-06 rockyb <rockyb>
* dbg-complete.inc: Add new debugger commands "signal" and "kill" to
list of completion words.
2006-09-06 rockyb <rockyb>
* dbg-cmds.inc, doc/bashdb.texi, test/run-sig, test/sig.cmd,
test/sig.right: Add "kill" command.
2006-09-06 myamato <myamato>
* readarray.c: (read_array): Initialize `line_count' to 0 and Don't increment
`line_count_goal' in if-condition. Instead check `line_count' is
non-zero before calling `run_callback'.
2006-09-06 myamato <myamato>
* test/check_common.in: (check_output): Remove unnecessary output hacking with sed.
2006-09-06 rockyb <rockyb>
* readarray.c: Basically revert to version 1.17. line_count_goal is
the number of lines to read, not the last line number.
2006-09-04 rockyb <rockyb>
* readarray.c: Test for number of lines to read didn't account for
non-zero offsets. Thanks to Masatake for catching.
2006-09-04 rockyb <rockyb>
* readarray.c: Remove unnecessary test.
2006-09-04 rockyb <rockyb>
* doc/bashdb.texi: Go over the signal command doc and make
subsections for "handle, info handle" and "signal".
2006-09-03 rockyb <rockyb>
* NEWS, bashdb.in: bashdb.in: bug in handling --trace NEWS: note
gdb-like signal command
2006-09-03 rockyb <rockyb>
* dbg-cmds.inc, dbg-help.inc, dbg-io.inc, dbg-sig.inc,
doc/bashdb.texi, readarray.c, test/sig.cmd, test/sig.right:
readarray.c: off-by one error. Was running callback on first read.
Add gdb-like signal command.
2006-08-26 myamato <myamato>
* readarray.c: Support cygwin again. Accept non seek-able file
descriptor. (get_line): Rename `zreadlinec'. Added new argument
`unbuffered_read'. Use `zread' if `unbuffered_read' is non zero.
(GET_LINE_INITIAL_ALLOCATION): Renamed from
`ZREADLINE_INITIAL_ALLOCATION'. (read_array): Added new local
variable `unbuffered_read'. Call zsyncfd only if `unbuffered_read'
is zero. (readarray_doc): Updated.
2006-08-23 rockyb <rockyb>
* readarray.c: Revise "help readarray".
2006-08-23 myamato <myamato>
* readarray.c: Rename `ZREADLINE_INITIAL_ALLOCATION' to
`ZREADLINEC_INITIAL_ALLOCATION' (readarray_doc, readarray_struct):
Updated documents.
2006-08-22 myamato <myamato>
* readarray.c: Add comment for `zreadlinec'. (zreadlinec): Don't use
g_return_val_if_fail. (read_array): Rename `arrayname' to
`array_name'. Don't call `make_new_array_variable` and
`convert_var_to_array' here. Don't call `zsyncfd' before calling
`zreadlinec' but call it after `zreadlinec'. Use
`bind_array_variable'. (readarray_builtin): Return error if
__CYGWIN__ is defined. Check `fd' is seek-able or not. Check
`array_name' with `valid_array_reference'. (readarray_doc): Update
documents.
2006-08-22 myamato <myamato>
* test/check_common.in: Trim progress bar output printed by
readarray's callback.
2006-08-21 myamato <myamato>
* readarray.c: Don't include filecntl.h, string.h, and chartypes.h.
Include common.h and bashintl.h. (zreadlinec): Separate variable
declarations and initializations. Use xrealloc and xmalloc.
(run_callback): New function. (do_chop): New function. (munge_list):
Removed. (read_array): Rename many local variables. Use xfree,
do_chop, run_callback. (readarray_builtin): Remove `munge_list'.
Rename local variable `line' to `lines'. Use _() for the future
merging to bash. (readarray_doc): Updated. (readarray_struct):
Updated.
2006-08-21 myamato <myamato>
* dbg-io.inc, readarray.c: * dbg-io.inc(_Dbg_readin) Don't pass input file name to read line.
Use redirection instead. * readarray.c (readarray_builtin): Use fd
instead of fp. Added -u option. Remove `rval' local variable.
(read_array): Use zreadlinec and zsyncfd. (zreadlinec): Renamed from
getline.
2006-08-21 myamato <myamato>
* readarray.c: (readarray_builtin): Rename local variables. Prefix `i_' is removed.
Separate variable declarations and initialization. Switch the
indentation style to GNU. Call legal_identifier to check the
variable.
2006-08-21 myamato <myamato>
* readarray.c: (readarray_builtin): Added filename, arrayname, code and intval as
new local variables. Use legal_number instead of atoi. Check if
filename or arrayname is not an empty string.
2006-08-21 myamato <myamato>
* test/multi2.tests: ($BASH): Fix a typo.
2006-08-20 myamato <myamato>
* readarray.c: (readarray_builtin): Remove unnecessary `;'.
2006-08-19 myamato <myamato>
* readarray.c: (DEFAULT_PROGRESS_QUANTUM): New constant. (readarray_builtin): Use
the constant. (read_array): Rename `i' and `j' to `array_index' and
`line_count'. Initialize `line_count', formally named as `j'; and
increment it in the loop condition. Remove const modifier from
`execlen'. This causes a syntax error.
2006-08-18 myamato <myamato>
* readarray.c: (read_array): Rename `i_len', a local variable in anonymous {} to
`execlen'. Allocate `psz_exec' two bytes larger.
2006-08-15 myamato <myamato>
* readarray.c: (read_array): Rename `j', a local variable to `length'.
2006-08-15 myamato <myamato>
* readarray.c: (read_array): Use i_count only if it is not 0. (readarray_builtin):
Initialize i_line with 0. Don't initialize it with 100000.
(readarray_doc): Update documentation.
2006-08-15 myamato <myamato>
* autogen.sh: Run autoheader
2006-08-15 myamato <myamato>
* readarray.c: Fix typos in builtin readarray_struct.
2006-08-03 rockyb <rockyb>
* dbg-io.inc: dbg-io.inc: Put BASH_EXECUTION_STRING to ${source_array}[0], not
[1]. Patch yet again courtesy of Masatake YAMATO.
2006-08-02 rockyb <rockyb>
* emacs/bashdb.el: pydbtrack -> bashdbtrack. Thanks to Masatake
YAMATO for noticing the problem and making the patch.
2006-07-31 rockyb <rockyb>
* dbg-sig.inc: Remove duplicate SIGLL setup.
2006-07-27 rockyb <rockyb>
* emacs/bashdb.el: One more fix from Masatake YAMATO - see previous
commit.
2006-07-27 rockyb <rockyb>
* emacs/bashdb.el: emacs/bashdb.el
(bashdb-bashdbtrack-overlay-arrow): Don't set value to pos. Fix a
typo. (bashdb-bashdbtrack-track-stack-file): Put target_buffer to
let*'s variable list. Changes from Masatake YAMATO. Thanks!
2006-07-23 rockyb <rockyb>
* doc/bashdb.texi: Another grammar mistake.
2006-07-23 rockyb <rockyb>
* ChangeLog, doc/bashdb.texi: Corrections and elaboration on need
and use of set_trace.
2006-07-22 rockyb <rockyb>
* Makefile.am: Forgot to install bashdb-trace.
2006-07-22 rockyb <rockyb>
* doc/bashdb.texi: URL typo.
2006-07-21 rockyb <rockyb>
* configure.ac: [no log message]
2006-07-21 rockyb <rockyb>
* configure.ac: Update address.
2006-07-21 rockyb <rockyb>
* ChangeLog, NEWS, configure.ac: Get ready for 0.06 release
2006-07-21 rockyb <rockyb>
* test/bugIFS.sh.in: More general substitition for BASH.
2006-07-21 rockyb <rockyb>
* bashdb-trace.in: -nx -> --nx and minor changes. Sync better with
bashdb.in
2006-07-18 rockyb <rockyb>
* NEWS, doc/bashdb.texi: GO over doc for new commands as well as
complete old ones better.
2006-07-18 rockyb <rockyb>
* ChangeLog, test/hanoi.sh.in, test/settrace.sh: Change to make
build outside of source tree (make distcheck) work.
2006-07-17 rockyb <rockyb>
* bashdb-trace.in, test/hanoi.sh.in, test/settrace.cmd,
test/settrace.right, test/settrace.sh: Get settrace working when
called other than the first time.
2006-07-17 rockyb <rockyb>
* ChangeLog, test/settrace.right, test/settrace.sh,
test/settrace.tests, test/trace.right, test/trace2.right,
test/trace2.tests: Fixes to get building out of source tree (make
distcheck) working better.
2006-07-16 rockyb <rockyb>
* test/run-settrace: [no log message]
2006-07-16 rockyb <rockyb>
* ChangeLog, Makefile.am: Makefile.am: Add dbg-command.inc
2006-07-16 rockyb <rockyb>
* NEWS: [no log message]
2006-07-16 rockyb <rockyb>
* test/Makefile.am, test/settrace.cmd, test/settrace.right,
test/settrace.sh, test/settrace.tests: Add test of set_trace
2006-07-16 rockyb <rockyb>
* dbg-fns.inc, dbg-info.inc, dbg-init.inc, dbg-sig.inc,
test/brkpt2.cmd, test/brkpt2.right, test/brkpt3.right,
test/run-brkpt, test/sig.right: More detail in "info program".
Reinstate brkpt3 test since bash bug seems to have been fixed.
2006-07-13 rockyb <rockyb>
* dbg-brk.inc, dbg-cmds.inc, test/tbreak.cmd, test/tbreak.right:
Don't try to step/next/continue if the program's not running.
2006-07-13 rockyb <rockyb>
* NEWS, dbg-info.inc, test/tbreak.cmd, test/tbreak.right: Don't try
to give line number when program is not running.
2006-07-13 rockyb <rockyb>
* ChangeLog, bashdb-trace.in, dbg-info.inc, dbg-init.inc,
dbg-sig.inc, dbg-stack.inc, test/misc-output.right,
test/misc.right, test/tbreak.cmd, test/tbreak.right: Note state of
debugging program. Add info program. Don't try to show stack when we
are not running the program.
2006-07-04 rockyb <rockyb>
* NEWS: More fexible and more general output by no longer assuming
we write to sys.stdout. Rather the output object is saved in the
instance variable, which could be and often is the same as
sys.stdout, but doesn't need to be. This change may make
communication used in remote debugging and thread debugging simpler.
Many thanks to Matt Flemming for the patch.
2006-07-04 rockyb <rockyb>
* dbg-complete.inc: Add "commands" to completion list.
2006-06-18 rockyb <rockyb>
* test/command.cmd, test/command.right: A more stringent "command"
test.
2006-06-13 rockyb <rockyb>
* dbg-brk.inc, dbg-cmds.inc, dbg-commands.inc, dbg-complete.inc,
dbg-help.inc, dbg-hist.inc, dbg-info.inc, dbg-list.inc,
dbg-log.inc, dbg-set.inc, dbg-show.inc, dbg-sig.inc, dbg-stack.inc,
test/sig.right: _Dbg_cmd_... -> _Dbg_do_... so as to make look more
like the Python debugger. (I get confused easily.)
2006-06-11 rockyb <rockyb>
* NEWS, dbg-cmds.inc, dbg-commands.inc, dbg-sig.inc,
test/Makefile.am, test/command.cmd, test/command.right,
test/command.tests, test/run-command, test/sig.right: Add gdb
"commands" command: runs debugger commands at a given breakpoint.
2006-06-08 rockyb <rockyb>
* dbg-cmds.inc, dbg-main.inc.in, test/sig.right: Move closer towards
getting the "commands" debugger command working.
2006-06-03 rockyb <rockyb>
* dbg-cmds.inc, test/sig.right: A small bit of alphabetization.
2006-06-03 rockyb <rockyb>
* dbg-cmds.inc, test/sig.right: Small comment fix.
2006-06-03 rockyb <rockyb>
* dbg-cmds.inc, test/sig.right, test/watch1.right: dbg-cmds.inc:
remove globals _Dbg_cmd and _Dbg_args. _Dbg_args -> args.
2006-06-03 rockyb <rockyb>
* dbg-cmds.inc, dbg-info.inc, dbg-stack.inc, test/sig.right,
test/watch1.right: Break out command that gets run inside
interactive loop so we can use it possibly in a gdb "commands"
(execute debugger commands on breakpoint) command.
2006-05-27 rockyb <rockyb>
* ChangeLog, dbg-brk.inc, dbg-sig.inc: _brkpt_ -> _Dbg_brkpt_ as it
should have been.
2006-04-10 rockyb <rockyb>
* doc/bashdb.texi: Add example of using linetrace option -X Expand
Emacs section. List commands that be used in the source script
buffer.
2006-04-10 rockyb <rockyb>
* emacs/bashdb.el, test/misc.right: Minor help string changes.
2006-04-10 rockyb <rockyb>
* NEWS, dbg-info.inc, doc/bashdb.texi: Attempt to get documentation
on GNU Emacs section in order. Describe bashdbtrack. Minor doc
changes in info help.
2006-04-10 rockyb <rockyb>
* test/action.tests, test/hanoi.sh.in, test/trace.tests,
test/trace2.tests: Changes to make "make distcheck" work better. Not
perfect, but better.
2006-04-10 rockyb <rockyb>
* bashdb-trace.in, bashdb.in, test/Makefile.am, test/action.tests,
test/brkpt2.right, test/debug.right, test/finish.right,
test/hanoi.sh.in, test/parm.right, test/run-trace, test/sig.right,
test/tbreak.right, test/trace.right, test/trace.tests,
test/trace2.right, test/trace2.tests, test/watch1.right: Add
program-control linetrace test (trace2) Set line tracing to not
enter debugger on quit.
2006-04-09 rockyb <rockyb>
* test/Makefile.am: Add line-trace regression test.
2006-04-09 rockyb <rockyb>
* test/Makefile.am: .
2006-04-09 rockyb <rockyb>
* test/Makefile.am, test/run-trace, test/trace.right,
test/trace.tests: Add linetrace test
2006-04-09 rockyb <rockyb>
* doc/bashdb.texi: _Dbg_set_trace now needs a null statement
afterwards, i.e. "; :"
2006-04-09 rockyb <rockyb>
* test/watch1.right: .
2006-04-09 rockyb <rockyb>
* .cvsignore, test/.cvsignore: .
2006-04-09 rockyb <rockyb>
* NEWS, bashdb.in, configure.ac, dbg-init.inc, test/Makefile.am,
test/brkpt2.right, test/debug.right, test/finish.right,
test/hanoi.sh.in, test/hanoitest.sh.in, test/parm.right,
test/sig.right, test/tbreak.right: Add line tracing command-line
option in bashdb: -X, and long option --trace Executing a string
(option -c or --command) shows the command to be run in the call
stack.
2006-04-08 rockyb <rockyb>
* test/finish.right: Remove the weirdness with set_trace where we
had to add additional null statements.
2006-04-08 rockyb <rockyb>
* bashdb.in, dbg-init.inc, doc/bashdb.texi, test/brkpt2.right,
test/debug.right, test/finish.right, test/parm.right,
test/sig.right, test/tbreak.right, test/watch1.right: Remove the
weirdness with set_trace where we had to add additional null
statements.
2006-04-06 rockyb <rockyb>
* test/skip.cmd, test/skip.right: .
2006-04-06 rockyb <rockyb>
* test/subshell3.right: subshell3.right
2006-04-06 rockyb <rockyb>
* ChangeLog, NEWS, TODO, configure.ac, dbg-cmds.inc,
doc/bashdb.texi, test/action.cmd, test/action.right,
test/brkpt1.cmd, test/brkpt1.right, test/brkpt2.cmd,
test/brkpt2.right, test/brkpt3.cmd, test/bugIFS.cmd,
test/bugIFS.right, test/complete.cmd, test/complete.right,
test/continue.cmd, test/debug.cmd, test/debug.right,
test/debug2.cmd, test/display.cmd, test/display.right,
test/finish.cmd, test/finish.right, test/list.cmd, test/list.right,
test/misc.cmd, test/misc.right, test/multi1.cmd, test/multi1.right,
test/multi2.cmd, test/multi2.right, test/multi3.right,
test/multi4.right, test/parm.cmd, test/parm.right, test/prof1.cmd,
test/prof2.cmd, test/quit.cmd, test/restart.cmd,
test/restart.right, test/restart2.cmd, test/search.cmd,
test/search.right, test/sig.cmd, test/sig.right, test/skip.right,
test/subshell1.cmd, test/subshell1.right, test/subshell2.cmd,
test/subshell2.right, test/subshell3.cmd, test/tbreak.cmd,
test/tbreak.right, test/watch1.cmd, test/watch1.right,
test/watch2.cmd, test/watch2.right: configure.ac: now in 0.06cvs.
bashdb.texi: small changes rest: When sourcing a debugger command
file we now show the debugger command before running it.
2006-04-06 rockyb <rockyb>
* dbg-init.inc, dbg-list.inc, dbg-set.inc, dbg-sig.inc,
dbg-stack.inc, doc/bashdb.texi: bashdb.texi: Go over sample session
to elaborate on subshells and showing multi-statement lines. Add
linetrace sessoin *.inc: linetrace output is no longer the same as
step output. We show level, subshell and depth now.
2006-04-05 rockyb <rockyb>
* bashdb.in, configure.ac, readarray.c, test/run-multi,
test/run-sig, test/run-subshell: Changes to make work on Solaris and
it's lesser /bin/sh.
2006-04-05 rockyb <rockyb>
* test/brkpt2.right, test/debug.right, test/finish.right,
test/parm.right, test/sig.right, test/tbreak.right,
test/watch1.right: Line numbers have changed.
2006-04-04 rockyb <rockyb>
* ChangeLog, Makefile.am, bashdb-trace.in, bashdb.in, configure.ac,
dbg-sig.inc, doc/bashdb.texi, test/Makefile.am,
test/hanoitest.sh.in: Add set_linetrace, and ability to call from
script. Document. dbg-sig.inc: Correct line-tracing variable
2006-03-25 rockyb <rockyb>
* ChangeLog, NEWS, configure.ac: Get ready for 3.1-0.05 release
2006-03-20 rockyb <rockyb>
* doc/bashdb.texi: Document some of the set/show logging commands.
2006-03-20 rockyb <rockyb>
* Makefile.am, NEWS, dbg-brk.inc, dbg-cmds.inc, dbg-complete.inc,
dbg-help.inc, dbg-init.inc, dbg-io.inc, dbg-log.inc,
dbg-main.inc.in, dbg-set.inc, dbg-show.inc, dbg-sig.inc,
doc/bashdb-man.pod, doc/bashdb.texi, test/misc.right,
test/sig.right: Add gdb-style set/show logging. Break debugger out
into more files: dbg-log.inc and dbg-show.inc Email address
regularization.
2006-03-19 rockyb <rockyb>
* ChangeLog, Makefile.am, configure.ac, dbg-cmds.inc,
dbg-complete.inc, dbg-main.inc.in, test/run-watch1,
test/watch1.tests: dbg-complete.inc dbg-main.inc.in: move command
completion code to a separate file configure.ac: Makefile.am:
BASHDB_MAIN wasn't getting set correctly Makefile.am: fix various
shell quoting problems test/watch1.*: make it work for "make
distcheck" (or VPATH, or build outside of source tree)
2006-03-19 rockyb <rockyb>
* test/sig.right: .
2006-03-19 rockyb <rockyb>
* test/complete.cmd, test/complete.right: Add more completion tests
2006-03-19 rockyb <rockyb>
* dbg-cmds.inc, dbg-help.inc, dbg-info.inc, test/sig.right: Add
subcommand completion for set, info and show.
2006-03-19 rockyb <rockyb>
* emacs/bashdb.el: Be able to turn bashdb tracking on and off.
2006-03-16 rockyb <rockyb>
* emacs/bashdb.el: Allow tab to be completion.
2006-03-15 rockyb <rockyb>
* doc/bashdb.texi: small doc fix
2006-03-15 rockyb <rockyb>
* ChangeLog, NEWS, doc/bashdb.texi, test/complete.cmd,
test/complete.right: bashdb.texi: document "complete" test/* add
another "complete" test
2006-03-15 rockyb <rockyb>
* dbg-cmds.inc, test/Makefile.am, test/complete.cmd,
test/complete.right, test/complete.tests, test/run-complete,
test/sig.right: Add "complete" command.
2006-03-15 rockyb <rockyb>
* .cvsignore: .cvsignore
2006-03-15 rockyb <rockyb>
* configure.ac: More 3.1 substitutions. Wrong GPL text.
2006-03-14 rockyb <rockyb>
* configure.ac: Make sure we find bash 3.1 exactly.
2006-03-12 rockyb <rockyb>
* config.h.in: config.h.in is derived
2006-03-12 rockyb <rockyb>
* dbg-file.inc, dbg-info.inc, dbg-io.inc, test/brkpt2.right,
test/parm.right, test/sig.right: "info source" shows number of
lines in file and looks a little more like gdb.
2006-03-12 rockyb <rockyb>
* emacs/bashdb.el: minor corrections to bashbtrack
2006-03-12 rockyb <rockyb>
* emacs/bashdb.el: minor fixes to bashdbtrack
2006-03-12 rockyb <rockyb>
* emacs/bashdb.el: Add tracking of source inside comint shell. Code
from python's pdbtrack used.
2006-03-09 rockyb <rockyb>
* dbg-cmds.inc: .
2006-03-09 rockyb <rockyb>
* dbg-brk.inc, dbg-cmds.inc, dbg-sig.inc, doc/bashdb.texi,
test/brkpt2.right, test/misc.cmd, test/misc.right, test/sig.right,
test/watch1.cmd, test/watch1.right: bashdb.texii, dbg-cmds.inc: Add
cd and pwd commands. dbg-sig.inc: Fix bug in watch expression when
variable is not set
2006-02-18 rockyb <rockyb>
* ChangeLog, configure.ac, emacs/bashdb.el: configure.ac: In 0.05cvs
now emacs/bashdb.el: tidy up a little bit.
2006-02-18 rockyb <rockyb>
* test/bugIFS.tests: Fix breakage of VPATH patch; allow to run
standalone
2006-02-18 rockyb <rockyb>
* .cvsignore, config.h.in, configure.ac, emacs/bashdb.el,
test/Makefile.am, test/bugIFS.tests, test/run-multi, test/run-skip,
test/run-subshell: Patches from Eric Blake to make a VPATH build (in
a CVS tree, do: mkdir build; cd build; ../configure; make; make
check).
2006-02-01 rockyb <rockyb>
* emacs/bashdb.el: "toggle" changes linetrace, not "trace"
2006-02-01 rockyb <rockyb>
* dbg-init.inc, dbg-set.inc, emacs/bashdb.el, test/misc.right: Misc
fixes.
2006-02-01 rockyb <rockyb>
* ChangeLog, dbg-cmds.inc, dbg-help.inc, dbg-init.inc, dbg-set.inc,
dbg-sig.inc, emacs/bashdb.el, test/brkpt2.right, test/debug.right,
test/finish.right, test/misc.right, test/parm.right,
test/sig.right, test/sopts.tests, test/tbreak.right: Add set/show
linetrace emacs/bashdb.el: add lots of menu functions. remove stepi.
_trace_ -> _Dbg_trace
2006-01-30 rockyb <rockyb>
* bashdb.in: Some small bugs in options processing and help
reporting.
2006-01-30 rockyb <rockyb>
* test/Makefile.am, test/continue.cmd, test/lopts.right,
test/lopts.tests, test/quit.cmd, test/run-opts, test/sopts.right,
test/sopts.tests: Add options processing tests.
2006-01-29 rockyb <rockyb>
* emacs/bashdb.el, test/brkpt2.right, test/debug.right,
test/finish.right, test/parm.right, test/sig.right,
test/tbreak.right: bashdb.el: add numeric counts. test: line numbers
changed again.
2006-01-29 rockyb <rockyb>
* bashdb.in: Allow -nx for -n
2006-01-29 rockyb <rockyb>
* test/brkpt2.right, test/debug.right, test/finish.right,
test/parm.right, test/sig.right, test/tbreak.right: Line numbers
have changed in bashdb.
2006-01-29 rockyb <rockyb>
* bashdb.in: Remove testing #!/bin/bash
2006-01-29 rockyb <rockyb>
* README, bashdb.in: A couple more small typos.
2006-01-29 rockyb <rockyb>
* bashdb.in: Make a couple of options longer and note they can be
abbreviated.
2006-01-29 rockyb <rockyb>
* bashdb.in, test/brkpt2.right, test/debug.right,
test/finish.right, test/parm.right, test/sig.right,
test/tbreak.right: Change bashdb to use long options if getopt is
around. bashdb now accepts --debugger to be compatible with bash
--debugger.
2006-01-29 rockyb <rockyb>
* emacs/bashdb.el: Don't add --debugger if we are invoking via
bashdb.
2006-01-23 rockyb <rockyb>
* configure.ac: Proper way to make sure bashdb is executable?
2006-01-18 rockyb <rockyb>
* README, configure.ac: Small doc change
2006-01-18 rockyb <rockyb>
* configure.ac: Small comment/doc changes
2006-01-18 rockyb <rockyb>
* INSTALL: Do not need relative path for --with-bash-source
2006-01-18 rockyb <rockyb>
* INSTALL: Need only headers not compiled source
2006-01-18 rockyb <rockyb>
* doc/bashdb.texi: rebash->bash.
2006-01-18 rockyb <rockyb>
* doc/bashdb.texi: Another macro-related problem addressed.
2006-01-18 rockyb <rockyb>
* INSTALL: Update installation instructions for --with-bash and
--with-bash-source.
2006-01-18 rockyb <rockyb>
* doc/bashdb.texi: Add info about "set debugger", "set basename".
Fix a number of little HTML problems.
2006-01-18 rockyb <rockyb>
* dbg-set.inc, test/multi2.cmd, test/subshell4.cmd: Allow 0/1 for
off and on respectively as gdb (now?) does.
2006-01-16 rockyb <rockyb>
* ChangeLog: [no log message]
2006-01-16 rockyb <rockyb>
* NEWS: Note bashdb doc change motivated by Manfred Tremmel.
2006-01-11 rockyb <rockyb>
* configure.ac: Get ready for another release.
2006-01-11 rockyb <rockyb>
* .cvsignore, ChangeLog, NEWS: Minor administrative changes.
2006-01-11 rockyb <rockyb>
* emacs/.cvsignore: elc-stamp seems to be used in makeing *.elc
2006-01-11 rockyb <rockyb>
* emacs/Makefile.am: Install elc file.
2006-01-05 rockyb <rockyb>
* Makefile.am: We don't have patches for 3.1 (yet).
2006-01-05 rockyb <rockyb>
* configure.ac: This is for bash 3.1 not 3.00
2006-01-04 rockyb <rockyb>
* configure.ac: Test for getline() in order to make readarray
2006-01-04 rockyb <rockyb>
* test/run-sig: Note why we've disabled on Cygwin.
2006-01-04 rockyb <rockyb>
* test/misc.right, test/run-misc: Canonicalize output from "info
args"
2006-01-04 rockyb <rockyb>
* test/run-sig: SIGnals on CYGwin seem to be different. So skip this
test.
2006-01-04 rockyb <rockyb>
* test/misc-output.right: Output had extraneous blank line which was
recently fixed.
2006-01-04 rockyb <rockyb>
* dbg-io.inc: Remove useless increment.
2006-01-04 rockyb <rockyb>
* dbg-cmds.inc, dbg-io.inc, test/brkpt1.right, test/brkpt2.right,
test/list.right, test/restart.cmd, test/restart.right,
test/run-sig, test/sig.right: dbg-cmds.inc: starting with bash 3.1
input file descriptors must be less than 9. dbg-io.inc: fix off by
one counting of file line numbers. test/* adjust for revised
output.
2006-01-03 rockyb <rockyb>
* .cvsignore, stamp-h1: stamp-h1 is derived.
2006-01-03 rockyb <rockyb>
* dbg-io.inc: I had broke things with respect to line_count (which
is really one more than the line count) when readarray is not
available.
2006-01-03 rockyb <rockyb>
* dbg-file.inc, dbg-io.inc, test/run-subshell: test/run-subshell
remove old comments *.inc: these changed in 2006.
2006-01-03 rockyb <rockyb>
* test/run-skip: Can reinstate this test.
2006-01-03 rockyb <rockyb>
* .cvsignore: Add config.h
2006-01-03 rockyb <rockyb>
* doc/.cvsignore: [no log message]
2006-01-03 rockyb <rockyb>
* doc/.cvsignore: macros.texi is derived.
2006-01-03 rockyb <rockyb>
* acinclude.m4, dbg-file.inc, dbg-io.inc, test/run-multi:
dbg-file.inc: reinstate [[ for [. Add \ one other place where it is
probably needed. dbg-io.inc: remove a read-only attribute where it
shouldn't be. It may have to do with a changed scope of local.
test/run-multi: reinstate test.
2006-01-03 rockyb <rockyb>
* doc/bashdb.texi, doc/bashdb.texi.in: Subtitutions are in
macros.texi.in.
2006-01-02 rockyb <rockyb>
* Initial revision
|