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
|
####### 25.12 #######
25.12.21
Vip ":cal" (calendar) command
doc/viprc.sample
New file
lib/vip/cal.rc.l
25.12.14
Namespace specification "ap~" not needed
doc/search.html
25.12.11
'scratch' returns buffer
lib/vip.l
25.12.9
Rename 'shift' to 'shiftN'
Refactor 'patMatch' to (search> . +Buffer)
lib/vip.l
'this' function
src/glob.l
src/flow.l
doc/ref.html
doc/refT.html
doc/refW.html
lib/sq.l
lib/vip.l
lib/simul.l
'keys' function
lib/vip.l
25.12.8
Support initial key sequence in "# VIP " header
lib/vip.l
25.12.7
Check for buffer-local command mappings
lib/vip.l
25.12.6
Inherit window methods when split
'status>' continued
'drawin' function
lib/vip.l
25.12.5
Fix 'any1' and 'any2' for 'init', 'iter' and 'scan'
doc/refI.html
doc/refS.html
'status>' method for '+Window'
lib/vip.l
25.12.4
'delBuf' function
lib/vip.l
25.12.3
Check for buffer-local key mappings
lib/vip.l
25.12.1
Revert res_init() from 25.11.29
src/ssl.c
25.11.30
Decode "%21", and handle multple header values (Mansur Mamkin)
lib/http.l
25.11.29
Reinitialize resolver before getaddrinfo()
src/ssl.c
25.11.26
Pointer casts for bufFloat() and bufDouble()
src/main.l
25.11.22
Typo
loc/RU.l
25.11.21
Add (val> . +Swap/R)
lib/form.l
25.11.20
Handle swap symbol replacement in '+Swap'
lib/db.l
(val> . +Swp) not needed
lib/form.l
25.11.14
"%" also matches braces "{" and "}"
lib/vip.l
25.11.10
Pointer casts for bufFloat() and bufDouble()
src/dec.l
src/lib.c
25.11.6
Optionally start 'lsn' listennig processes
src/httpGate.c
25.11.5
Remove phone number
README
Restore 'pkg-config --cflags libffi'
src/Makefile
Avoid stale 'CliSock' if fork() fails
src/httpGate.c
Add 'stat' output to 'proc'
lib/debug.l
25.11.2
New file
lib/xxhash.l
25.10.12
Set initial alarm to 2 seconds
lib/http.l
25.10.10
Extend example for 'yield' with 'env' arg
doc/refY.html
25.10.8
Optional 'prg' argument to 'yield'
src/flow.l
doc/refY.html
25.10.5
Bug in 'U' unsigned integer suppport
src/main.l
'i64u' type cast
src/lib/llvm.l
25.10.1
Use just CONTEXT in 'permit'
lib/android.l
####### 25.9 #######
25.9.28
Import 'U'
lib/reflect.l
25.9.27
Support 'U' unsigned integer result specification
src/glob.l
src/main.l
src/pico.h
doc/refN.html
25.9.26
Default scale 6
lib/reflect.l
25.9.25
'xCnt64' function
src/main.l
src/io.l
25.9.20
Recurse on nested structures
Remove '*Reflect'
lib/reflect.l
25.9.19
Use 'def' instead of 'set'
lib/reflect.l
25.9.17
Fix comment for linked libraries
soTest.c
25.9.16
New file
lib/reflect.l
25.9.15
Re-arrange evaluation in 'picolisp' to preserve stdout
src/main.l
Recommend (load) for "full" library
src/lib/so.l
25.9.13
Shared library continued
src/Makefile
src/main.l
soTest.c
25.9.9
reflect() function
src/lib/ex.l
src/lib/so.l
src/glob.l
src/main.l
doc/ref.html
doc/refR.html
evExe() function
src/main.l
src/io.l
src/apply.l
25.9.7
Add comment for "full" library
src/lib/so.l
Use 'parse' in 'picolisp'
src/main.l
25.9.6
Add interactive line input
soTest.c
Clean up
src/Makefile
src/dec.l
src/main.l
src/lib.so.c
25.9.2
New files
src/lib.so.c
soTest.c
'patch' function
src/lib/llvm.l
src/lib/so.l
'exclude' continued
src/Makefile
src/lib/llvm.l
src/lib/ex.l
src/lib/so.l
src/main.l
src/pico.h
src/big.l
src/subr.l
25.8.28
'$StkLimit' related to stack size
src/glob.l
src/main.l
src/flow.l
Call ulimStk() to set '$SysStkLimit'
src/lib.c
lib/ulimit.l
Quiche mode
src/lib/llvm.l
src/gc.l
src/sym.l
src/db.l
src/apply.l
'export' never worked!
lib.l
doc/refE.html
25.8.22
'dlfun' instruction
src/lib/llvm.l
src/main.l
25.8.21
'exclude' function
src/lib/llvm.l
src/lib/ex.l
src/lib/so.l
25.8.20
'!!' function
src/glob.l
src/flow.l
doc/ref.html
doc/ref_.html
25.8.15
Save position mark on every move
lib/vip.l
25.8.13
'stoplisp' function
src/main.l
25.8.12
Optionally build as shared library
src/Makefile
src/lib/llvm.l
src/dec.l
src/main.l
src/lib.c
src/io.l
New files
src/lib/ex.l
src/lib/so.l
25.7.29
Pass 'exe' instead of 'prg' to 'event' and 'wake'
lib/simul.l
doc/des.html
25.7.28
Handle circular lists in 'less'
lib.l
25.7.27
'sq' function
src/glob.l
src/big.l
test/src/big.l
doc/ref.html
doc/refS.html
doc/ref_.html
25.7.22
Use 'tco' in 'gcd'
lib/frac.l
25.7.19
Remove 'saveCoIO'
src/flow.l
25.7.15
Allow to stop main coroutine with (co T)
src/flow.l
doc/refS.html
25.7.5
'allowed' must be called before any GUI libs and/or 'allow' calls
doc/refA.html
####### 25.6 #######
25.6.27
'recur' signature analog to 'tco'
doc/refR.html
Return cons pair with hard limit
lib/ulimit.l
25.6.26
New file
lib/ulimit.l
Define RLIMIT_STACK, RLIMIT_NOFILE and RLIMIT_NPROC
src/sysdefs.c
25.6.17
Increase '$GcCount' in 'gc' dynamically
src/gc.l
25.6.7
Skip comments
lib/xm.l
25.6.4
Optional 'sub?' start byte position
src/dec.l
src/main.l
src/sym.l
test/src/sym.l
doc/refS.html
'flg' argument to 'group' for pre-grouped lists
src/subr.l
doc/refG.html
25.5.30
New file
lib/select.l
Deprecate 'db/x' and 'select/3' Pilog predicates, and move to "lib/select.l"
lib/pilog.l
doc/refB.html
doc/refD.html
doc/refF.html
doc/refH.html
doc/refI.html
doc/refP.html
doc/refR.html
doc/refS.html
doc/refT.html
doc/refV.html
doc/select.html
Deprecate Pilog GUI functions, and move to "lib/select.l"
lib/form.l
25.5.25
'idx' in 'search' also for 'relQs'
lib/db.l
25.5.23
Optional index argument to 'accu'
lib.l
test/lib.l
doc/refA.html
Minor tuning in 'cache' and 'once'
lib.l
25.5.22
Keep all command lines non-unique but longer than 3 in TAB-completion
lib/vip.l
Optionally return reversed key-value pairs from 'enum'
src/sym.l
doc/refE.html
test/src/sym.l
25.5.21
'min' and 'max' also accept a single list argument
src/subr.l
test/src/subr.l
doc/refM.html
25.5.17
Mention '@@' in the 'forall' reference
doc/refF.html
25.5.16
'sub?' stores substrig byte position in '@@'
src/dec.l
src/main.l
src/sym.l
test/src/sym.l
doc/refS.html
25.5.11
Auto-init in 'inc' and 'dec'
src/lib/llvm.l
src/big.l
Revert to 20 instead of 21 bits from 'hash'
src/big.l
test/src/big.l
doc/refH.html
25.5.10
Print times in 'bench' also as [hh:mm]
lib/debug.l
doc/refB.html
25.5.9
Bug in 'attr'
lib/xm.l
25.5.8
'version' can also check for a required version
src/main.l
doc/refV.html
Optimize 'idx' in 'search' for (+Ref +Link) and '+Joint'
lib/db.l
25.5.5
New files
src/Makefile.openbsd
src/Makefile.macos
25.4.24
'forall' also accepts an 'init' step structure
lib/db.l
doc/refF.html
25.4.20
Return 21 instead of 20 bits from 'hash'
src/big.l
test/src/big.l
doc/refH.html
'idx' in 'search' *after* filtering
lib/db.l
25.4.19
Bug in 'initSeed' for external symbols
src/big.l
25.4.18
'X' and 'Prg' in 'forall' private
lib/db.l
25.4.17
Simplify 'body' and 'attr'
lib/xm.l
25.4.14
'forall' also accepts a 'search' query structure
lib/db.l
doc/refF.html
'idx' in 'search' only if necessary
lib/db.l
25.4.13
Avoid catch/throw in 'step'
lib/btree.l
25.4.9
Add 'rt' to 'pretty'
lib.l
Return 20 instead of 16 bits from 'hash'
src/big.l
test/src/big.l
doc/refH.html
Hash 'idx' in 'search'
lib/db.l
25.4.7
Support 'prune' also in 'scan' and 'iter'
lib/btree.l
doc/refP.html
Make 'for' on lists more gc-conservative
src/flow.l
####### 25.3 #######
25.3.24
Don't skip empty value in 'create' for updates
More 'create' tuning
lib/db.l
25.3.20
'stdEval' must preserve '$At2'
src/io.l
'rt' function
src/glob.l
src/main.l
doc/ref.html
doc/refR.html
25.3.19
Remove parallelization with 'later' from 'create'
lib/db.l
25.3.13
KeyEvent 'keyCode' and 'charCode' are deprecated
lib/form.js
25.3.11
"onkeypress" is deprecated
lib/xhtml.l
25.3.9
Fix description of 'peek' (does not block, but returns only the next byte)
doc/refP.html
25.3.8
Scroll page on horizontal touch movements in tables
lib/form.js
Cosmetics
src/io.l
lib/form.l
25.3.7
Move 'pagehide' handling (back/forward cache) from 'html' to 'form'
lib/xhtml.l
lib/form.l
25.3.6
Remove @lib/tinymce.l from distribution
25.3.2
Change type of '$NsLink' from 'i64*' to 'any'
src/glob.l
25.2.27
Export namespace list from 'repl' via 'T' argument to 'symbols'
src/glob.l
src/sym.l
src/io.l
doc/refS.html
25.2.26
Typo
doc/refI.html
doc/refN.html
Use 'any' instead of 'intern' for '+<pat>' arguments
bin/vip
25.2.21
Move cursor left in final left scroll
lib/vip.l
25.2.17
Scroll two steps with horizontal arrow keys
lib/vip.l
25.2.13
'tco' continued
lib/lint.l
25.2.9
'tco' continued
src/flow.l
lib.l
test/src/flow.l
25.2.8
'tco' and 'tc' tail call optimization functions
src/glob.l
src/flow.l
doc/ref.html
doc/refR.html
doc/refT.html
25.2.5
'if@@' function
src/glob.l
src/flow.l
test/src/flow.l
doc/ref.html
doc/refC.html
doc/refI.html
25.2.1
Missing 'F' argument to 'packJson'
lib/json.l
25.1.22
Change 'permute' to use a callback function
lib/simul.l
25.1.21
Postpone first move event for better double-click detection
lib/canvas.js
25.1.9
Re-introduce "array" feature
lib/json.l
25.1.5
Handle "^?"
lib/vip.l
Read and print decimal unicode in symbol names
src/io.l
lib.l
25.1.4
Wrong examples for 'eval' and 'run' offset
doc/refE.html
doc/refR.html
Fix 'remark'
lib.l
####### 24.12 #######
24.12.30
Remove '*SesAdr' check
lib/http.l
lib/adm.l
24.12.23
Automatic lib configuration (Mike Pechkin)
src/Makefile
Reset form on 'pagehide' event to disable back/forward cache
lib/xhtml.l
24.12.22
Reduce Cache-Control to 'no-store'
lib/http.l
24.12.17
'remark' continued
lib.l
lib/vip.l
Typo
doc/refT.html
24.12.16
'remark' function to generalize REPL-comments
src/glob.l
src/io.l
lib.l
lib/vip.l
doc/refR.html
'complete' reference
doc/refC.html
24.12.14
Print namespace of symbols in REPL-comments
src/io.l
lib/vip.l
24.12.13
Cyan attribute for REPL-comments
src/io.l
'markup' also in 'scratch'
Print numbers as fixnum-comments also in Vip REPL
lib/vip.l
24.12.10
New file
lib/vip/load.l
24.12.5
Add ":wq" as alias for ":x"
lib/vip.l
24.12.2
Add section about namespaces
doc/ref.html
doc/refE.html
doc/refI.html
doc/refL.html
doc/refN.html
doc/refP.html
doc/refS.html
24.11.23
Example for catching errors
doc/refC.html
24.11.21
Intern mark names into 'vip'
lib/vip.l
24.11.20
Generalize 'llvm~fmtNum'
Print numbers as fixnum-comments in REPL
src/big.l
src/io.l
src/subr.l
doc/rc.sample
doc/refR.html
doc/refS.html
doc/ref_.html
24.11.7
Remove obsolete C-level 'lisp' descriptions
doc/refN.html
doc/native.html
24.10.16
Support also HOME and END keys
lib/vip.l
####### 24.9 #######
24.9.7
'0' for empty name in minimal symbol diagram
doc/ref.html
24.8.19
Stop 'gps' via 'Flg' argument
lib/android.l
24.8.16
'pil' is obsolete
doc/refT.html
24.8.7
Add 'L' and 'S' to private symbols
lib/vip.l
24.8.6
Pass TERM environment variable to 'psh'
lib/http.l
bin/psh
24.8.4
'wake' returns 'isHeld'
lib/android.l
24.8.3
Fix 'gps' with two Location Listeners
lib/android.l
24.7.30
Typo
doc/refN.html
24.7.23
Call 'restart' as a UI thread (avoid 'java' reentrancy)
lib/android.l
24.7.15
Cosmetics
src/io.l
src/ht.l
24.7.10
'volatile' access to '$Signal'
src/lib/llvm.l
src/dec.l
24.7.9
'Exe' argument to 'xName' not used
src/main.l
src/sym.l
src/io.l
src/db.l
src/flow.l
src/ext.l
'prompt' function
src/glob.l
src/main.l
doc/ref.html
doc/refP.html
Typo
doc/structures
24.7.7
Check for stale I/O frames in 'unwind'
src/main.l
24.7.5
Change pbPut/pbGet to Zip transfers
bin/pty
Bug in 'erVar'
lib/form.l
Typo
doc/refD.html
24.7.4
Mention '~' in the 'pico' reference
doc/refP.html
24.7.3
Check for SDK_INT >= 31 in 'alarm?'
lib/android.l
24.7.2
Adjust 'alarm' for changed numeric arguments
lib/android.l
####### 24.6 #######
24.6.27
Minimal delay time 1 ms in 'des'
lib/simul.l
Force frame buffer register through runCo()
src/flow.l
Re-arrange structures for alignment
src/glob.l
src/dec.l
24.6.26
'otg' in coroutine structure missing
doc/structures
24.6.23
Show terminated originator in 'yield' error
src/flow.l
24.6.22
'prv' in coroutine structure is obsolete
doc/structures
Fix 'This' upon coroutine termination
Bug in coroutines with non-symbolic tags
src/flow.l
24.6.21
Change 'opt' from "-O3" to "-O2"
src/Makefile
Generalize 'all*'
lib.l
dirString() function
src/main.l
Bug in coroutine free-list management
src/flow.l
24.6.20
Generalize output in 'tty'
src/main.l
src/gc.l
Check for terminated originator in 'yield'
src/flow.l
24.6.18
Clear 'at' in coroutine 'unwind'
src/main.l
'putCrtEnv' clean up
src/dec.l
src/flow.l
24.6.17
Reentrant 'co' checks
src/flow.l
24.6.16
Thread exceptions revisited
lib/android.l
24.6.14
'alarm?' function
lib/android.l
24.6.13
Call fcntlSetFl() in 'accept' if OpenBSD or FreeBSD
lib/net.l
24.6.12
Disallow reentrant 'co' calls
src/flow.l
doc/ref.html
doc/refC.html
24.6.9
Default format 72 columns
lib/vip.l
COPYING
README
INSTALL
doc/microTemplates
24.6.5
Handle thread exceptions in 'java1'
lib/android.l
24.6.2
Make 'dirname' and 'basename' non-destructive
lib/misc.l
24.5.30
'catch' stores throw/error-flag in '@@'
src/flow.l
test/src/flow.l
doc/refC.html
lib/vip.l
lib/form.l
24.5.24
'iter' returns 'NIL'
doc/refI.html
24.5.23
Typo
doc/search.html
24.5.8
Minor mismatch
doc/faq.html
24.4.4
TAB-completion also for search commands
lib/vip.l
24.4.3
No 'flushAll' in child process 'bye'
src/main.l
src/lib.c
24.4.1
'for' instead of 'while' in 'des'
lib/simul.l
24.3.31
Change 'sendCmd' protocol to UDP -> background task
bin/pty
####### 24.3 #######
24.3.29
Include lib/sysdefs in "clean2"
src/Makefile
24.3.28
Ignore ESC in command mode
lib/vip.l
24.3.11
Call (raw T) at start and (raw NIL) when done
lib/vip.l
24.3.10
'scale' function
lib/svg.l
24.3.5
Bug in "words"
doc/viprc.sample
24.2.3
Fix 'stack' reference
doc/refS.html
24.1.29
Runtime relations via 'erVar' function
lib/form.l
24.1.21
Add "apk" to '*Mimes'
lib/http.l
23.12.29
Minor comment
lib/simul.l
####### 23.12 #######
23.12.18
requestAnimationFrame() not helpful
lib/canvas.js
23.12.13
'P' instead of 'N' in native call (malloc() returns pointer)
test/src/main.l
'*DB' is 'NIL' while no database is open
src/glob.l
src/main.l
src/gc.l
src/db.l
doc/refD.html
23.12.12
'server' single-shot (non-forking) mode with 'Flg' argument
lib/http.l
23.12.9
ZERO-cache also for 'co' stopping
src/flow.l
23.12.8
ZERO-cache and free-list for 'co' speedup
src/glob.l
src/dec.l
src/main.l
src/flow.l
doc/ref.html
23.12.6
'co' crashes when gc() runs in put()
src/flow.l
23.12.5
Return 1 from ulimStk() for minimal stack address
src/lib.c
23.12.4
Use 'key' instead of 'line' (because of GNU readline behaviour change)
in 'more' and 'bt'
lib/debug.l
doc/refM.html
doc/refB.html
in 'select'
lib/sq.l
doc/refS.html
and in 'query' (and thus also '?')
lib/pilog.l
doc/refQ.html
doc/ref_.html
23.12.3
Global '$StkBrk' not needed
src/glob.l
src/main.l
23.12.1
Change transient "U" in 'bench' to private
lib/debug.l
23.11.30
Typo
doc/refN.html
23.11.29
Default '*Rt' off
lib/simul.l
doc/des.html
Check for empty 'lst' in renderCanvas()
lib/canvas.js
23.11.28
Transient "U" in 'bench'
lib/debug.l
23.11.27
Resume all coroutines waiting for the same point in time
lib/simul.l
doc/des.html
23.11.26
Use '*@@' instead of '@@'
lib/vip.l
'make' stores linkage cell in '@@'
src/subr.l
doc/refM.html
23.11.22
Simplify key loop in 'des'
lib/simul.l
23.11.19
Fix 'help' for new reference format
lib/debug.l
doc/refH.html
23.11.18
Handle optional count in ":bd"
lib/vip.l
Explicit symbol argument to 'new'
src/flow.l
doc/refN.html
23.11.17
'sext' constexprs are deprecated (Mike Pechkin)
src/lib/llvm.l
23.11.12
Use 'push1' instead of 'push' in 'finish'
lib.l
Mark end of layout in 'tracks' also with "#"
lib/simul.l
Remove @lib/compat.l from distribution
23.11.7
Fix 'cancel' call in 'alarm'
Checks for SDK_INT >= 26 are obsolete
lib/android.l
23.11.3
Search also for inherited indexes in 'select'
Clean up
lib/sq.l
doc/refS.html
23.10.31
Handle external symbols in 'xName'
src/main.l
'flg' argument to 'ext?' to check physical existence
src/db.l
lib/debug.l
lib/vip.l
23.10.30
More general matching in 'search'
lib/db.l
Skip duplicates in 'hintQ'
lib/form.l
23.10.29
Load @lib/sq.l at the end of @lib/db.l
lib/db.l
lib/pilog.l
Keep relative file position
lib/vip/html.l
23.10.28
Change 'hintQ' to use 'match>'
lib/form.l
Return 'Val' from 'match>' methods
lib/db.l
23.10.27
Minor comment
lib/svg.l
Change 'dump' to use 'search'
lib/too.l
23.10.26
Insert "# VIP " headers
Fix <pre> markups
*.html
23.10.25
Typo
doc/search.html
Minor comments
src/subr.l
doc/refC.html
23.10.24
Typo
doc/search.html
23.10.23
Continued
doc/search.html
Add "search.html"
doc/toc.html
Comments
lib/db.l
23.10.22
Style for <pre> tags
doc/doc.css
23.10.21
Documentation continued
doc/refS.html
doc/search.html
23.10.20
New file
doc/search.html
Use (sys "BROWSER") if set
lib/vip.l
23.10.19
Cosmetics
lib/vip/draw.l
New file
lib/vip/html.l
Check for "# VIP " in the first three lines
lib/vip.l
23.10.18
Use inherited tree
lib/db.l
23.10.17
Optional extract-function argument to 'search'
lib/db.l
doc/refS.html
23.10.16
Bug in 'iter>' for '+Sn'
lib/db.l
23.10.15
Change 'select' to use 'search'
lib/sq.l
'+DbChart' and 'hintQ' functions
lib/form.l
'search' function with 'iter>' and 'match>' methods
lib/db.l
doc/ref.html
doc/refC.html
doc/refS.html
New file
doc/search
23.10.5
Check 'status != 200' in 'onload'
lib/form.js
####### 23.9 #######
23.9.27
Add namespace "-ap~main"
doc/select.html
23.9.26
Cosmetics
lib/form.l
23.9.23
Use '*Evt' mechanism instead of 'Busy'
lib/form.l
lib/form.js
Remove 'vf'
lib/vip.l
23.9.20
Change global 'FormReq' to local
lib/form.js
23.9.19
Optionally cache image in 'csDrawImage'
lib/canvas.l
lib/canvas.js
23.9.17
Missing semicolon
lib/canvas.js
23.9.13
Remove 'Queue' global
lib/form.js
23.9.9
Remove "form.html" and "app.html", add "des.html"
doc/toc.html
23.9.8
Don't fall back to stdin/stdout for closed files
src/io.l
Load also @lib/lint.l in 'psh'
lib/http.l
23.9.7
Realtime mode 'off' in "dining" demo
doc/des.html
23.9.6
Preserve initial 'This' in coroutines
src/flow.l
doc/ref.html
23.9.5
Adjust LLVM version check (Mike Pechkin)
src/Makefile
23.9.4
Mark 'tag' and 'prg' also in non-running coroutines
src/gc.l
23.9.3
Allow reentrancy in coroutines
src/flow.l
doc/ref.html
23.8.31
Tag checks in 'co' and 'yield'
src/dec.l
src/flow.l
Cosmetics
doc/des.html
23.8.29
'noLint' for 'RED'
lib/term.l
23.8.28
Homogenize 'input' and' 'output'
src/glob.l
src/dec.l
src/main.l
src/gc.l
src/io.l
src/flow.l
'null' instead of '@null' in 'table'
src/lib/llvm.l
23.8.27
Set namespace for '+<pat>' argument in debug mode
bin/vip
23.8.26
Handle $ErrFrames and $CtlFrames in coroutines
src/flow.l
src/dec.l
'yield' bug revisited
src/flow.l
23.8.25
Release reference to Java object (Todd Coram)
lib/android.l
23.8.22
Bug in 'yield' for nested coroutines
src/flow.l
23.8.21
Move 'getSize' to lib/term.l
lib/term.l
lib/vip.l
'clear' function
lib/term.l
23.8.20
Generalize 'attr'
lib/term.l
23.8.15
Note about coroutine environments
doc/ref.html
23.8.13
Clarify 'stack' reference
doc/refN.html
23.8.12
Avoid 'read' in 'download'
lib/misc.l
23.8.8
Search first 'priv' in 'nsp'
src/sym.l
doc/refP.html
Rename lisp-level functions '_xxx' to '_Xxx'
src/glob.l
src/main.l
src/gc.l
src/big.l
src/sym.l
src/io.l
src/db.l
src/apply.l
src/flow.l
src/subr.l
23.8.7
'startForeground' with service type
lib/android.l
23.8.6
Set SSL_CERT_FILE only if on mobile device
lib/android.l
23.8.4
Check local variables for lower case in 'lint'
lib.l
lib/lint.l
lib/xhtml.l
lib/form.l
lib/svg.l
23.8.3
Defer advancing the list pointer in 'for'
src/flow.l
23.8.1
Fixes to 'native' description
doc/refN.html
doc/native.html
Target SDK 34 / androidx
lib/android.l
23.7.28
opaque-pointers for '18 > LLVM >= 15' (Mike Pechkin)
src/Makefile
23.7.24
Partially revert style simplification from 21.11.21
lib/form.l
lib/form.js
23.7.23
New Vip commands
- "gw" View Web page
- "gh" View HTTP code
- "gb" Invoke Browser (w3m)
Implicit writing to 'scratch' files
Extend 'map+', 'map+g' and 'map+q'
lib/vip.l
23.7.21
Minor clarification of @-result
doc/ref.html
23.7.20
Revisit 'allow'
lib/svg.l
23.7.19
Missing arg to "getnameinfo" in 'host'
lib/net.l
23.7.17
Generalize 'def' for 'any' keys
src/flow.l
doc/refD.html
Don't 'allow' temporary files by default any longer
lib/http.l
lib/xhtml.l
lib/svg.l
23.7.13
Bug in 'input' and 'output': Must preserve '@'
src/io.l
23.7.10
Revert change from 23.7.6
bin/vip
TAB-completion also from command history
lib/vip.l
23.7.8
Note about accessing symbol values in ':'
doc/ref_.html
23.7.7
'all*' function
doc/ref.html
Exponent notation in 'parseJson' and 'readJson'
lib/json.l
23.7.6
Use 'str' instead of direct 'intern' to handle namespaces
bin/vip
23.7.4
Generalize HTTP method support
src/httpGate.c
23.7.2
Deprecate 'zxing?' / 'queryIntentActivities'
lib/android.l
####### 23.6 #######
23.6.25
Print current coroutine in 'stkErr'
src/main.l
23.6.18
Minor comment
bin/pty
23.6.16
Minor elaboration on the 'sect' reference
doc/refS.html
23.6.6
Disallow append mode (via "+file") in 'in' and 'load'
src/io.l
doc/refI.html
doc/refO.html
23.6.4
'+<pat>' defaults to tag in debug mode
bin/vip
Accept 'any' in 'intern'
src/lib/llvm.l
src/sym.l
lib.l
test/src/sym.l
doc/refI.html
lib/form.l
lib/dbgc.l
23.5.27
Global '*AlwaysAsk'
lib/form.l
23.5.25
Track network functions
lib/simul.l
New file
doc/Tracks
Add more stack checks
src/main.l
src/flow.l
23.5.24
Change stack segment safety margin from 4096 to 1024
src/glob.l
src/flow.l
23.5.15
Remove 'Cpy' from getCrtEnv(), set 'env' and '$StkLimit' in loadCoEnv()
src/dec.l
src/main.l
src/flow.l
23.5.7
Show buffer and dirty status also for long path names
lib/vip.l
23.5.6
Deprecate "ta" abbreviation for "tag" command
lib/vip.l
23.5.5
Fix description of left/right fork signals
doc/des.html
23.4.28
Set 'home' property in '<drawCanvas>' to '*Top'
lib/canvas.l
23.4.25
Wait for multiple events in 'pause'
lib/simul.l
doc/des.html
23.4.24
Use 'idx' instead of 'rank' in '*Next'
lib/simul.l
doc/des.html
Bug in 'compare' for anonymous symbols
src/main.l
23.4.22
New file
doc/des.html
Return max and min from 'idx' for 'T' and 'NIL' key arguments
Randomize 'idx' if 'flg' is '0'
src/sym.l
src/io.l
doc/refI.html
chance() function
src/dec.l
src/lib.c
23.4.18
Needs 'symb?' instead of 'sym?' in 'repl'
src/io.l
Cache coroutines for 'yield' in ZERO-properties
src/main.l
src/flow.l
Clean up ZERO key handling in 'put' and 'get'
src/sym.l
src/flow.l
Bug in ffiPrep() for direct Lisp arguments
src/lib.c
23.4.16
'private' cosmetics
lib/net.l
23.4.13
'finish' function
lib.l
lib/app.l
lib/heartbeat.l
bin/pty
bin/watchdog
doc/ref.html
doc/refB.html
doc/refF.html
doc/refO.html
23.4.5
Evaluate list arguments in 'select'
lib/sq.l
doc/refS.html
23.4.3
Examples and test cases for 'ext:Base64' in 'input' and 'output'
test/src/ext.l
doc/refI.html
doc/refO.html
####### 23.3 #######
23.3.29
Make second port for pbPut/pbGet optional
bin/pty
23.3.28
Suppress duplicates in 'db/[345]'
lib/pilog.l
23.3.27
Fix escapes for special characters
lib/debug.l
doc/ref.html
doc/refB.html
doc/refD.html
doc/refE.html
doc/refN.html
doc/refM.html
doc/refP.html
doc/refR.html
doc/refU.html
doc/refX.html
doc/ref_.html
doc/tut.html
doc/native.html
23.3.26
Fix various markup issues
lib/debug.l
lib/form.l
ref.html
ref?.html
faq.html
tut.html
native.html
select.html
httpGate.html
Set download link to demoApp.tgz
doc/select.html
23.3.25
Undo tag argument restriction from 14feb23
src/flow.l
doc/refC.html
doc/refY.html
23.3.19
Allow one "-" in uppercase global constants
Handle 'default'
lib/lint.l
'noLint' for 'null'
lib/android.l
23.3.17
Repeat last shell command with ":$"
lib/vip.l
23.3.13
Support more attributes in 'serverSentEvent'
Force chunked transfer in 'serverSend'
lib/xhtml.l
23.3.5
Typo
lib/vip.l
Restrict 'words' command to 'delimNs'
doc/viprc.sample
23.2.27
Bug in 'js>' for '+Url'
lib/form.l
23.2.22
Default hasbangs to /usr/bin/pil
bin/pty
bin/psh
bin/watchdog
23.2.14
Tag argument to 'co' and 'yield' must be a symbol
src/flow.l
doc/refC.html
doc/refY.html
23.2.9
Add "mp4" to '*Mimes'
lib/http.l
####### 23.2 #######
23.2.8
Check for atomic argument in 'made'
src/subr.l
23.2.6
Undo cosmetics from 14jul22
lib/btree.l
23.2.5
Keep 'prg' argument to 'des' private
lib/simul.l
23.2.4
Allow numeric argument to 'repl'
src/io.l
Add BROWN and PURPLE
lib/term.l
23.2.1
Numeric '*Rt' as speedup factor
Optional 'prg' argument to 'des'
Change '*Key' to fifo structure '*Keys'
lib/simul.l
23.1.31
Optional 'var' argument to 'key'
src/io.l
doc/refK.html
23.1.27
Optional anchor for '<this>'
'<a>' anchor function
lib/xhtml.l
23.1.21
Init '*Key' in 'des'
Bug in 'wake'
lib/simul.l
23.1.15
Handle 'onOff'
lib/lint.l
23.1.14
Auto-quote 'null'
lib/android.l
23.1.13
'setCooked', 'setRaw' not needed in 'main' and 'brkLoad'
src/main.l
src/flow.l
Call rl_deprep_terminal() in 'setCooked'
src/lib.c
23.1.9
Minor cosmetics
src/main.l
23.1.6
Add link to @lib/bash_completion
INSTALL
23.1.2
Separate buffer for each "$" (shell) command call
lib/vip.l
23.1.1
Clear *Complete upon backspace
lib/vip.l
22.12.30
Handle destructuring function parameters
lib/lint.l
22.12.28
Move 'less' to @lib.l
lib.l
lib/debug.l
doc/refL.html
####### 22.12 #######
22.12.21
Use 'less' in 'show'
lib.l
doc/refB.html
doc/refM.html
doc/tut.html
Minor fix indentation
lib/debug.l
'circ' for atomic mapping arguments no longer needed
lib/http.l
22.12.20
Global '*Key'
lib/simul.l
22.12.18
Add GREEN and BLUE
lib/term.l
22.12.15
Handle destructuring function parameters in 'funq'
src/main.l
22.12.12
Fix 'tword' to go to the last space
lib/vip.l
22.12.11
Clear 'last' for deleted buffer
lib/vip.l
Directly call 'symbols' in 'tag'
lib/vip.l
22.12.2
Add percentage display to '<progress>'
lib/xhtml.l
Commented example for LEFT and RIGHT
doc/viprc.sample
22.12.1
Check for ":" delimiter in TAB-completion
lib/vip.l
22.11.22
'boss' is obsolete
lib/android.l
TAB-completion also for colon-commands
lib/vip.l
22.11.20
Minor privates
lib/vip.l
22.11.19
Fix 'unwind'ing coroutines
src/dec.l
src/main.l
src/flow.l
Reset screen and namespaces upon error
lib/vip.l
bin/vip
22.11.18
'namespaces' function
lib/debug.l
doc/refN.html
doc/refS.html
Exchange also 'last', 'mark' and 'sc' in ":bx"
lib/vip.l
22.11.15
'shadows' function
lib/debug.l
doc/refS.html
Allow also new namespace for '-symbols'
lib.l
22.11.14
Wrong 'save' / 'safe' in 'rdList'
src/io.l
Private 'queue'
lib/simul.l
22.11.12
'tabs' command to replace tabs with spaces
'words' command to toggle between Lisp an C
doc/viprc.sample
Generalize delimiter checking
lib/vip.l
22.11.11
Store 'symbols' source info after the change
src/sym.l
22.11.10
'info' returns local time instead of UTC if the flag argument is zero
src/dec.l
src/main.l
src/lib.c
doc/refI.html
lib/vip.l
22.11.9
Set blob symlinks in mirror destination directories
src/ssl.c
22.11.2
Clear references to deleted buffer in ":bd"
lib/vip.l
22.10.30
Don't clear '@' and '@@' before (gc)
src/gc.l
doc/refG.html
22.10.26
Passing zero to 'tell' refers to the parent process
src/io.l
src/db.l
doc/refT.html
Remove @lib/boss.l from distribution
22.10.21
Use 'delete' instead of 'replace'
lib/dbgc.l
22.10.20
Minor cosmetics
src/main.l
src/subr.l
22.10.17
Decrement 'Ms' in 'waitFd' only if not 292MY
src/io.l
Include external declaration of ppoll()
src/lib.c
Fix reference of '*CPU'.
doc/refC.html
22.10.15
Avoid setting 'last' to current buffer
lib/vip.l
Call 'flush' in 'beep'
lib.l
22.10.6
'able' checks in 'val>' for '+ObjVal' and '+ObjVar'
lib/form.l
22.10.4
Add 'put' and 'get' to reference of '+Joint'
doc/refJ.html
####### 22.9 #######
22.9.29
Bitmask bug in <menu>
lib/xhtml.l
22.9.24
Use opaque-pointers in LLVM >= 15 (Mike Pechkin)
src/Makefile
22.9.16
Support partially circular lists in 'pretty' and 'view'
Print 'def' in 'pp' instead of 'de' for non-functions
lib.l
Simplify printing of circular lists
src/io.l
22.9.13
Move "ix.io" to @doc/viprc.sample, added "pb1n"
lib/vip.l
doc/viprc.sample
Bug in 'server' for non-numeric arguments
lib/net.l
22.9.9
Allow empty 'url' argument
src/ssl.c
22.9.6
Pass FLAG_IMMUTABLE to PendingIntent
lib/android.l
22.9.4
Avoid multiple auto timers
lib/canvas.js
22.9.3
Pass flag 'T' for mouse/touch events
lib/canvas.l
lib/canvas.js
22.9.1
Make 'all*' selective with 'T' or '0'
lib.l
doc/refA.html
lib/vip.l
22.8.31
Change 'http' abort time to 20 minutes
lib/http.l
22.8.30
'<progress>' function
lib/xhtml.l
Abort 'http' after 7 seconds
lib/http.l
22.8.29
Remove stale symbolic links
src/ssl.c
22.8.26
'cmd' function
lib/vip.l
22.8.22
Store debug source info in 'symbols'
src/dec.l
src/sym.l
lib/debug.l
doc/refD.html
doc/refS.html
22.8.21
Extend 'pool' tests
test/src/db.l
test/lib/db.l
22.8.20
'b8+' aligns stack buffers to 8 bytes
src/lib/llvm.l
src/main.l
src/io.l
src/db.l
src/flow.l
Pad 'dbFile' and 'child' to multiples of 8
src/dec.l
Add file
doc/viprc.sample
Improve use cases
doc/rc.sample
22.8.19
'gPrintf' returns void
src/dec.l
Size check in gPrintf()
src/lib.c
'save' before 'loop'
src/main.l
'$TickU' and '$TickS' are obsolete
src/glob.l
22.8.18
Declare 'Tio' and 'Fsign' as "char" instead of "int"
src/lib.c
Make insensitive to endianness
test/src/main.l
22.8.1
Add note on destructuring bind of function parameters
doc/ref.html
22.7.27
Bug in 'extra' assuming positive pointers
src/flow.l
Display applied functions in backtraces
lib/debug.l
lib/app.l
22.7.20
Bug in 'compare' for circular lists
src/main.l
test/src/subr.l
22.7.16
Call 'blob+' in (clone> . +Entity)
lib/db.l
22.7.15
Improve 'hex' argument verification
lib/misc.l
22.7.14
Use 'skip' instead of 'line' in 'here'
lib/misc.l
Minor cosmetics
lib/btree.l
22.7.13
'overview' function
lib/android.l
Go to last instead of previous buffer in ":bd"
lib/vip.l
22.7.12
Remove "Building httpGate"
doc/httpGate.html
'<drawCanvas>' function
lib/canvas.l
22.7.11
Go to previous instead of next buffer in ":bd"
lib/vip.l
22.7.9
Correct earth mean radius to 6371 km
lib/gis.l
22.7.8
'map+', 'map+g' and 'map+q' functions
lib/vip.l
22.7.3
Default values in 'print>' methods
lib/sq.l
22.7.2
Uncomment 'shift' import
src/lib/llvm.l
Let 'beep' return 'NIL'
lib.l
lib/vip.l
doc/refB.html
22.6.30
Show blank screen in 'restart'
lib/android.l
####### 22.6 #######
22.6.30
Bug in realpath() handling
lib/vip.l
22.6.26
Corrections (Christos Gitsis)
doc/ref.html
doc/refA.html
More fixes in local coroutine stacks
src/flow.l
22.6.25
realpath() directly if directory
lib/vip.l
22.6.24
Apply realpath() only to path of the file
lib/vip.l
More fixes in local coroutine stacks
src/flow.l
22.6.23
Set 'org' when resuming a coroutine in 'co'
src/flow.l
22.6.22
Silent exit if connect fails
src/ssl.c
22.6.17
Bugs in 'sort' with 'fun' argument
src/subr.l
22.6.15
Disable '*Run' in 'sync' calls
lib/form.l
22.6.13
Bug in printing symbols overshadowed in 'priv'
src/io.l
22.6.10
Don't lock remote symbols
lib/vip.l
22.6.9
Check empty name in '+SymField'
lib/form.l
22.6.7
Refined system clipboard copy
lib/vip.l
22.6.6
Missing "void *" in '*C-Defs'
src/lib/llvm.l
22.6.3
Disable form action for stale locks
lib/form.l
22.5.31
Remove 'visibilitychange' event handling
lib/xhtml.l
22.5.30
'h' function
lib/debug.l
doc/refH.html
22.5.29
String arguments do no longer cause strdup(3) calls
doc/native.html
22.5.26
Add 'binutils'
INSTALL
Use 'output' instead of 'pipe'
lib/misc.l
Replace control characters with backslash sequences
lib/misc.l
lib/db.l
lib/vip.l
lib/term.l
lib/http.l
lib/xhtml.l
lib/form.l
lib/canvas.l
lib/xm.l
lib/tinymce.l
test/src/io.l
test/src/sym.l
test/lib/misc.l
doc/tut.html
doc/refA.html
doc/refP.html
doc/form/refS.html
doc/app.html
misc/bigtest
22.5.25
Bug in 'untrace'
lib/debug.l
Multi-line data in 'serverSend'
lib/xhtml.l
'input' and 'output' functions
src/glob.l
src/dec.l
src/main.l
src/gc.l
src/io.l
test/src/io.l
doc/ref.html
doc/refI.html
doc/refO.html
22.5.18
Fix 'raw' example
doc/refR.html
Clear stdin 'tty' flag in 'pipe' child
src/io.l
22.5.15
Replace "%" also if in command window
lib/vip.l
22.5.13
Optional "dup" file descriptor argument to 'fd'
src/io.l
doc/refF.html
Use 'in' instead of 'pipe' for "ccrypt" call
lib/vip.l
22.5.12
Fix 'dbs' example
doc/refD.html
22.5.11
Use '*Uri' instead of '*Url' in 'post'
lib/form.l
22.5.10
Support also PUT, PATCH and DELETE
src/httpGate.c
22.5.6
Global '*Uri'
lib/http.l
Clean up '*Err'
lib/app.l
22.5.5
Call 'flush' in 'tty'
src/dec.l
src/main.l
src/ht.l
22.5.3
Use 'tty' in 'msg'
lib.l
Re-introduce 'visibilitychange' event handling
lib/xhtml.l
22.5.1
'fun' function
src/glob.l
src/apply.l
test/src/apply.l
doc/ref.html
doc/refF.html
22.4.30
Add "epub" mime type
lib/http.l
22.4.26
Outdated example for 'lisp'
doc/refL.html
22.4.24
Define PATH_MAX
src/sysdefs.c
lib/vip.l
22.4.22
Preserve 'errno' across readline(3) calls
src/dec.l
src/io.l
src/lib.c
Word search without 'match' support
lib/vip.l
22.4.20
'noLint' declarations
lib/xhtml.l
lib/svg.l
lib/canvas.l
22.4.17
Don't maintain ErrFrames and CtlFrames in coroutines
Fix file descriptor leak when stopping coroutines
src/dec.l
src/flow.l
22.4.11
'trail' check not needed
lib/app.l
22.4.9
Collect also C-tags into @lib/map
src/lib/llvm.l
src/main.l
src/pico.h
src/lib.c
22.4.8
Add "-o lib.bc"
Add "clean2" target
src/Makefile
22.4.6
Optional rounding in 'lat', 'lon' and 'fmt'
lib/gis.l
22.4.5
Check zero charCode in hint key events
lib/form.js
####### 22.3 #######
22.3.16
Pre-set 'home' property in 'form'
Conditionally unlock and enable in 'panel'
lib/form.l
22.3.14
Bug in 'ps'
lib/svg.l
Local and private declarations
lib/xm.l
Escape also backslashes in '<poi>'
lib/gis.l
22.3.13
Escape single quotes in '<poi>' text argument
lib/gis.l
Use 'get' instead of (cdr (asoq ..))
lib/xm.l
22.3.8
Revisit tcsetpgrp() calls
src/dec.l
src/flow.l
lib/debug.l
22.3.4
Plain searches without 'match' overhead
lib/vip.l
22.2.28
Issues with tcsetpgrp() calls
src/io.l
src/flow.l
22.2.26
Transient and private namespaces in catch and coroutine frames
src/glob.l
src/dec.l
src/main.l
src/gc.l
src/flow.l
22.2.24
Refactor 'repl' loops
src/io.l
22.2.23
Don't exit top-level REPL
src/main.l
src/io.l
22.2.22
Print error location in 'repl'
lib/form.l
Print error location in 'evCmd'
lib/vip.l
22.2.21
'height' function
Handle '0' and 'T' directly in 'ps'
lib/svg.l
22.2.19
Handle NILs in (has> . +List)
lib/db.l
Increase stack size
bin/vip
22.2.13
'move!>' method for '+Entity'
lib/too.l
22.2.11
Comment for 'fill'
src/subr.l
22.2.5
Remove 'dbs+'
lib/db.l
doc/ref.html
doc/refD.html
Pass '*Uuid' and arguments to RPC calls
lib/android.l
22.2.2
Revisit (rel> . +Dep)
lib/db.l
22.2.1
Add 'nth' to "see also" of 'get'
doc/refG.html
22.1.30
Additional arguments to 'fish'
src/apply.l
doc/refF.html
test/src/apply.l
lib/too.l
22.1.28
Optional third argument to 'fill'
src/subr.l
doc/refF.html
test/src/subr.l
22.1.27
'wrap' also converts string to list of strings
lib/misc.l
doc/refW.html
test/lib/misc.l
'badDep' function
lib/too.l
22.1.26
Bug in (rel> . +Dep)
lib/db.l
22.1.21
Optional database file for 'forall'
lib/db.l
doc/refF.html
Inherit tags from superclasses
lib/vip.l
Refactor screen handling
lib/term.l
lib/vip.l
22.1.20
'seq' instead of 'dbMap' in 'dangling'
'displaced' function
lib/too.l
22.1.18
Stack check in 'apply'
src/apply.l
Discrete-Event Simulation: 'des', 'pause', 'event' and 'wake' functions
lib/simul.l
22.1.15
'-debug' and '-trace' functions
lib/debug.l
doc/ref.html
doc/refD.html
doc/refT.html
22.1.13
Change "EMail" to "E-Mail"
doc/form/refM.html
22.1.11
Central Kurdish localization (Hunar Omar)
loc/CKB.l
loc/ckb
22.1.10
Variable '*Port'
bin/pty
22.1.8
Handle SIGWINCH
bin/pty
Reset readline in 'setTerm'
lib/term.l
Display namespace in 'repl'
lib/form.l
22.1.7
'refObj' searches also values
lib/too.l
22.1.6
Don't reset 'Busy' in ping()
lib/form.js
22.1.4
Bug in 'name' for external symbols
src/sym.l
####### 21.12 #######
22.1.3
Bugs in (del> . +Entity) and (has> . +List)
lib/db.l
test/lib/db.l
'assoc', 'rassoc', 'asoq' and 'rasoq' accept circular lists
src/subr.l
test/src/subr.l
21.12.30
Enable file transfers (via 'pbPut' and 'pbGet' in PilBox)
bin/pty
21.12.29
Fix touch scrolling in chart tables
lib/form.l
lib/form.js
lib/xhtml/table
21.12.27
'-symbols' function
lib.l
doc/ref.html
doc/refS.html
21.12.22
OpenBSD patch (Frithjof Schulze)
src/httpGate.c
21.12.20
Don't put single "." into readline history
21.12.14
Avoid 'resolveActivity' in 'startActivityForResult'
lib/android.l
21.12.13
Splice also atomic results in "~" read macros and 'fill'
src/io.l
src/subr.l
test/src/subr.l
doc/refF.html
21.12.12
Bug in 'format' (llvm~fmtNum)
src/big.l
Overflow float/double to bignum
src/dec.l
src/main.l
src/pico.h
src/lib.c
21.12.10
'native' and 'struct' not limited to C functions
doc/refN.html
doc/refS.html
'Str' not used in 'getWord'
lib/vip.l
21.12.8
Add 'adr' to "see also" of 'native'
doc/refN.html
21.12.5
Global '*Keys'
":map" command
lib/vip.l
21.12.4
Lock, sync and commit external symbols
lib/vip.l
21.11.30
'R' may be modified in 'evCmd'
lib/vip.l
21.11.29
Extend 'command' with '*CmdMap'
Continue direct editing only with "K" ("^]" always goes to source)
lib/vip.l
21.11.28
Remove '*Complete' filter
lib/vip.l
21.11.26
'all*' function
lib.l
doc/refA.html
Refactor TAB-completion
lib/vip.l
21.11.25
Search namespaces in TAB-completion
lib/vip.l
21.11.22
Minor cosmetics
lib.css
lib/canvas.js
lib/plio.js
lib/gis.js
loc/ar
loc/ch
loc/cn
loc/de
loc/hr
loc/it
loc/ja
loc/tr
21.11.21
Simplify style manipulations
lib/form.l
lib/form.js
21.11.18
Bug in 'bagBag'
lib/form.l
21.11.17
Minor cosmetics
lib/form.l
Inherit 'Dbf' in 'forall' from superclasses
lib/db.l
21.11.16
Re-introduce the '====' function
src/glob.l
src/sym.l
test/src/sym.l
doc/ref_.html
doc/diff
and use it in 'locale'
lib/misc.l
Preserve transients in comma read macro
src/io.l
21.11.15
Use 'fName' in 'vf'
lib/vip.l
21.11.12
'+ObjVar' prefix class
lib/form.l
21.11.11
Missing semicolon (Mia)
lib/form.js
21.11.9
Increase escape delay from 80 to 120
lib/vip.l
21.10.31
Mention Ctrl-D to terminate 'bt', 'query' and '?'
doc/ref.html
doc/refB.html
doc/refM.html
doc/refQ.html
doc/ref_.html
21.10.30
Generalize cut in 'prove'
src/subr.l
21.10.29
rl_initialize() not necessary
src/lib.c
21.10.28
Display namespace in 'status'
lib/vip.l
Minor optimization in '*Prompt'
lib/debug.l
21.10.27
'vf' (vi/find) function
lib/vip.l
Default '*Tab' to 1
lib/xhtml.l
21.10.25
'*KeyMap', '*KeyMap-g' and '*KeyMap-q' globals (Erik Gustafson)
More transients
lib/vip.l
21.10.18
Refactor (gui> . +User)
lib/adm.l
lib/user.l
21.10.15
Mention Ctrl-D to terminate 'more'
doc/refM.html
21.10.11
"CSV" -> "Export CSV" in 'csv'
lib/xhtml.l
21.10.9
'pico~cells' function
lib/vip/draw.l
Minor cosmetics
lib/vip.l
Fix 'arrow' for small distances
lib/vip/draw.l
21.10.2
Remove '+JsField'
lib/form.l
doc/app.html
doc/form/refJ.html
Import 'permute' from 'pico' namespace
lib/simul.l
21.9.29
'+hintObj' prefix class for '+Obj' and '+ObjVal'
lib/form.l
21.9.25
'rand' argument checks
src/big.l
doc/refR.html
21.9.24
Ignore SIGINT in 'ctty' parent process
src/main.l
Forward "^D"
bin/pty
21.9.23
Clear '*Err'
bin/pty
21.9.20
Initial '$StkBrk' and '$StkLimit'
src/glob.l
src/main.l
21.9.19
ulimStk() system call
src/dec.l
src/pico.h
src/lib.c
21.9.17
Clear 'history' after argument evaluation
src/main.l
21.9.16
Insert "^M" before "^J" in 'mail' body
lib/misc.l
'refObj' function
lib/too.l
21.9.13
Insert "^M" before "^J" in 'mail' body
lib/misc.l
'prBase64' optional "^M" argument
lib/misc.l
doc/refP.html
Explanations for reference syntax
doc/ref.html
21.9.10
"gg" uses *Count
lib/vip.l
21.9.3
'mis>' method for '+Swap'
lib/db.l
21.9.1
select() system calls are now poll()
doc/refK.html
doc/refL.html
doc/refR.html
doc/refS.html
doc/refW.html
21.8.30
Typo
doc/refR.html
21.8.28
Add note about 'native'
doc/faq.html
'rid' function
test/src/sym.l
21.8.27
'rid' function
src/glob.l
src/sym.l
test/src/sym.l
doc/ref.html
doc/refC.html
doc/refD.html
doc/refF.html
doc/refQ.html
doc/refR.html
21.8.26
Bug in 'place'
src/subr.l
test/src/subr.l
21.8.25
Division by zero did not throw an error
src/big.l
Private declarations
lib/xhtml.l
21.8.22
Default alert text color black
lib.css
21.8.20
Wrong 'tty' checks for stdin/stdout
src/main.l
src/flow.l
21.8.19
LLC and LINK variables
src/Makefile
21.8.18
Strip binaries
src/Makefile
'rasoq' function
src/glob.l
src/subr.l
test/src/subr.l
doc/ref.html
doc/refA.html
doc/refR.html
21.8.16
Add 'packJson'
lib/json.l
21.8.14
Sort TAB-completion
lib/vip.l
Host option
bin/pty
21.8.13
Check (sys "SHELL") for default shell
lib/vip.l
21.8.12
Some Pilog variables private again
lib/pilog.l
21.8.11
Default shell "bash" -> "sh"
lib/vip.l
Shell prefix "$ " -> "!" in 'repl'
lib/form.l
21.8.9
'go', 'up', 'down', 'left' and 'right functions
'block' function
lib/vip/draw.l
Preset terminal attributes in setRaw()
src/lib.c
21.8.8
Add files
lib/term.l
bin/pty
21.8.7
Clean up terminal handling
lib/vip.l
21.8.6
Define TIOCSWINSZ
src/sysdefs.c
Set standard I/O to a PTY with (ctty)
src/Makefile
src/dec.l
src/main.l
doc/refC.html
21.8.3
'tty' flag also in 'inFile'
src/dec.l
src/main.l
src/io.l
src/flow.l
21.7.27
Direct 'run' in auto-load with "# VIP (...)"
lib/vip.l
21.7.26
Bug in reading non-ASCII characters in internal symbols
src/io.l
21.7.25
'cnt' argument to 'unify'
src/subr.l
lib/pilog.l
doc/refU.html
21.7.24
Signal handler in 'prove'
src/subr.l
21.7.23
Pilog variables not private
lib/pilog.l
Revisit Pilog variables in Lisp expressions
src/subr.l
21.7.22
Revisit private symbols in properties
lib/vip.l
21.7.21
Global '*Rule' cleared in 'repl'
src/glob.l
src/io.l
doc/ref.html
doc/refB.html
doc/refC.html
doc/refR.html
Maintain source properties also in 'clause'
lib/pilog.l
Bind Pilog variables in Lisp expressions
src/subr.l
lib/pilog.l
test/src/subr.l
doc/ref.html
doc/refM.html
doc/refR.html
doc/refT.html
Intern private symbols also in properties
lib/vip.l
Bug in 'putSrc' for first property
src/flow.l
21.7.18
Minor cosmetics
src/subr.l
21.7.16
em120 and em150 styles
lib.css
21.7.13
'buf' function
doc/ref.html
doc/refB.html
21.7.10
Revisit (put> . +Swap)
lib/db.l
test/lib/db.l
21.7.5
Fix 'clone>' for '+Swap' in '+Bag'
lib/db.l
21.7.4
E/R unit tests
lib/test.l
test/src/sym.l
test/src/db.l
test/lib/db.l
Clean up 'has>' methods
lib/db.l
lib/tinymce.l
Revisit '+Bag' and '+Swap'
lib/db.l
21.7.3
Support methods as ":ta msg> +Cls"
lib/vip.l
Make 'bagBag' non-destructive
lib/form.l
21.7.2
'forall' function
doc/ref.html
Add file
doc/rc.sample
21.7.1
'forall' function
lib/db.l
doc/refF.html
####### 21.6 #######
21.6.30
'+Swp' prefix class
lib/form.l
Lazy external symbol creation in '+Swap'
lib/db.l
'has>' check in (rel> . +Joint)
lib/db.l
Keep application namespaces for background tasks in '*Ns'
lib/vip.l
21.6.29
Keep application namespaces for background tasks in '*Ns'
lib/vip.l
bin/vip
21.6.24
Minor addition
doc/microTemplates
21.6.23
Micro-templates for '<table>' and '<grid>'
doc/microTemplates
21.6.22
Micro-templates for '<table>' and '<grid>'
lib/xhtml.l
lib/xhtml/table
lib/xhtml/grid
Add <tr> and </tr>
lib/xhtml/tab
21.6.21
Minor fix in reference for 'all'
doc/refA.html
21.6.20
Micro-templates 2.0
lib/xhtml.l
lib/xhtml/
doc/microTemplates
21.6.19
Wrong 'Attr' output in 'html'
lib/xhtml.l
'pack' not needed
lib/vip.l
General argument to 'any'
src/io.l
doc/refA.html
21.6.18
Also 'flip'ped sort in 'sortButton'
lib/form.l
21.6.17
'sortButton' function
lib/form.l
21.6.16
Vip running in coroutine
Suspend with "qz", resume with (v)
lib/vip.l
doc/refV.html
21.6.15
Fix terminal after 'pipe', 'in' and 'out'
src/io.l
21.6.14
Minor fix indentation
src/flow.l
Restore private declarations
lib/xhtml.l
Missing '+Remote' methods
lib/db.l
21.6.13
Add '\e' to escape markups
src/io.l
doc/ref.html
21.6.11
Optional 'put' and 'get' function arguments for '+Joint'
lib/db.l
21.6.9
Revert confirm row deletion (01may21)
lib/form.l
21.6.4
'ctty' 'NIL' argument is obsolete
src/main.l
doc/refC.html
Minor renaming
src/flow.l
21.6.2
Push tag stack in "gf" command
lib/vip.l
Add A3 page sizes
lib/svg.l
Intern some globals for reload
lib/form.l
21.6.1
'class' clears old method and var definitions
'var' uses 'def' instead of 'put'
lib.l
test/lib.l
21.5.29
Set cooked terminal mode in 'repl'
src/io.l
21.5.27
Revisit TAB-completion
lib/vip.l
Use 'val' for '+Swap' relations in 'set>'
lib/db.l
21.5.25
Revisit TAB-completion from 'history'
lib/vip.l
Unary '+' is obsolete in '*Run' setup
lib.l
21.5.24
Nesting bug in 'cells'
lib/vip/draw.l
21.5.23
Maintain 'symbols' per buffer
lib/vip.l
21.5.21
TAB-complete from 'history' on ": "
":v" command
lib/vip.l
21.5.20
setCooked() only if necessary
src/lib.c
21.5.19
Add file
lib/clang.l
21.5.18
Fix 'struct' example
doc/refS.html
21.5.14
'<grid>' vertical-aligns to top
lib.css
Optional submenu CSS class index
lib/xhtml.l
lib/xhtml/menu
21.5.12
Add file
doc/microTemplates
Needs '*XhtmlField' in '<field>'
lib/xhtml.l
21.5.11
Don't set IPV6_V6ONLY for OpenBSD
lib/net.l
21.5.10
64-bit check not needed
lib/adm.l
21.5.6
Missing '+Remote' methods
lib/db.l
Missing 'mail' handshake (Mike Pechkin)
lib/misc.l
21.5.5
Fix catch/throw between coroutines
src/dec.l
src/main.l
src/flow.l
doc/structures
doc/ref.html
21.5.4
I/O save/restore bug in 'co' / 'yield'
src/main.l
src/flow.l
Minor cosmetics (collapse two 'let's)
src/flow.l
Fix docs and comments about coroutine tags
src/main.l
src/flow.l
doc/ref.html
doc/refC.html
doc/refS.html
doc/refY.html
21.5.3
(co) returns tag of current coroutine
src/flow.l
doc/refC.html
'shift' function
src/glob.l
src/sym.l
doc/ref.html
doc/refS.html
doc/refP.html
test/src/sym.l
21.5.1
Confirm row deletion also if repeated
lib/form.l
21.4.30
Add file
doc/app.html
21.4.29
Call 'loadCoEnv' in 'unwind'
src/main.l
src/flow.l
Remove coroutines from catch/throw environment
src/glob.l
21.4.22
Show thousands-separator in total counts in search dialogs
lib/form.l
21.4.21
File in first column of directory listings
lib/vip.l
21.4.20
Bug in 'till' reading UTF-8
src/io.l
21.4.19
Align SUBRs to 8 bytes
src/lib/llvm.l
21.4.18
's-expr' function, evaluate with "^E"
lib/vip.l
21.4.17
'stack' return value fix
src/main.l
doc/refS.html
Infinite timeout for values greater than 24 days in '*Run', 'wait' and 'key'
on non-Linux systems (using ppoll(2) on Linux)
src/lib.c
'stack' continued
src/main.l
21.4.16
Independent size of main stack segment
src/glob.l
src/main.l
src/flow.l
doc/refS.html
'stack' returns unused spaces
src/main.l
doc/refS.html
'llvm~cons2' function
src/dec.l
src/gc.l
Coroutine structure 'prv'
doc/structures
Optional alignment for 'memcpy' and 'memset'
src/lib/llvm.l
src/main.l
src/db.l
src/flow.l
21.4.15
Infinite timeout for values greater than 24 days in '*Run', 'wait' and 'key'
(only on systems with sizeof(int) == 4)
src/lib.c
21.4.14
Skip remote replication if 'key' is empty
src/ssl.c
21.4.13
Bug in '<table>': Header text not evaluated
lib/xhtml.l
ContextCompat 'permit' function
lib/android.l
'Str' in 'repl' private
lib/form.l
21.4.10
Minor fix indentation
lib/vip.l
21.4.9
Extensions to 'NIL' punning
doc/ref.html
21.4.8
Support '-fun' command line arguments
bin/vip
21.4.7
'enum?' function
src/glob.l
src/sym.l
doc/ref.html
doc/refE.html
doc/refL.html
test/src/sym.l
21.4.4
Wrong external declaration
src/ht.l
21.4.3
Bug in 'stem' (for -O2 or -O3)
src/subr.l
21.4.1
'enum' returns cell instead of value
src/sym.l
doc/refE.html
test/src/sym.l
doc/faq.html
Bug in '*Term' signal handling
src/main.l
21.3.31
'+Remote' entity class
lib/db.l
lib/too.l
21.3.30
Exit '*', '/*', '/' and '%' upon zero
src/big.l
21.3.29
Note about the default browser for 'doc' calls
man/man1/picolisp.1
doc/man.html
21.3.26
'enum' with single argument returns association list
src/sym.l
doc/refE.html
test/src/sym.l
21.3.25
Return 'NIL' from 'enum' if key <= 0
src/sym.l
Unit tests for 'enum'
test/src/sym.l
'*Term' signal handling (Constantine Bitensky)
src/glob.l
src/main.l
doc/ref.html
doc/refT.html
doc/refA.html
doc/refH.html
doc/refS.html
doc/refW.html
21.3.24
'enum' function
src/sym.l
21.3.23
'enum' function
src/glob.l
src/sym.l
doc/ref.html
doc/refE.html
doc/refH.html
doc/refI.html
'rev' function bit count argument
src/big.l
doc/refR.html
21.3.21
'rev' function
src/glob.l
src/big.l
doc/ref.html
doc/refR.html
doc/refH.html
doc/refI.html
doc/ref_.html
21.3.17
Still missing
lib/xm.l
Ukrainian and russian localization (Constantine Bitensky)
loc/RU.l
loc/uk
loc/ru
21.3.10
Renamed "UK.l" to "UA.l", restored "UK.l" and renamed to "GB.l"
Renamed "gr" to "el" and "jp" to "ja"
loc/UA.l
loc/GB.l
loc/uk
Symbolic links
UK.l -> GB.l
gr -> el
jp -> ja
21.3.8
Missing file
lib/xm.l
21.3.7
Ukrainian localization (Constantine Bitensky)
loc/UK.l
loc/uk
21.3.5
Subdirectory recursion buffer-local
Recurse when no trailing "/"
lib/vip.l
21.3.2
'*Bye' cleared in children
src/io.l
lib.l
lib/adm.l
lib/app.l
doc/diff
21.2.28
Missing check for 'NIL'
lib/vip.l
21.2.26
Remove Access-Control-Allow-Origin header
lib/http.l
21.2.20
Prefix "@" with "./" in directory listings
Recurse into subdirectories with ":E"
lib/vip.l
21.2.16
Case insensitive search with "~" prefix
Increase escape delay to 80 ms
lib/vip.l
21.2.12
Rename file to "area", add "field"
lib/xhtml.l
lib/xhtml/area
lib/xhtml/field
21.2.11
Elaborate '<area>'
lib/xhtml.l
lib/xhtml/textarea
21.2.9
Ignore SIGHUP for non-config calls
src/httpGate.c
21.2.8
Start task in first 'heartbeat' call
lib/heartbeat.l
Touch events not needed
lib/xhtml/tab
21.2.7
Variable titles in menu
Layout template line format
lib/xhtml.l
lib/xhtml/menu
lib/xhtml/layout
21.2.5
'plio' must preserve $Ptr and $End
src/io.l
Load @lib/too.l always in 'psh'
lib/http.l
21.2.3
Load @lib/sq.l in 'psh'
lib/http.l
21.2.2
Optional insert string in config keys
src/httpGate.c
doc/httpGate.html
21.2.1
Typo ".pil" -> "./pil"
doc/httpGate.html
21.1.28
Typo "none" -> "nond"
doc/tut.html
21.1.25
Remove 'evCmd' from custom function keys
lib/vip.l
21.1.23
'fish' function "skip" return value
src/apply.l
doc/refF.html
lib/vip.l
21.1.22
em80, em90 and em100 styles
lib.css
21.1.21
Stack check in 'fish'
src/apply.l
21.1.20
Comment
lib/tinymce.l
21.1.18
Bug in 'pack' of external symbol names
src/sym.l
21.1.17
'pil' backport
lib/compat.l
21.1.15
Micro-templates
lib/xhtml.l
lib/xhtml/
Bug in 'pass'
src/apply.l
Call 'bufString' instead of 'pathString' in 'token'
src/io.l
21.1.14
Bug in 'bit?'
src/big.l
21.1.8
Minor cosmetics
src/subr.l
Improved terminal reset
src/lib.c
21.1.5
Debian release
Dec20
Pil21 initial version
####### 21.0 #######
|