1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015
|
/***********************************************************************/
/* COMMSET1.C - SET commands A-N */
/***********************************************************************/
/*
* THE - The Hessling Editor. A text editor similar to VM/CMS xedit.
* Copyright (C) 1991-1999 Mark Hessling
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to:
*
* The Free Software Foundation, Inc.
* 675 Mass Ave,
* Cambridge, MA 02139 USA.
*
*
* If you make modifications to this software that you feel increases
* it usefulness for the rest of the community, please email the
* changes, enhancements, bug fixes as well as any and all ideas to me.
* This software is going to be maintained and enhanced as deemed
* necessary by the community.
*
* Mark Hessling, M.Hessling@qut.edu.au http://www.lightlink.com/hessling/
* PO Box 203, Bellara, QLD 4507, AUSTRALIA
* Author of THE, a Free XEDIT/KEDIT editor and, Rexx/SQL
* Maintainer of PDCurses: Public Domain Curses and, Regina Rexx interpreter
* Use Rexx ? join the Rexx Language Association: http://www.rexxla.org
*/
static char RCSid[] = "$Id: commset1.c,v 1.3 1999/07/06 04:19:21 mark Exp mark $";
#include <the.h>
#include <proto.h>
/*#define DEBUG 1*/
/*man-start*********************************************************************
========================================================================
SET COMMAND REFERENCE
========================================================================
**man-end**********************************************************************/
/*man-start*********************************************************************
COMMAND
set alt - change alteration counts
SYNTAX
[SET] ALT [n] [m]
DESCRIPTION
The SET ALT command allows the user to change the alteration counts.
This command is usually called from within a macro.
The first number; 'n' sets the number of changes since the last
AUTOSAVE was issued.
The second number; 'm' sets the number of changes since the last
SAVE or SSAVE command was issued.
COMPATIBILITY
XEDIT: Compatible.
KEDIT: Compatible.
DEFAULT
OFF
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Alt(CHARTYPE *params)
#else
short Alt(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define ALT_PARAMS 2
CHARTYPE strip[ALT_PARAMS];
CHARTYPE *word[ALT_PARAMS+1];
unsigned short num_params=0;
unsigned short autosave_alt=CURRENT_FILE->autosave_alt;
unsigned short save_alt=CURRENT_FILE->save_alt;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Alt");
#endif
strip[0]=STRIP_BOTH;
num_params = param_split(params,word,ALT_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params == 0)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params > 2)
{
display_error(2,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (!valid_positive_integer(word[0]))
{
display_error(1,word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
autosave_alt = atoi((DEFCHAR *)word[0]);
if (num_params == 2)
{
if (!valid_positive_integer(word[1]))
{
display_error(1,word[1],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
save_alt = atoi((DEFCHAR *)word[1]);
}
CURRENT_FILE->autosave_alt = autosave_alt;
CURRENT_FILE->save_alt = save_alt;
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set arbchar - set arbitrary character(s) for targets
SYNTAX
[SET] ARBchar ON|OFF [char1] [char2]
DESCRIPTION
Set the character to use as an 'arbitrary character' in string
targets. The first arbitrary character matches a group of zero
or more characters, the second will match exactly one character.
COMPATIBILITY
XEDIT: Compatible.
Single arbitrary character not supported.
KEDIT: Compatible.
DEFAULT
Off $ ?
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Arbchar(CHARTYPE *params)
#else
short Arbchar(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define ARB_PARAMS 4
CHARTYPE *word[ARB_PARAMS+1];
CHARTYPE strip[ARB_PARAMS];
unsigned short num_params=0;
short rc=RC_INVALID_OPERAND;
bool arbsts=CURRENT_VIEW->arbchar_status;
CHARTYPE arbchr_single=CURRENT_VIEW->arbchar_single;
CHARTYPE arbchr_multiple=CURRENT_VIEW->arbchar_multiple;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Arbchar");
#endif
/*---------------------------------------------------------------------*/
/* Validate the parameters that have been supplied. */
/*---------------------------------------------------------------------*/
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
strip[2]=STRIP_BOTH;
strip[3]=STRIP_BOTH;
num_params = param_split(params,word,ARB_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
switch(num_params)
{
/*---------------------------------------------------------------------*/
/* No parameters, error. */
/*---------------------------------------------------------------------*/
case 0:
display_error(3,(CHARTYPE *)"",FALSE);
break;
/*---------------------------------------------------------------------*/
/* 1 or 2 parameters, validate them... */
/*---------------------------------------------------------------------*/
case 1:
rc = execute_set_on_off(word[0],&arbsts);
break;
case 2:
case 3:
rc = execute_set_on_off(word[0],&arbsts);
if (rc != RC_OK)
break;
rc = RC_INVALID_OPERAND;
/*---------------------------------------------------------------------*/
/* For 2 parameters, check that a single character has been supplied...*/
/*---------------------------------------------------------------------*/
if (strlen((DEFCHAR *)word[1]) != 1)
{
display_error(1,word[1],FALSE);
break;
}
arbchr_multiple = word[1][0];
rc = RC_OK;
/*---------------------------------------------------------------------*/
/* For 2 parameters, don't check any more. */
/*---------------------------------------------------------------------*/
if (num_params == 2)
break;
rc = RC_INVALID_OPERAND;
/*---------------------------------------------------------------------*/
/* For 3 parameters, check that a single character has been supplied...*/
/*---------------------------------------------------------------------*/
if (strlen((DEFCHAR *)word[2]) != 1)
{
display_error(1,word[2],FALSE);
break;
}
arbchr_single = word[2][0];
rc = RC_OK;
break;
/*---------------------------------------------------------------------*/
/* Too many parameters... */
/*---------------------------------------------------------------------*/
default:
display_error(2,(CHARTYPE *)"",FALSE);
break;
}
/*---------------------------------------------------------------------*/
/* If valid parameters, change the settings... */
/*---------------------------------------------------------------------*/
if (rc == RC_OK)
{
CURRENT_VIEW->arbchar_single = arbchr_single;
CURRENT_VIEW->arbchar_multiple = arbchr_multiple;
CURRENT_VIEW->arbchar_status = arbsts;
}
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set autocolor - specifies which parser to use for syntax highlighting
SYNTAX
[SET] AUTOCOLOR mask parser [MAGIC]
DESCRIPTION
The SET AUTOCOLOR command allows the user to specify which syntax
highlighting <parser> is to be used for which file masks.
The 'parser' argument specifies a syntax highlighting <parser> that
already exists, either as a default <parser>, or added by the user
with <SET PARSER>. The special parser name of '*NULL' can be
specified; this will effectively remove the association between
the <parser> and the file mask.
The 'mask' argument specifies the file mask (or <magic number>) to
associate with the specified parser. The 'mask' can be any valid
file mask for the operating system. eg *.c fred.* joe.?
If the 'magic' option is specified, the 'mask' argument refers to
the last element of the <magic number> that is specified in the
first line of a Unix shell script comment. eg if the first line of
a shell script contains:
#!/usr/local/bin/rexx
then the file mask argument would be specified as "rexx".
COMPATIBILITY
XEDIT: N/A
KEDIT: Similar. KEDIT does not have MAGIC option.
DEFAULT
See <QUERY> AUTOCOLOR
SEE ALSO
<SET COLORING>, <SET ECOLOUR>, <SET PARSER>
STATUS
Complete.
**man-end**********************************************************************/
/*man-start*********************************************************************
COMMAND
set autocolour - specifies which parser to use for syntax highlighting
SYNTAX
[SET] AUTOCOLOR mask parser [MAGIC]
DESCRIPTION
The SET AUTOCOLOUR command is a synonym for the <SET AUTOCOLOR> command.
COMPATIBILITY
XEDIT: N/A
KEDIT: Similar. KEDIT does not have MAGIC option.
DEFAULT
See <QUERY> AUTOCOLOR
SEE ALSO
<SET AUTOCOLOR>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Autocolour(CHARTYPE *params)
#else
short Autocolour(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
#define AUCO_PARAMS 3
CHARTYPE *word[AUCO_PARAMS+1];
CHARTYPE strip[AUCO_PARAMS];
unsigned short num_params=0;
short rc=RC_OK;
PARSER_DETAILS *parser=NULL;
PARSER_MAPPING *mapping=NULL,*curr=NULL,*tmp_mapping;
CHARTYPE *filemask=NULL,*magic_number=NULL;
VIEW_DETAILS *curr_view=vd_first;
bool redisplay_current=FALSE,redisplay_other=FALSE;
int i,change=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Autocolour");
#endif
/*---------------------------------------------------------------------*/
/* Validate the parameters that have been supplied. */
/*---------------------------------------------------------------------*/
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
strip[2]=STRIP_BOTH;
num_params = param_split(params,word,AUCO_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params < 2)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
filemask = word[0];
if (num_params == 3)
{
if (equal((CHARTYPE *)"magic",word[2],5))
{
magic_number = word[0];
filemask = NULL;
}
else
{
display_error(1,word[2],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
}
/*
* Find a parser equal to the first parameter...
*/
if (!equal((CHARTYPE *)"*null",word[1],5))
{
parser = parserll_find(first_parser,word[1]);
if (parser == NULL)
{
display_error(199,word[1],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
}
/*
* Now check if we already have a mapping for the mask/magic number
*/
mapping = mappingll_find(first_parser_mapping,filemask,magic_number);
if (mapping)
curr = mapping;
/*
* Add the new mapping if it is a "real" parser.
*/
if (parser)
{
curr = last_parser_mapping = mappingll_add(first_parser_mapping,last_parser_mapping,sizeof(PARSER_MAPPING));
if (first_parser_mapping == NULL)
first_parser_mapping = curr;
if (filemask)
{
curr->filemask = (CHARTYPE *)(*the_malloc)(1+strlen((DEFCHAR *)filemask)*sizeof(CHARTYPE));
if (curr->filemask == NULL)
{
display_error(30,(CHARTYPE *)"",FALSE);
return(RC_OUT_OF_MEMORY);
}
strcpy((DEFCHAR *)curr->filemask,(DEFCHAR *)filemask);
}
if (magic_number)
{
curr->magic_number = (CHARTYPE *)(*the_malloc)(1+strlen((DEFCHAR *)magic_number)*sizeof(CHARTYPE));
if (curr->magic_number == NULL)
{
display_error(30,(CHARTYPE *)"",FALSE);
return(RC_OUT_OF_MEMORY);
}
strcpy((DEFCHAR *)curr->magic_number,(DEFCHAR *)magic_number);
curr->magic_number_length = strlen((DEFCHAR *)magic_number);
}
curr->parser = parser;
}
/*
* Check all files in the ring and apply the new mapping. If the current
* file or the file in the other screen now match the new mapping,
* redisplay them.
*/
for (i=0;i<number_of_files;)
{
if (curr
&& find_parser_mapping(curr_view->file_for_view,curr))
{
curr_view->file_for_view->parser = parser;
if (curr_view->file_for_view == SCREEN_FILE(current_screen))
redisplay_current = TRUE;
if (display_screens > 1
&& curr_view->file_for_view == SCREEN_FILE(other_screen))
redisplay_other = TRUE;
}
curr_view = curr_view->next;
if (curr_view == NULL)
break;
}
/*
* Now delete the old mapping if we found one earlier...
*/
if (mapping)
{
mappingll_del(&first_parser_mapping,&last_parser_mapping,mapping,DIRECTION_FORWARD);
change--;
}
if (parser)
{
change++;
}
if (rexx_support)
{
if (change > 0)
{
CHARTYPE tmp[20];
/*
* As this is a new mapping, then register another implied extract
* function for the number of mappings we now have.
*/
for(i=0,tmp_mapping=first_parser_mapping;tmp_mapping!=NULL;tmp_mapping=tmp_mapping->next,i++);
sprintf((DEFCHAR *)tmp,"autocolour.%d",i);
MyRexxRegisterFunctionExe(tmp);
sprintf((DEFCHAR *)tmp,"autocolor.%d",i);
MyRexxRegisterFunctionExe(tmp);
}
if (change < 0)
{
CHARTYPE tmp[20];
/*
* As this is a removal of a mapping, then deregister the implied extract
* function for the number of mappings we had before.
*/
for(i=0,tmp_mapping=first_parser_mapping;tmp_mapping!=NULL;tmp_mapping=tmp_mapping->next,i++);
sprintf((DEFCHAR *)tmp,"autocolour.%d",i-1);
MyRexxDeregisterFunction(tmp);
sprintf((DEFCHAR *)tmp,"autocolor.%d",i-1);
MyRexxDeregisterFunction(tmp);
}
}
if (redisplay_other)
display_screen(other_screen);
if (redisplay_current)
display_screen(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set autosave - set autosave period
SYNTAX
[SET] AUtosave n|OFF
DESCRIPTION
The SET AUTOSAVE command sets the interval between automatic saves
of the file, or turns it off altogether. The interval 'n' refers
to the number of alterations made to the file. Hence a value of
10 for 'n' would result in the file being automatically saved after
each 10 alterations have been made to the file.
It is not possible to set AUTOSAVE for 'psuedo' files such as the
directory listing 'file', Rexx output 'file' and the key definitions
'file'
COMPATIBILITY
XEDIT: Does not support [mode] option.
KEDIT: Compatible.
DEFAULT
OFF
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Autosave(CHARTYPE *params)
#else
short Autosave(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define AUS_PARAMS 1
CHARTYPE strip[AUS_PARAMS];
CHARTYPE *word[AUS_PARAMS+1];
unsigned short num_params=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Autosave");
#endif
strip[0]=STRIP_BOTH;
num_params = param_split(params,word,AUS_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params == 0)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params != 1)
{
display_error(2,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (equal((CHARTYPE *)"off",word[0],3))
{
CURRENT_FILE->autosave = 0;
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
if (!valid_positive_integer(word[0]))
{
display_error(4,(CHARTYPE *)word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
CURRENT_FILE->autosave = (CHARTYPE)atoi((DEFCHAR *)word[0]);
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set autoscroll - set rate of automatic horizontal scrolling
SYNTAX
[SET] AUTOSCroll n|OFF|Half
DESCRIPTION
The SET AUTOSCROLL allows the user to set the rate at which automatic
horizontal scrolling occurs.
When the cursor reaches the last (or first) column of the <filearea>
the <filearea> can automatically scroll if AUTOSCROLL is not 'OFF' and
a <CURSOR> RIGHT or <CURSOR> LEFT command is issued.
How many columns are scrolled is determined by the setting of AUTOSCROLL.
If AUTOSCROLL is set to 'HALF', then half the number of columns in the
<filearea> window are scrolled. Any other value will result in that
many columns scrolled, or the full width of the <filearea> window if
the set number of columns is larger.
Autoscrolling does not occur if the key pressed is assigned to
<CURSOR> SCREEN LEFT or RIGHT, which is the case if <SET COMPAT> XEDIT
key defintions are active.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
HALF
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Autoscroll(CHARTYPE *params)
#else
short Autoscroll(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define AUL_PARAMS 1
CHARTYPE strip[AUL_PARAMS];
CHARTYPE *word[AUL_PARAMS+1];
unsigned short num_params=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Autoscroll");
#endif
strip[0]=STRIP_BOTH;
num_params = param_split(params,word,AUL_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params == 0)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params != 1)
{
display_error(2,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (equal((CHARTYPE *)"off",word[0],3))
{
CURRENT_VIEW->autoscroll = 0;
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
if (equal((CHARTYPE *)"half",word[0],1))
{
CURRENT_VIEW->autoscroll = (-1);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
if (!valid_positive_integer(word[0]))
{
display_error(4,(CHARTYPE *)word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
CURRENT_VIEW->autoscroll = (CHARTYPE)atol((DEFCHAR *)word[0]);
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set backup - indicate if a backup copy of the file is to be kept
SYNTAX
[SET] BACKup OFF|TEMP|KEEP|ON|INPLACE
DESCRIPTION
The SET BACKUP command allows the user to determine if a backup copy
of the original file is to be kept when the file being edited is
saved or filed.
'KEEP' and 'ON' options are the same. 'ON' is
kept for compatability with previous versions of THE.
With 'OFF', the file being written to disk will replace an
existing file. There is a chance that you will end up with neither
the old version of the file or the new one if problems occur
while the file is being written.
With 'TEMP' or 'KEEP' options, the file being written is first
renamed to the filename with a .bak extension. The file in memory
is then written to disk. If 'TEMP' is in effect, the backup
file is then deleted.
With 'INPLACE', the file being written is first copied to a file
with a .bak extension. The file in memory is then written to disk
in place of the original. This option ensures that all operating
system file attributes are retained.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
KEEP
SEE ALSO
<FILE>, <FFILE>, <SAVE>, <SSAVE>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Backup(CHARTYPE *params)
#else
short Backup(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
short backup_type=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Backup");
#endif
if (equal((CHARTYPE *)"off",params,3))
backup_type = BACKUP_OFF;
if (equal((CHARTYPE *)"on",params,2))
backup_type = BACKUP_ON;
if (equal((CHARTYPE *)"keep",params,4))
backup_type = BACKUP_KEEP;
if (equal((CHARTYPE *)"temp",params,4))
backup_type = BACKUP_TEMP;
if (equal((CHARTYPE *)"inplace",params,2))
backup_type = BACKUP_INPLACE;
if (backup_type == 0)
{
display_error(1,params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
CURRENT_FILE->backup = backup_type;
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set beep - turn on or off the audible alarm when displaying errors
SYNTAX
[SET] BEEP ON|OFF
DESCRIPTION
The SET BEEP command allows the user to determine if an audible
alarm is sounded when an error is displayed.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
OFF
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short BeepSound(CHARTYPE *params)
#else
short BeepSound(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:BeepSound");
#endif
rc = execute_set_on_off(params,&BEEPx);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set case - set case sensitivity parameters
SYNTAX
[SET] CASE Mixed|Lower|Upper [Respect|Ignore] [Respect|Ignore] [Respect|Ignore]
DESCRIPTION
The CASE command sets the editor's handling of the case of text.
The first option (which is mandatory) controls how text is entered
by the user. When 'LOWER' or 'UPPER' are in effect, the shift or caps
lock keys have no effect on the text being entered. When 'MIXED' is
in effect, text is entered in the case set by the use of the shift
and caps lock keys.
The second option determines how the editor determines if a string
target matches text in the file when the target is used in a <LOCATE>
command. With 'IGNORE' in effect, a match is
found irrespective of the case of the target or the found text.
The following strings are treated as equivalent: the THE The ThE...
With 'RESPECT' in effect, the target and text must be the same case.
Therefore a target of 'The' only matches text containing 'The', not
'THE' or 'ThE' etc.
The third option determines how the editor determines if a string
target matches text in the file when the target is used in a <CHANGE>
command. With 'IGNORE' in effect, a match is
found irrespective of the case of the target or the found text.
The following strings are treated as equivalent: the THE The ThE...
With 'RESPECT' in effect, the target and text must be the same case.
Therefore a target of 'The' only matches text containing 'The', not
'THE' or 'ThE' etc.
The fourth option determines how the editor determines the sort
order of upper and lower case with the <SORT> command.
With 'IGNORE' in effect, upper and lower case letters are treated as
equivalent.
With 'RESPECT' in effect, upper and lower case letters are treated as
different values and uppercase characters will sort before lowercase
characters.
COMPATIBILITY
XEDIT: Adds support for case significance in CHANGE commands.
KEDIT: Adds support for LOWER option.
Both: Adds support for case significance in SORT command.
DEFAULT
Mixed Ignore Respect Respect
STATUS
Complete
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Case(CHARTYPE *params)
#else
short Case(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define CAS_PARAMS 4
CHARTYPE parm[CAS_PARAMS];
CHARTYPE *word[CAS_PARAMS+1];
CHARTYPE strip[CAS_PARAMS];
register short i=0;
short num_params=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Case");
#endif
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
strip[2]=STRIP_BOTH;
strip[3]=STRIP_BOTH;
num_params = param_split(params,word,CAS_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
/*---------------------------------------------------------------------*/
/* Validate the first parameter: must be Mixed, Upper or Lower */
/*---------------------------------------------------------------------*/
parm[0] = (CHARTYPE)UNDEFINED_OPERAND;
if (equal((CHARTYPE *)"mixed",word[0],1))
parm[0] = CASE_MIXED;
if (equal((CHARTYPE *)"upper",word[0],1))
parm[0] = CASE_UPPER;
if (equal((CHARTYPE *)"lower",word[0],1))
parm[0] = CASE_LOWER;
if (parm[0] == (CHARTYPE)UNDEFINED_OPERAND)
{
display_error(1,(CHARTYPE *)word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* Save the current values of each remaining case setting. */
/*---------------------------------------------------------------------*/
parm[1] = CURRENT_VIEW->case_locate;
parm[2] = CURRENT_VIEW->case_change;
parm[3] = CURRENT_VIEW->case_sort;
/*---------------------------------------------------------------------*/
/* Validate the remainder of the arguments. */
/* Each must be Respect or Ignore, if present. */
/*---------------------------------------------------------------------*/
for (i=1;i<num_params;i++)
{
if (strcmp((DEFCHAR *)word[1],"") != 0)
{
if (equal((CHARTYPE *)"respect",word[i],1))
parm[i] = CASE_RESPECT;
else
if (equal((CHARTYPE *)"ignore",word[i],1))
parm[i] = CASE_IGNORE;
else
{
display_error(1,(CHARTYPE *)word[i],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
}
}
/*---------------------------------------------------------------------*/
/* Set the new values of case settings for the view. */
/*---------------------------------------------------------------------*/
CURRENT_VIEW->case_enter = parm[0];
CURRENT_VIEW->case_locate = parm[1];
CURRENT_VIEW->case_change = parm[2];
CURRENT_VIEW->case_sort = parm[3];
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set clearerrorkey - specify which key clears the message line
SYNTAX
[SET] CLEARErrorkey *|keyname
DESCRIPTION
The SET CLEARERRORKEY command allows the user to specify which
key clears the message line. By default, any key pressed will
cause the message line to be cleared. The keyname specified
is the name returned via the <SHOWKEY> command.
As the <QUERY> command also uses the same mechanism for displaying
its results as errors, then this command affects when results from
the <QUERY> command are cleared.
COMPATIBILITY
XEDIT: N/A
KEDIT: N/A
DEFAULT
*
STATUS
Complete
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Clearerrorkey(CHARTYPE *params)
#else
short Clearerrorkey(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
int key = 0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Clearerrorkey");
#endif
if (strcmp((DEFCHAR*)params,"*") == 0)
{
CLEARERRORKEYx = -1;
}
else
{
key = find_key_value(params);
if (key == -1)
{
display_error(13,params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
CLEARERRORKEYx = key;
}
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set clearscreen - indicate if the screen is to be cleared on exit
SYNTAX
[SET] CLEARScreen ON|OFF
DESCRIPTION
The SET CLEARSCREEN command allows the user to request that the
screen be cleared on exit from THE.
COMPATIBILITY
XEDIT: N/A
KEDIT: N/A
DEFAULT
OFF
STATUS
Complete
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Clearscreen(CHARTYPE *params)
#else
short Clearscreen(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Clearscreen");
#endif
rc = execute_set_on_off(params,&CLEARSCREENx);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set clock - turn on or off display of time on status line
SYNTAX
[SET] CLOCK ON|OFF
DESCRIPTION
The SET CLOCK command turns on or off the display of the time on the
<status line>.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
ON
STATUS
Complete
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Clock(CHARTYPE *params)
#else
short Clock(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Clock");
#endif
rc = execute_set_on_off(params,&CLOCKx);
if (rc == RC_OK
&& curses_started)
clear_statarea();
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set cmdarrows - sets the behaviour of the up and down arrow keys
SYNTAX
[SET] CMDArrows Retrieve|Tab
DESCRIPTION
The SET CMDARROWS command determines the action that occurs when the
up and down arrows keys are hit while on the <command line>.
'RETRIEVE' will set the up and down arrows to retrieve the last or
next command entered on the <command line>.
'TAB' will set the up and down arrows to move to the last
or first line respectively of the main window.
COMPATIBILITY
XEDIT: N/A
KEDIT: N/A
DEFAULT
RETRIEVE
SEE ALSO
<CURSOR>, <?>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Cmdarrows(CHARTYPE *params)
#else
short Cmdarrows(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Cmdarrows");
#endif
/*---------------------------------------------------------------------*/
/* Determine values for first parameter; command line behaviour */
/*---------------------------------------------------------------------*/
if (equal((CHARTYPE *)"tab",params,1))
CMDARROWSTABCMDx = TRUE;
else
if (equal((CHARTYPE *)"retrieve",params,1))
CMDARROWSTABCMDx = FALSE;
else
{
display_error(1,params,FALSE);
rc = RC_INVALID_OPERAND;
}
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set cmdline - sets the position of the command line.
SYNTAX
[SET] CMDline ON|OFF|Top|Bottom
DESCRIPTION
The SET CMDLINE command sets the position of the <command line>,
either at the top of the screen, the bottom of the screen or off.
COMPATIBILITY
XEDIT: Compatible.
CMDLINE ON is equivalent to CMDLINE Bottom
KEDIT: Compatible.
DEFAULT
BOTTOM
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Cmdline(CHARTYPE *params)
#else
short Cmdline(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
CHARTYPE cmd_place='?';
short off=0;
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Cmdline");
#endif
if (equal((CHARTYPE *)"top",params,1))
{
cmd_place='T';
off = 1;
}
if (equal((CHARTYPE *)"bottom",params,1)
|| equal((CHARTYPE *)"on",params,2))
{
cmd_place='B';
off = (-1);
}
if (equal((CHARTYPE *)"off",params,3))
{
cmd_place='O';
off = 0;
}
if (cmd_place=='?')
{
display_error(1,(CHARTYPE *)params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* If the setting supplied is the same as the current setting, just */
/* return without doing anything. */
/*---------------------------------------------------------------------*/
if (cmd_place == CURRENT_VIEW->cmd_line)
{
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*---------------------------------------------------------------------*/
/* Now we need to move the windows around. */
/*---------------------------------------------------------------------*/
CURRENT_VIEW->cmd_line = cmd_place;
/*---------------------------------------------------------------------*/
/* Rebuild the windows and display... */
/*---------------------------------------------------------------------*/
set_screen_defaults();
if (curses_started)
{
if (set_up_windows(current_screen) != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
}
if (CURRENT_VIEW->cmd_line == 'O')
CURRENT_VIEW->current_window = WINDOW_FILEAREA;
build_screen(current_screen);
if (curses_started)
display_screen(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set color - set colours for display
SYNTAX
[SET] COLOR area [modifier[...]] [foreground] [on] [background]
DESCRIPTION
The SET COLOR command changes the colours or display attributes of
various display areas in THE.
Valid values for 'area':
ALERT - alert boxes; see <ALERT>
Arrow - command line prompt
Block - marked <block>
CBlock - <current line> if in marked <block>
CHIghlight - highlighted line if the same as <current line>
Cmdline - <command line>
CTofeof - as for TOfeof if the same as <current line>
CUrline - the <current line>
DIALOG - dialog boxes; see <DIALOG>
Divider - dividing line between vertical split screens
Filearea - area containing file lines
GAP - the gap between the <prefix area> and <filearea>
HIghlight - highlighted line
Idline - line containing file specific info
Msgline - error messages
Nondisp - Non-display characters (<SET ETMODE> OFF)
Pending - pending commands in <prefix area>
PRefix - <prefix area>
Reserved - default for <reserved line>
Scale - line showing <scale line>
SHadow - hidden line marker lines
SLK - soft label keys
STatarea - line showing status of editing session
Tabline - line showing tab positions
TOfeof - <Top-of-File line> and <Bottom-of-File line>
Valid values for 'foreground' and 'background':
BLAck
BLUe
Brown
Green
GRAy
GREy
Cyan
RED
Magenta
Pink
Turquoise
Yellow
White
Valid values for 'modifier':
NORmal
BLInk
BOld
BRIght
High
REVerse
Underline
DARK
It is an error to attempt to set a colour on a mono display.
COMPATIBILITY
XEDIT: Functionally compatible. See below.
KEDIT: Functionally compatible. See below.
Does not implement all modifiers.
DEFAULT
Depends on compatibility mode setting and monitor type.
SEE ALSO
<SET COMPAT>, <SET COLOUR>, <SET ECOLOUR>
STATUS
Complete.
**man-end**********************************************************************/
/*man-start*********************************************************************
COMMAND
set colour - set colours for display
SYNTAX
[SET] COLOUR area [modifier[...]] [foreground] [on background]
DESCRIPTION
The SET COLOUR command is a synonym for the <SET COLOR> command.
COMPATIBILITY
XEDIT: Functionally compatible. See below.
KEDIT: Functionally compatible. See below.
Does not implement all modifiers.
DEFAULT
Depends on compatibility mode setting and monitor type.
SEE ALSO
<SET COLOR>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Colour(CHARTYPE *params)
#else
short Colour(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define COL_PARAMS 2
CHARTYPE *word[COL_PARAMS+1];
CHARTYPE strip[COL_PARAMS];
CHARTYPE parm[COL_PARAMS];
register short i=0;
unsigned short num_params=0;
short area=0;
COLOUR_ATTR attr;
CHARTYPE *dummy=NULL;
bool any_colours=FALSE;
chtype ch=0L,nondisp_attr=0L;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Colour");
#endif
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
num_params = param_split(params,word,COL_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params < 2 )
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* Check that the supplied area matches one of the values in the area */
/* array and that the length is at least as long as the minimum. */
/*---------------------------------------------------------------------*/
parm[0] = FALSE;
for (i=0;i<ATTR_MAX;i++)
{
if (equal(valid_areas[i].area,word[0],valid_areas[i].area_min_len))
{
parm[0] = TRUE;
area = i;
break;
}
}
if (parm[0] == FALSE)
{
display_error(1,(CHARTYPE *)word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
memcpy(&attr,CURRENT_FILE->attr+area,sizeof(COLOUR_ATTR));
/*---------------------------------------------------------------------*/
/* Determine colours and modifiers. */
/*---------------------------------------------------------------------*/
if (parse_colours(word[1],&attr,&dummy,FALSE,&any_colours) != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* Special handling required for NONDISP... */
/*---------------------------------------------------------------------*/
if (equal((CHARTYPE*)"nondisp",word[0],1))
{
nondisp_attr = set_colour(&attr);
for (i=0;i<256;i++)
{
if (etmode_flag[i])
{
ch = etmode_table[i] & A_CHARTEXT;
etmode_table[i] = ch | nondisp_attr;
}
}
}
/*---------------------------------------------------------------------*/
/* Now we have the new colours, save them with the current file... */
/*---------------------------------------------------------------------*/
memcpy(CURRENT_FILE->attr+area,&attr,sizeof(COLOUR_ATTR));
/*---------------------------------------------------------------------*/
/* If we haven't started curses (in profile first time) exit now... */
/*---------------------------------------------------------------------*/
if (!curses_started)
{
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*---------------------------------------------------------------------*/
/* Update the appropriate window with the new colour combination... */
/*---------------------------------------------------------------------*/
switch (valid_areas[area].area_window)
{
case WINDOW_FILEAREA:
if (area == ATTR_FILEAREA)
wattrset(CURRENT_WINDOW_FILEAREA,set_colour(CURRENT_FILE->attr+area));
build_screen(current_screen);
display_screen(current_screen);
break;
case WINDOW_PREFIX:
if (CURRENT_WINDOW_PREFIX != NULL)
{
wattrset(CURRENT_WINDOW_PREFIX,set_colour(CURRENT_FILE->attr+area));
build_screen(current_screen);
display_screen(current_screen);
}
break;
case WINDOW_COMMAND:
if (CURRENT_WINDOW_COMMAND != NULL)
{
wattrset(CURRENT_WINDOW_COMMAND,set_colour(CURRENT_FILE->attr+area));
redraw_window(CURRENT_WINDOW_COMMAND);
touchwin(CURRENT_WINDOW_COMMAND);
wnoutrefresh(CURRENT_WINDOW_COMMAND);
}
break;
case WINDOW_ARROW:
if (CURRENT_WINDOW_ARROW != NULL)
{
wattrset(CURRENT_WINDOW_ARROW,set_colour(CURRENT_FILE->attr+area));
redraw_window(CURRENT_WINDOW_ARROW);
touchwin(CURRENT_WINDOW_ARROW);
wnoutrefresh(CURRENT_WINDOW_ARROW);
}
break;
case WINDOW_IDLINE:
if (CURRENT_WINDOW_IDLINE != NULL)
{
wattrset(CURRENT_WINDOW_IDLINE,set_colour(CURRENT_FILE->attr+area));
redraw_window(CURRENT_WINDOW_IDLINE);
touchwin(CURRENT_WINDOW_IDLINE);
wnoutrefresh(CURRENT_WINDOW_IDLINE);
}
break;
case WINDOW_STATAREA:
if (statarea != NULL)
{
wattrset(statarea,set_colour(CURRENT_FILE->attr+area));
redraw_window(statarea);
touchwin(statarea);
wnoutrefresh(statarea);
}
break;
case WINDOW_DIVIDER:
if (divider != (WINDOW *)NULL)
{
wattrset(divider,set_colour(CURRENT_FILE->attr+area));
if (display_screens > 1
&& !horizontal)
{
draw_divider();
touchwin(divider);
wnoutrefresh(divider);
}
}
break;
case WINDOW_SLK:
#if defined(HAVE_SLK_INIT)
if (SLKx)
{
#if defined(HAVE_SLK_ATTRSET)
slk_attrset(set_colour(CURRENT_FILE->attr+area));
#else
display_error(61,(CHARTYPE *)"slk_attrset not in curses library",FALSE);
#endif
slk_touch();
slk_noutrefresh();
}
#endif
break;
default:
break;
}
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set coloring - enable or disable syntax highlighting
SYNTAX
[SET] COLORING ON|OFF [AUTO|parser]
DESCRIPTION
The SET COLORING command allows the user to turn on or off syntax
highlighting for current file. It also allows the <parser> used to be
specified explicitly, or automatically determined by the file
extension or <magic number>.
ON turns on syntax highlighting for the current file, OFF turns it
off.
AUTO determines the <parser> to use for the current file based on the
file extension. The <parser> to use is controlled by the <SET AUTOCOLOR>
command.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
ON AUTO
SEE ALSO
<SET COLOURING>, <SET ECOLOUR>, <SET AUTOCOLOR>, <SET PARSER>
STATUS
Complete.
**man-end**********************************************************************/
/*man-start*********************************************************************
COMMAND
set colouring - enable or disable syntax highlighting
SYNTAX
[SET] COLOURING ON|OFF [AUTO|parser]
DESCRIPTION
The SET COLOURING command is a synonym for the <SET COLORING> command.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
ON AUTO
SEE ALSO
<SET COLORING>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Colouring(CHARTYPE *params)
#else
short Colouring(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define COLG_PARAMS 2
CHARTYPE *word[COLG_PARAMS+1];
CHARTYPE strip[COLG_PARAMS];
short num_params=0;
short rc=RC_OK;
bool new_colouring=FALSE;
PARSER_DETAILS *new_parser=NULL;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Colouring");
#endif
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
num_params = param_split(params,word,COLG_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params < 1)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* Parse the status parameter... */
/*---------------------------------------------------------------------*/
rc = execute_set_on_off(word[0],&new_colouring);
if (rc != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
if (num_params == 1
&& new_colouring == TRUE)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (new_colouring)
{
/*
* This is only applicable when turning colouring ON
*/
if (equal((CHARTYPE *)"AUTO",word[1],4))
{
/*
* Set the parser to the parser for the file extension or
* to NULL if no parser is set up for this extension.
*/
new_parser = find_auto_parser(CURRENT_FILE);
CURRENT_FILE->autocolour = TRUE;
}
else
{
/*
* Look for a parser with the specified name
*/
new_parser = parserll_find(first_parser,word[1]);
if (new_parser == NULL) /* no parser by that name... */
{
display_error(199,word[1],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return RC_INVALID_OPERAND;
}
CURRENT_FILE->autocolour = FALSE;
}
}
CURRENT_FILE->parser = new_parser;
CURRENT_FILE->colouring = new_colouring;
/*
* If all is OK, redisplay the screen to get the new colouring
*/
if (display_screens > 1
&& SCREEN_FILE(current_screen) == SCREEN_FILE(other_screen))
{
display_screen(other_screen);
}
display_screen(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set compat - set compatibility mode
SYNTAX
[SET] COMPat The|Xedit|Kedit|KEDITW|= [The|Xedit|Kedit|KEDITW|=] [The|Xedit|Kedit|KEDITW|=]
DESCRIPTION
The SET COMPAT command changes some settings of THE to make it
more compatible with the look and/or feel of XEDIT, KEDIT
or KEDIT for Windows.
This command is most useful as the first <SET> command in a
profile file. It will change the default settings of THE to
initially look like the chosen editor. You can then make any
additional changes in THE by issuing other <SET> commands.
It is recommended that this command NOT be executed from the
command line, particularly if you have 2 files being displayed
at the same time. Although the command works, things may look
and behave strangely :-)
The first parameter affects the look of THE, the second parameter
affects the feel of THE, and the third parameter determines
which default function key settings you require.
Any of the parameters can be specified as =, which will not
change that aspect of THE's compatability.
COMPATIBILITY
XEDIT: N/A
KEDIT: N/A
DEFAULT
THE THE THE
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Compat(CHARTYPE *params)
#else
short Compat(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define COM_PARAMS 4
CHARTYPE *word[COM_PARAMS+1];
CHARTYPE strip[COM_PARAMS];
short num_params=0;
int rc=RC_OK;
int prey=0,prex=0;
short save_look=compatible_look;
short save_feel=compatible_feel;
short save_keys=compatible_keys;
short new_look=0;
short new_feel=0;
short new_keys=0;
unsigned short save_autosave_alt=0;
unsigned short save_save_alt=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Compat");
#endif
/*
* Parse the parameters...
*/
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
strip[2]=STRIP_BOTH;
strip[3]=STRIP_NONE;
num_params = param_split(params,word,COM_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params < 1)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params > 3)
{
display_error(2,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (equal((CHARTYPE *)"the",word[0],1))
new_look = COMPAT_THE;
else if (equal((CHARTYPE *)"xedit",word[0],1))
new_look = COMPAT_XEDIT;
else if (equal((CHARTYPE *)"kedit",word[0],1))
new_look = COMPAT_KEDIT;
else if (equal((CHARTYPE *)"keditw",word[0],6))
new_look = COMPAT_KEDITW;
else if (equal((CHARTYPE *)"=",word[0],1))
new_look = save_look;
else
{
display_error(1,word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params == 1)
{
new_feel = save_feel;
new_keys = save_keys;
}
else
{
if (equal((CHARTYPE *)"the",word[1],1))
new_feel = COMPAT_THE;
else if (equal((CHARTYPE *)"xedit",word[1],1))
new_feel = COMPAT_XEDIT;
else if (equal((CHARTYPE *)"kedit",word[1],1))
new_feel = COMPAT_KEDIT;
else if (equal((CHARTYPE *)"keditw",word[1],6))
new_feel = COMPAT_KEDITW;
else if (equal((CHARTYPE *)"=",word[1],1))
new_feel = save_feel;
else
{
display_error(1,word[1],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params == 2)
new_keys = save_keys;
else
{
if (equal((CHARTYPE *)"the",word[2],1))
new_keys = COMPAT_THE;
else if (equal((CHARTYPE *)"xedit",word[2],1))
new_keys = COMPAT_XEDIT;
else if (equal((CHARTYPE *)"kedit",word[2],1))
new_keys = COMPAT_KEDIT;
else if (equal((CHARTYPE *)"keditw",word[2],6))
new_keys = COMPAT_KEDITW;
else if (equal((CHARTYPE *)"=",word[2],1))
new_keys = save_keys;
else
{
display_error(1,word[2],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
}
}
compatible_look = new_look;
compatible_feel = new_feel;
compatible_keys = new_keys;
/*
* If the FEEL has changed, change the default feel...
*/
set_global_feel_defaults();
/*
* If the KEYS has changed, change the default key definitions...
*/
if (save_keys != compatible_keys)
{
switch(compatible_keys)
{
case COMPAT_THE:
rc = set_THE_key_defaults(prey,prex);
break;
case COMPAT_XEDIT:
rc = set_XEDIT_key_defaults(prey,prex);
break;
case COMPAT_KEDIT:
case COMPAT_KEDITW:
rc = set_KEDIT_key_defaults(prey,prex);
break;
}
if (rc != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
}
/*
* Now we have to change the LOOK of the current view...
*/
if (curses_started)
{
if (CURRENT_WINDOW_PREFIX != NULL)
getyx(CURRENT_WINDOW_PREFIX,prey,prex);
}
post_process_line(CURRENT_VIEW,CURRENT_VIEW->focus_line,(LINE *)NULL,TRUE);
/*
* Reset common settings to defaults for THE...
*/
set_global_look_defaults();
#ifdef FOR_ALL_VIEWS
/*
* Change the settings for all views.
*/
viewp = vd_first;
while(viewp != NULL)
{
set_file_defaults(viewp->file_for_view);
set_view_defaults(viewp);
viewp = viewp->next;
}
#else
save_autosave_alt = CURRENT_FILE->autosave_alt;
save_save_alt = CURRENT_FILE->save_alt;
set_file_defaults(CURRENT_FILE);
CURRENT_FILE->autosave_alt = save_autosave_alt;
CURRENT_FILE->save_alt = save_save_alt;
set_view_defaults(CURRENT_VIEW);
#endif
/*
* Determine the size of each window in each screen in case any changes
* in defaults caused some settings to include/exclude some windows...
*/
set_screen_defaults();
/*
* For the common windows, set their attributes to match the new values
*/
if (curses_started
&& statarea != NULL)
{
wattrset(statarea,set_colour(CURRENT_FILE->attr+ATTR_STATAREA));
clear_statarea();
}
/*
* If more than one screen displayed, redisplay the 'other' screen...
*/
if (display_screens > 1)
{
OTHER_SCREEN.screen_view->current_row = calculate_actual_row(OTHER_SCREEN.screen_view->current_base,
OTHER_SCREEN.screen_view->current_off,
OTHER_SCREEN.rows[WINDOW_FILEAREA],TRUE);
pre_process_line(OTHER_SCREEN.screen_view,OTHER_SCREEN.screen_view->focus_line,(LINE *)NULL);
if (OTHER_SCREEN.screen_view->cmd_line == 'O')
OTHER_SCREEN.screen_view->current_window = WINDOW_FILEAREA;
if (curses_started)
{
if (set_up_windows(current_screen) != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
if (!horizontal)
{
wattrset(divider,set_colour(OTHER_SCREEN.screen_view->file_for_view->attr+ATTR_DIVIDER));
touchwin(divider);
wnoutrefresh(divider);
}
}
redraw_screen((current_screen == 0)?1:0);
build_screen(other_screen);
display_screen(other_screen);
}
/*
* Redisplay the current screen...
*/
CURRENT_VIEW->current_row = calculate_actual_row(CURRENT_VIEW->current_base,
CURRENT_VIEW->current_off,
CURRENT_SCREEN.rows[WINDOW_FILEAREA],TRUE);
pre_process_line(CURRENT_VIEW,CURRENT_VIEW->focus_line,(LINE *)NULL);
if (CURRENT_VIEW->cmd_line == 'O')
CURRENT_VIEW->current_window = WINDOW_FILEAREA;
if (curses_started)
{
if (set_up_windows(current_screen) != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
}
redraw_screen(current_screen);
build_screen(current_screen);
display_screen(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set ctlchar - define control character attributes
SYNTAX
[SET] CTLchar OFF
[SET] CTLchar char Escape | OFF
[SET] CTLchar char Protect|Noprotect [modifier[...]] [fore [ON back]]
DESCRIPTION
The SET CTLCHAR command defines control characters to be used when
displaying a <reserved line>. Control characters determine how parts
of a <reserved line> are displayed.
See <SET COLOUR> for valid values for 'modifier', 'fore' and 'back'.
The 'Protect' and 'Noprotect' arguments are ignored.
COMPATIBILITY
XEDIT: Similar, but does not support all parameters.
KEDIT: N/A.
DEFAULT
OFF
SEE ALSO
<SET COLOUR>, <SET RESERVED>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Ctlchar(CHARTYPE *params)
#else
short Ctlchar(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define CTL_PARAMS 3
CHARTYPE *word[CTL_PARAMS+1];
CHARTYPE strip[CTL_PARAMS];
short num_params=0;
COLOUR_ATTR attr;
CHARTYPE *dummy=NULL;
bool any_colours=FALSE,protect,found;
int i;
bool have_ctlchar=TRUE;
RESERVED *curr;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Ctlchar");
#endif
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
strip[2]=STRIP_BOTH;
num_params = param_split(params,word,CTL_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params < 1)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params > 3)
{
display_error(2,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params == 1)
{
if (equal((CHARTYPE *)"off",word[0],1))
{
if (num_params != 1)
{
display_error(2,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
have_ctlchar = FALSE;
}
else
{
display_error(1,word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
}
else
{
if (strlen((DEFCHAR *)word[0]) > 1)
{
display_error(37,word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params == 2)
{
if (equal((CHARTYPE *)"escape",word[1],1))
{
/*
* Sets the value in word[0] to be the escape character
*/
ctlchar_escape = word[0][0];
}
else if (equal((CHARTYPE *)"off",word[1],3))
{
/*
* Turns off the escape character in word[0]
* Find the entry in
*/
for (i=0;i<MAX_CTLCHARS;i++)
{
if (ctlchar_char[i] == word[0][0])
{
ctlchar_char[i] = 0;
break;
}
}
}
else
{
display_error(1,word[1],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
}
else
{
/*
* Now should be parsing colours to set the ctlchar colour for
* the character in word[0][0]
*/
if (equal((CHARTYPE *)"protect",word[1],1))
protect = TRUE;
else if (equal((CHARTYPE *)"noprotect",word[1],1))
protect = FALSE;
else
{
display_error(1,word[1],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
memset(&attr,0,sizeof(COLOUR_ATTR));
if (parse_colours(word[2],&attr,&dummy,FALSE,&any_colours) != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*
* Find any existing CTLCHAR spec for the supplied character
* and turn it off...
*/
for (i=0;i<MAX_CTLCHARS;i++)
{
if (ctlchar_char[i] == word[0][0])
{
ctlchar_char[i] = 0;
break;
}
}
/*
* Find the first spare CTLCHAR spec for the supplied character
* and add it.
*/
found = FALSE;
for (i=0;i<MAX_CTLCHARS;i++)
{
if (ctlchar_char[i] == 0)
{
ctlchar_char[i] = word[0][0];
ctlchar_attr[i] = attr;
found = TRUE;
break;
}
}
if (!found)
{
display_error(80,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
}
}
CTLCHARx = have_ctlchar;
/*
* For each current reserved line, reparse it to ensure the changes made
* here are reflected correctly.
*/
curr = CURRENT_FILE->first_reserved;
while(curr)
{
parse_reserved_line(curr);
curr = curr->next;
}
if (display_screens > 1
&& SCREEN_FILE(current_screen) == SCREEN_FILE(other_screen))
{
build_screen(other_screen);
display_screen(other_screen);
}
build_screen(current_screen);
display_screen(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set curline - set position of current line on screen
SYNTAX
[SET] CURLine M[+n|-n] | [+|-]n
DESCRIPTION
The SET CURLINE command sets the position of the <current line> to
the physical screen line specified by supplied arguments.
The first form of parameters is:
M[+n|-n]
this sets the <current line> to be relative to the middle of
the screen. A positive value adds to the middle line number,
a negative subtracts from it.
eg. M+3 on a 24 line screen will be line 15
M-5 on a 24 line screen will be line 7
The second form of parameters is:
[+|-]n
this sets the <current line> to be relative to the top of the
screen (if positive or no sign) or relative to the bottom
of the screen if negative.
eg. +3 or 3 will set current line to line 3
-3 on a 24 line screen will be line 21
If the resulting line is outside the bounds of the screen
the position of the current line will become the middle line
on the screen.
It is an error to try to position the CURLINE on the same
line as a line already allocated by one of <SET HEXSHOW>,
<SET RESERVED>, <SET SCALE> or <SET TABLINE>.
COMPATIBILITY
XEDIT: Compatible.
KEDIT: Compatible.
DEFAULT
M
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Curline(CHARTYPE *params)
#else
short Curline(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define CUR_PARAMS 1
CHARTYPE *word[CUR_PARAMS+1];
CHARTYPE strip[CUR_PARAMS];
short num_params=0;
short rc=0;
short base = (short)CURRENT_VIEW->current_base;
short off = CURRENT_VIEW->current_off;
short hexshow_row=0,curline_row=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Curline");
#endif
strip[0]=STRIP_BOTH;
num_params = param_split(params,word,CUR_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params < 1)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params > 1)
{
display_error(2,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* Parse the parameter... */
/*---------------------------------------------------------------------*/
rc = execute_set_row_position(params,&base,&off);
if (rc != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*---------------------------------------------------------------------*/
/* If the CURLINE is the same line as HEXSHOW, SCALE, TABLE or has a */
/* RESERVED line on it, return ERROR. */
/*---------------------------------------------------------------------*/
curline_row = calculate_actual_row(base,off,CURRENT_SCREEN.rows[WINDOW_FILEAREA],TRUE);
if (calculate_actual_row(CURRENT_VIEW->scale_base,
CURRENT_VIEW->scale_off,
CURRENT_SCREEN.rows[WINDOW_FILEAREA],TRUE) == curline_row
&& CURRENT_VIEW->scale_on)
{
display_error(64,(CHARTYPE *)"- same as SCALE",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
if (calculate_actual_row(CURRENT_VIEW->tab_base,
CURRENT_VIEW->tab_off,
CURRENT_SCREEN.rows[WINDOW_FILEAREA],TRUE) == curline_row
&& CURRENT_VIEW->tab_on)
{
display_error(64,(CHARTYPE *)"- same as TABLINE",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
hexshow_row = calculate_actual_row(CURRENT_VIEW->hexshow_base,
CURRENT_VIEW->hexshow_off,
CURRENT_SCREEN.rows[WINDOW_FILEAREA],TRUE);
if ((hexshow_row == curline_row
|| hexshow_row + 1 == curline_row)
&& CURRENT_VIEW->hexshow_on)
{
display_error(64,(CHARTYPE *)"- same as HEXSHOW",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
if (find_reserved_line(current_screen,TRUE,curline_row,0,0) != NULL)
{
display_error(64,(CHARTYPE *)"- same as RESERVED line",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*---------------------------------------------------------------------*/
/* If the "real" row for CURLINE is not the same as the generated one, */
/* set the base and offset to reflect the generated row. */
/*---------------------------------------------------------------------*/
if (calculate_actual_row(base,off,CURRENT_SCREEN.rows[WINDOW_FILEAREA],FALSE) != curline_row)
{
CURRENT_VIEW->current_base = (CHARTYPE)POSITION_MIDDLE;
CURRENT_VIEW->current_off = 0;
}
else
{
CURRENT_VIEW->current_base = (CHARTYPE)base;
CURRENT_VIEW->current_off = off;
}
post_process_line(CURRENT_VIEW,CURRENT_VIEW->focus_line,(LINE *)NULL,TRUE);
CURRENT_VIEW->current_row = curline_row;
build_screen(current_screen);
display_screen(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set cursorstay - set on or off the behaviour of the cursor on a scroll
SYNTAX
[SET] CURSORSTay ON|OFF
DESCRIPTION
The SETCURSORSTAY command allows the user to set the behaviour of
the cursor when the file is scrolled with a <FORWARD> or <BACKWARD>
command.
Before this command was introduced, the position of the cursor
after the file was scrolled depended on <SET COMPAT>; for
THE, the cursor moved to the current line, for XEDIT and KEDIT
modes the cursor stayed on the same screen line.
COMPATIBILITY
XEDIT: N/A
KEDIT: N/A
DEFAULT
ON
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short CursorStay(CHARTYPE *params)
#else
short CursorStay(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:CursorStay");
#endif
rc = execute_set_on_off(params,&scroll_cursor_stay);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set defsort - specify the order in which files appear in DIR.DIR
SYNTAX
[SET] DEFSORT OFF|DIRectory|Size|Date|Time|Name [Ascending|Descending]
DESCRIPTION
The SET DEFSORT command allows the user to determine the order
in which files appear in a DIR.DIR file.
'Directory' specifies that directories within the current directory
are shown before other files.
'Size' specifies that the size of the file determines the order
in which files are displayed.
'Date' specifies that the date of the last change to the file
determines the order in which files are displayed. If the dates
are the same, the time the file was last changed is used as a
secondary sort key.
'Time' specifies that the time of the file determines the order
in which files are displayed.
'Name' specifies that the name of the file determines the order in
which files are displayed. This is the default. Files are sorted
by name as a secondary sort key when any of the above options are
specified and two files have equal values for that sort option.
'OFF' indicates that no ordering of the files in the directory
is performed. On directories with a large number of files, this
option results in a displayed DIR.DIR file much quicker than any
sorted display.
The second parameter specifies if the sort order is ascending or
descending.
This command does not affect how any current DIR.DIR file is shown
but is applicable the next time a directory is displayed as a
result of a DIR or LS command.
COMPATIBILITY
XEDIT: N/A
KEDIT: Similar in functionality.
DEFAULT
NAME ASCENDING
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Defsort(CHARTYPE *params)
#else
short Defsort(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define DIR_PARAMS 2
CHARTYPE *word[DIR_PARAMS+1];
CHARTYPE strip[DIR_PARAMS];
short num_params=0;
short rc=RC_OK;
int defsort=0;
int dirorder=DIRSORT_ASC;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Defsort");
#endif
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
num_params = param_split(params,word,DIR_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params < 1)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params > 2)
{
display_error(2,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (equal((CHARTYPE *)"directory",word[0],3))
defsort = DIRSORT_DIR;
else
if (equal((CHARTYPE *)"name",word[0],1))
defsort = DIRSORT_NAME;
else
if (equal((CHARTYPE *)"time",word[0],1))
defsort = DIRSORT_TIME;
else
if (equal((CHARTYPE *)"size",word[0],1))
defsort = DIRSORT_SIZE;
else
if (equal((CHARTYPE *)"date",word[0],1))
defsort = DIRSORT_DATE;
else
if (equal((CHARTYPE *)"off",word[0],3))
defsort = DIRSORT_NONE;
else
{
display_error(1,(CHARTYPE *)word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params == 2)
{
if (equal((CHARTYPE *)"ascending",word[1],1))
dirorder = DIRSORT_ASC;
else
if (equal((CHARTYPE *)"descending",word[1],1))
dirorder = DIRSORT_DESC;
else
{
display_error(1,(CHARTYPE *)word[1],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
}
DEFSORTx = defsort;
DIRORDERx = dirorder;
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set dirinclude - set the file mask for directory command
SYNTAX
[SET] DIRInclude *
[SET] DIRInclude [Normal] [Readonly] [System] [Hidden] [Directory]
DESCRIPTION
The DIRINCLUDE command sets the file mask for files that will be
displayed on subsequent DIRECTORY commands. The operand "*" will
set the mask to all files, the other options will set the
mask to include those options specified together with "normal"
files eg.
DIRINCLUDE R S
will display readonly and system files together with "normal" files
the next time the DIRECTORY command is issued.
The effects of DIRINCLUDE are ignored in the Unix version.
COMPATIBILITY
XEDIT: N/A
KEDIT: N/A
DEFAULT
*
SEE ALSO
<DIRECTORY>, <LS>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Dirinclude(CHARTYPE *params)
#else
short Dirinclude(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Dirinclude");
#endif
rc = set_dirtype(params);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set display - specify which level of lines to display
SYNTAX
[SET] DISPlay n [m|*]
DESCRIPTION
The SET DISPLAY command sets the selection level for lines to be
displayed on the screen.
COMPATIBILITY
XEDIT: Compatible.
KEDIT: Compatible.
DEFAULT
0 0
SEE ALSO
<SET SCOPE>, <SET SELECT>, <ALL>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Display(CHARTYPE *params)
#else
short Display(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
short col1=0,col2=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Display");
#endif
if ((rc = validate_n_m(params,&col1,&col2)) != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
CURRENT_VIEW->display_low = col1;
CURRENT_VIEW->display_high = col2;
/*---------------------------------------------------------------------*/
/* If we are on the command line and the result of this statement means*/
/* that the current line is no longer in scope, we need to make the */
/* current line and possibly the focus line the next line in scope. */
/*---------------------------------------------------------------------*/
if (CURRENT_VIEW->current_window == WINDOW_COMMAND)
{
CURRENT_VIEW->current_line = find_next_in_scope(CURRENT_VIEW,NULL,get_true_line(TRUE),DIRECTION_FORWARD);
build_screen(current_screen);
if (!line_in_view(current_screen,CURRENT_VIEW->focus_line))
{
CURRENT_VIEW->focus_line = CURRENT_VIEW->current_line;
pre_process_line(CURRENT_VIEW,CURRENT_VIEW->focus_line,(LINE *)NULL);
}
}
pre_process_line(CURRENT_VIEW,CURRENT_VIEW->focus_line,(LINE *)NULL);
build_screen(current_screen);
display_screen(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set ecolor - set colors for syntax highlighting
SYNTAX
[SET] ECOLOR char [modifier[...]] [foreground] [on background]
DESCRIPTION
The SET ECOLOR command allows the user to specify the colors of
each category of items used in syntax highlighting.
'char' refers to one of the following valid values:
A - comments
B - strings
C - numbers (N/A)
D - keywords
E - labels (N/A)
F - preprocessor directives
G - header lines
H - extra right paren, matchable keyword (N/A)
I - level 1 paren
J - level 1 matchable keyword (N/A)
K - level 1 matchable preprocessor keyword (N/A)
L - level 2 paren, matchable keyword (N/A)
M - level 3 paren, matchable keyword (N/A)
N - level 4 paren, matchable keyword (N/A)
O - level 5 paren, matchable keyword (N/A)
P - level 6 paren, matchable keyword (N/A)
Q - level 7 paren, matchable keyword (N/A)
R - level 8 paren or higher, matchable keyword (N/A)
S - incomplete string
T - HTML markup tags
U - HTML character/entity references
V - Builtin functions
W - not used
X - not used
Y - not used
Z - not used
1 - alternate keyword color 1
2 - alternate keyword color 2
3 - alternate keyword color 3
4 - alternate keyword color 4
5 - alternate keyword color 5
6 - alternate keyword color 6
7 - alternate keyword color 7
8 - alternate keyword color 8
9 - alternate keyword color 9
N/A indicates that this capability is not yet implemented.
For valid values for 'modifier', 'foreground' and 'background'
see <SET COLOR>.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
See <QUERY> ECOLOR
SEE ALSO
<SET COLORING>, <SET AUTOCOLOR>, <SET PARSER>, <SET COLOR>
Appendix 4
STATUS
Complete.
**man-end**********************************************************************/
/*man-start*********************************************************************
COMMAND
set ecolour - set colours for syntax highlighting
SYNTAX
[SET] ECOLOUR char [modifier[...]] [foreground] [on background]
DESCRIPTION
The SET ECOLOUR command allows the user to specify the colours of
each category of items used in syntax highlighting.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
See <QUERY> ECOLOR
SEE ALSO
<SET COLOURING>, <SET AUTOCOLOUR>, <SET PARSER>, <SET COLOUR>
Appendix 4
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Ecolour(CHARTYPE *params)
#else
short Ecolour(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define ECOL_PARAMS 2
CHARTYPE *word[ECOL_PARAMS+1];
CHARTYPE strip[ECOL_PARAMS];
unsigned short num_params=0;
short area=0,off;
COLOUR_ATTR attr;
CHARTYPE *dummy=NULL;
bool any_colours=FALSE;
CHARTYPE ch;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Ecolour");
#endif
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
num_params = param_split(params,word,ECOL_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params < 2 )
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* Check that the supplied area matches one of the values in the area */
/* array and that the length is at least as long as the minimum. */
/*---------------------------------------------------------------------*/
if (strlen((DEFCHAR *)word[0]) != 1)
{
display_error(1,word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
ch = word[0][0];
if (ch >= 'A' && ch <= 'Z')
off = 'A';
else if (ch >= 'a' && ch <= 'z')
off = 'a';
else if (ch >= '1' && ch <= '9')
off = '1' - 26; /* Beware: --x == +x */
else
{
display_error(1,word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
area = ch - off;
attr = CURRENT_FILE->ecolour[area];
/*---------------------------------------------------------------------*/
/* Determine colours and modifiers. */
/*---------------------------------------------------------------------*/
if (parse_colours(word[1],&attr,&dummy,FALSE,&any_colours) != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* Now we have the new colours, save them with the current file... */
/*---------------------------------------------------------------------*/
CURRENT_FILE->ecolour[area] = attr;
/*---------------------------------------------------------------------*/
/* If we haven't started curses (in profile first time) exit now... */
/*---------------------------------------------------------------------*/
if (!curses_started)
{
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*---------------------------------------------------------------------*/
/* Update the appropriate window with the new colour combination... */
/*---------------------------------------------------------------------*/
if (display_screens > 1
&& SCREEN_FILE(current_screen) == SCREEN_FILE(other_screen))
{
/* build_screen(other_screen); */
display_screen(other_screen);
}
/* build_screen(current_screen); */
display_screen(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set eolout - set end of line terminating character(s)
SYNTAX
[SET] EOLout CRLF|LF|CR|NONE
DESCRIPTION
The EOLOUT command allows the user to specify the combination of
characters that terminate a line. Lines of text in Unix files are
usually terminated with a 'LF', DOS file usually end with a 'CR' and
'LF' combination. Files on the Apple Macintosh are usually terminated
with a 'CR'.
The 'NONE' option can be used to specify that no end of line
character is written.
COMPATIBILITY
XEDIT: N/A
KEDIT: N/A
DEFAULT
LF - UNIX
CRLF - DOS/OS2/WIN32
NONE - if THE started with -u option
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Eolout(CHARTYPE *params)
#else
short Eolout(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
CHARTYPE eolchar=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Eolout");
#endif
if (equal((CHARTYPE *)"lf",params,2))
eolchar = EOLOUT_LF;
else
if (equal((CHARTYPE *)"cr",params,2))
eolchar = EOLOUT_CR;
else
{
if (equal((CHARTYPE *)"crlf",params,4))
eolchar = EOLOUT_CRLF;
else
if (equal((CHARTYPE *)"none",params,4))
eolchar = EOLOUT_NONE;
else
{
display_error(1,(CHARTYPE *)params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
}
EOLx = CURRENT_FILE->eolout = eolchar;
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set etmode - indicate if extended display mode is possible
SYNTAX
[SET] ETMODE ON|OFF [character list]
DESCRIPTION
The SET ETMODE command allows the user to specify which characters
in a character set are to be displayed as their actual representation.
Those characters not explicitly specified to be displayed as they are
represented, will be displayed as the <SET NONDISP> character in the
colour specified by <SET COLOUR> NONDISP. Characters below 32, will
be displayed with an alphabetic character representing the "control"
code.
eg.
character code with a value of 7, will display as "G" in the colour
specified by <SET COLOUR> NONDISP.
'ON' with no optional 'character list' will display ALL
characters as their actual representation.
'OFF' with no optional 'character list' will display control
characters below ASCII 32, as a "control" character; characters
greater than ASCII 126 will be displayed as the <SET NONDISP>
characters. On ASCII based machines, [SET] ETMODE OFF is
equivalent to [SET] ETMODE ON 32-126. On EBCDIC based machines
[SET] ETMODE OFF is equivalent to [SET] ETMODE ON ??-??
The 'character list' is a list of positive numbers between 0 and
255 (inclusive). The format of this character list can be either
a single number; eg. 124, or a range of numbers specified; eg.
32-126. (The first number must be less than or equal to the second
number).
As an example; ETMODE ON 32-127 160-250 would result in the
characters with a decimal value between 32 and 127 inclusive
and 160 and 250 inclusive being displayed as their actual
representation (depending on the current font), and the
characters between 0 and 31 inclusive, being displayed as
an equivalent "control" character; characters between 128 and
159 inculsive and 250 to 255 being displayed with the <SET NONDISP>
character.
Up to 20 character specifiers (single number or range) can be
specified.
COMPATIBILITY
XEDIT: Similar function but deals with Double-Byte characters
KEDIT: N/A
DEFAULT
ON - DOS/OS2/WIN32
ON 32-255 - X11
OFF - UNIX
SEE ALSO
<SET NONDISP>, <SET COLOUR>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Etmode(CHARTYPE *params)
#else
short Etmode(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define ETM_PARAMS 21
CHARTYPE *word[ETM_PARAMS+1];
CHARTYPE strip[ETM_PARAMS];
short num_params=0;
register short i=0,j=0;
short rc=RC_OK;
bool tmp_mode=FALSE;
chtype attr=0L;
COLOUR_ATTR curr_attr;
bool flags[256];
int num=0,num1=0;
CHARTYPE *wptr=NULL,*wptr1=NULL;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Etmode");
#endif
for(i=0;i<ETM_PARAMS;i++)
strip[i]=STRIP_BOTH;
num_params = param_split(params,word,ETM_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params < 1)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
rc = execute_set_on_off(word[0],&tmp_mode);
if (rc != RC_OK)
{
display_error(1,word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (CURRENT_VIEW == NULL
|| CURRENT_FILE == NULL)
set_up_default_colours((FILE_DETAILS *)NULL,&curr_attr,ATTR_NONDISP);
else
memcpy(&curr_attr,CURRENT_FILE->attr+ATTR_NONDISP,sizeof(COLOUR_ATTR));
attr = set_colour(&curr_attr);
if (num_params == 1) /* absolute ON or OFF */
{
if (tmp_mode) /* ETMODE ON */
{
for (i=0;i<256;i++)
{
etmode_table[i] = i;
etmode_flag[i] = FALSE;
}
}
else
{
for (i=0;i<256;i++)
{
#if 1
if ( isprint(i) )
{
etmode_table[i] = i;
etmode_flag[i] = FALSE;
}
else if ( iscntrl(i) )
{
etmode_table[i] = ('@' + i) | attr;
etmode_flag[i] = (attr)?TRUE:FALSE;
}
else
{
etmode_table[i] = NONDISPx | attr;
etmode_flag[i] = (attr)?TRUE:FALSE;
}
#else
if (i < 32)
{
etmode_table[i] = ('@' + i) | attr;
etmode_flag[i] = (attr)?TRUE:FALSE;
}
else if (i > 126)
{
etmode_table[i] = NONDISPx | attr;
etmode_flag[i] = (attr)?TRUE:FALSE;
}
else
{
etmode_table[i] = i;
etmode_flag[i] = FALSE;
}
#endif
}
}
if (number_of_files != 0)
{
build_screen(current_screen);
display_screen(current_screen);
}
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
memset(flags,FALSE,sizeof(flags));
for (i=1;i<num_params;i++)
{
if (valid_positive_integer(word[i]))
{
num = atoi((DEFCHAR *)word[i]);
if (num > 255)
{
display_error(6,word[i],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
flags[num] = TRUE;
continue;
}
num = strzeq(word[i],(CHARTYPE)'-');
num1 = strzreveq(word[i],(CHARTYPE)'-');
if (num != num1
|| num == (-1))
{
display_error(1,word[i],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
wptr = word[i];
*(wptr+num) = '\0';
wptr1 = wptr+num+1;
if (!valid_positive_integer(wptr))
{
display_error(1,wptr,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (!valid_positive_integer(wptr))
{
display_error(1,wptr1,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
num = atoi((DEFCHAR *)wptr);
num1 = atoi((DEFCHAR *)wptr1);
if (num > num1)
{
display_error(1,word[i],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num > 255)
{
display_error(6,wptr,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num1 > 255)
{
display_error(6,wptr1,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
for (j=num;j<num1+1;j++)
{
flags[j] = TRUE;
}
}
for (i=0;i<256;i++)
{
if (flags[i])
{
etmode_table[i] = i;
etmode_flag[i] = FALSE;
}
else
{
#if 1
if ( iscntrl(i) )
#else
if (i < 32)
#endif
{
etmode_table[i] = ('@' + i) | attr;
etmode_flag[i] = TRUE;
}
else
{
etmode_table[i] = NONDISPx | attr;
etmode_flag[i] = TRUE;
}
}
}
if (number_of_files != 0)
{
build_screen(current_screen);
display_screen(current_screen);
}
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set fext - change the extension of the existing file
SYNTAX
[SET] FExt ext
[SET] FType ext
DESCRIPTION
The SET FEXT command allows the user to change the path of
the file currently being edited.
The 'path' parameter can be specified with or without the
trailing directory seperator. Under DOS, OS/2 and Windows ports,
the drive letter is considered part of the file's path.
See <SET FILENAME> for a full explanation of THE's definitions
of fpath, filename, fname, fext and fmode.
It is not possible to use this command on pseudo files.
COMPATIBILITY
XEDIT: N/A
KEDIT: N/A
SEE ALSO
<SET FNAME>, <SET FILENAME>, <SET FTYPE>, <SET FMODE>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Fext(CHARTYPE *params)
#else
short Fext(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
CHARTYPE tmp_name[MAX_FILE_NAME+1];
short rc=RC_OK;
int last_period=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Fext");
#endif
/*
* If a pseudo file is being changed, then error...
*/
if (CURRENT_FILE->pseudo_file)
{
display_error(8,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
strcpy((DEFCHAR *)tmp_name,(DEFCHAR *)CURRENT_FILE->fpath);
strcat((DEFCHAR*)tmp_name,(DEFCHAR*)CURRENT_FILE->fname);
last_period = strzreveq(CURRENT_FILE->fname,(CHARTYPE)'.');
if (last_period == (-1)) /* no period */
{
if (blank_field(params)) /* and no extension, return... */
{
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
strcat((DEFCHAR*)tmp_name,"."); /* add a period */
}
else
{
tmp_name[strlen((DEFCHAR*)CURRENT_FILE->fpath)+last_period+1] = '\0';
}
strcat((DEFCHAR*)tmp_name,(DEFCHAR*)params);
/*
* Split the new path supplied...
*/
if ((rc = splitpath(strrmdup(strtrans(tmp_name,OSLASH,ISLASH),ISLASH,TRUE))) != RC_OK)
{
display_error(10,tmp_name,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*
* If the path is NOT the same as already assigned, error...
*/
if (strcmp((DEFCHAR *)sp_path,(DEFCHAR *)CURRENT_FILE->fpath) != 0)
{
display_error(1,params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*
* If the length of the new path is > the existing one,
* free up any memory for the existing path and allocate some
* more. Save the new path.
*/
if (strlen((DEFCHAR*)sp_fname) > strlen((DEFCHAR*)CURRENT_FILE->fname))
{
(*the_free)(CURRENT_FILE->fname);
if ((CURRENT_FILE->fname = (CHARTYPE *)(*the_malloc)(strlen((DEFCHAR *)sp_fname))) == NULL)
{
display_error(30,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OUT_OF_MEMORY);
}
}
strcpy((DEFCHAR *)CURRENT_FILE->fname,(DEFCHAR *)sp_fname);
/*
* Re-display the IDLINE
*/
if (display_screens > 1
&& SCREEN_FILE(current_screen) == SCREEN_FILE(other_screen))
show_heading(other_screen);
show_heading(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set filename - change the filename of the file being edited
SYNTAX
[SET] FILEName filename
DESCRIPTION
The SET FILEName command allows the user to change the filename of
the file currently being edited.
In THE, a fully qualified file name consists of a file path and a
file name. THE treats all characters up to and including the
last directory seperator (usually / or \) as the file's path.
From the first character after the end of the file's path, to
the end of the fully qualified file name is the file name.
A file name is further broken down into a fname and fext.
The fname of a file consists of all characters from the start
of the filename up to but not including the last period (if
there is one). The fext of a file consists of all characters
from the end of the filename up to but not including the last
period. If there is no period in the filename then the fext is
empty.
The fmode of a file is equivalent to the drive letter of the file's
path. This is only valid under DOS, OS/2 and Windows ports.
Some examples.
*----------------------------------------------------------------
Full File Name File File Fname Fext Fmode
Path Name
-----------------------------------------------------------------
/usr/local/bin/the /usr/local/bin/ the the N/A
c:\tools\the.exe c:\tools\ the.exe the exe c
/etc/a.b.c /etc/ a.b.c a.b c N/A
*----------------------------------------------------------------
A limited amount of validation of the resulting file name is
carried out by this command, but some errors in the file name
will not be evident until the file is saved.
A leading "=" indicates that the fname portion of the current file
name is be retained. This is equivalent to the command
<SET FEXT>. A trailing "=" indicates that the fext portion of
the current file name is to be retained. This is equivalent to the
command <SET FNAME>.
Only one "=" is allowed in the parameter.
Some examples.
*----------------------------------------------------------------
File Name Parameter New File Name
-----------------------------------------------------------------
a.b.c fred.c= fred.c.c SET FNAME fred.c
a.b.c fred.c.= fred.c..c SET FNAME fred.c.
a.b.c =fred a.c.fred SET FEXT fred
a.b.c =.fred a.c..fred SET FEXT .fred
a =d a.d SET FEXT d
a.b.c = a.b.c does nothing
*----------------------------------------------------------------
It is not possible to use this command on pseudo files.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
SEE ALSO
<SET FPATH>, <SET FNAME>, <SET FEXT>, <SET FMODE>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Filename(CHARTYPE *params)
#else
short Filename(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
CHARTYPE tmp_name[MAX_FILE_NAME+1];
short rc=RC_OK;
int i=0,cnt=0,len_params=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Filename");
#endif
/*
* Must supply a parameter...
*/
if (blank_field(params))
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*
* If a pseudo file is being changed, then error...
*/
if (CURRENT_FILE->pseudo_file)
{
display_error(8,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*
* If a = is specified...
*/
if (strcmp((DEFCHAR*)"=",(DEFCHAR*)params) == 0)
{
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*
* Find out how many = are specified...
*/
len_params = strlen((DEFCHAR*)params);
for (i=0,cnt=0;i<len_params;i++)
{
if (params[i] == '=')
cnt++;
}
if (cnt > 1)
{
display_error(1,params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*
* If we do have a leading or trailing = then call the equivalent
* SET FEXT or FNAME command...
*/
if (cnt == 1)
{
if (params[0] == '=')
{
strcpy((DEFCHAR*)tmp_name,(DEFCHAR*)params+1);
rc = Fext(tmp_name);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
else
{
if (params[len_params-1] == '=')
{
strcpy((DEFCHAR*)tmp_name,(DEFCHAR*)params);
tmp_name[len_params-1] = '\0';
rc = Fname(tmp_name);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
else
{
display_error(1,params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
}
}
/*
* To get here, no = was in the parameter...
*/
strcpy((DEFCHAR *)tmp_name,(DEFCHAR *)CURRENT_FILE->fpath);
strcat((DEFCHAR *)tmp_name,(DEFCHAR *)params);
if ((rc = splitpath(strrmdup(strtrans(tmp_name,OSLASH,ISLASH),ISLASH,TRUE))) != RC_OK)
{
display_error(10,tmp_name,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*
* If the resulting path is different to the current one, error.
*/
if (strcmp((DEFCHAR *)sp_path,(DEFCHAR *)CURRENT_FILE->fpath) != 0)
{
display_error(8,params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*
* If the file name is the same as already assigned, exit...
*/
if (strcmp((DEFCHAR *)sp_fname,(DEFCHAR *)CURRENT_FILE->fname) == 0)
{
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*
* If the length of the new filename is > the existing one,
* free up any memory for the existing name and allocate some
* more. Save the new name.
*/
if (strlen((DEFCHAR*)sp_fname) > strlen((DEFCHAR*)CURRENT_FILE->fname))
{
(*the_free)(CURRENT_FILE->fname);
if ((CURRENT_FILE->fname = (CHARTYPE *)(*the_malloc)(strlen((DEFCHAR *)sp_fname)+1)) == NULL)
{
display_error(30,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OUT_OF_MEMORY);
}
}
strcpy((DEFCHAR *)CURRENT_FILE->fname,(DEFCHAR *)sp_fname);
/*
* Re-display the IDLINE
*/
if (display_screens > 1
&& SCREEN_FILE(current_screen) == SCREEN_FILE(other_screen))
show_heading(other_screen);
show_heading(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set fmode - change the drive letter of the existing file
SYNTAX
[SET] FMode d[:]
DESCRIPTION
The SET FMode command allows the user to change the drive letter
of the file currently being edited.
This command is only valid under the DOS, OS/2 and Windows ports.
See <SET FILENAME> for a full explanation of THE's definitions
of fpath, filename, fname, fext and fmode.
It is not possible to use this command on pseudo files.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible
SEE ALSO
<SET FNAME>, <SET FILENAME>, <SET FEXT>, <SET FPATH>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Fmode(CHARTYPE *params)
#else
short Fmode(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
CHARTYPE tmp_name[MAX_FILE_NAME+1];
short rc=RC_OK;
int len_params=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Fmode");
#endif
/*
* Not valid for Unix...
*/
#ifdef UNIX
display_error(82,(CHARTYPE *)"FMODE",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
#endif
/*
* Must supply a parameter...
*/
if (blank_field(params))
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*
* If a pseudo file is being changed, then error...
*/
if (CURRENT_FILE->pseudo_file)
{
display_error(8,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*
* The only valid parameter is an alphabetic with an optional
* ':'
*/
len_params = strlen((DEFCHAR*)params);
if (len_params > 2
|| !isalpha(*params)
|| (len_params == 2
&& *params != ':'))
{
display_error(1,params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
strcpy((DEFCHAR*)tmp_name,(DEFCHAR*)CURRENT_FILE->fpath);
memcpy((DEFCHAR*)tmp_name,(DEFCHAR*)params,len_params);
/*
* Split the new path supplied...
*/
if ((rc = splitpath(strrmdup(strtrans(tmp_name,OSLASH,ISLASH),ISLASH,TRUE))) != RC_OK)
{
display_error(10,tmp_name,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*
* If a filename results, then the path name specified would conflict
* with an existing file.
*/
if (!blank_field(sp_fname))
{
display_error(8,params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*
* If the path is the same as already assigned, exit...
*/
if (strcmp((DEFCHAR *)sp_path,(DEFCHAR *)CURRENT_FILE->fpath) == 0)
{
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*
* If the length of the new path is > the existing one,
* free up any memory for the existing path and allocate some
* more. Save the new path.
*/
if (strlen((DEFCHAR*)sp_path) > strlen((DEFCHAR*)CURRENT_FILE->fpath))
{
(*the_free)(CURRENT_FILE->fpath);
if ((CURRENT_FILE->fpath = (CHARTYPE *)(*the_malloc)(strlen((DEFCHAR *)sp_path))) == NULL)
{
display_error(30,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OUT_OF_MEMORY);
}
}
strcpy((DEFCHAR *)CURRENT_FILE->fpath,(DEFCHAR *)sp_path);
/*
* Re-display the IDLINE
*/
if (display_screens > 1
&& SCREEN_FILE(current_screen) == SCREEN_FILE(other_screen))
show_heading(other_screen);
show_heading(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set fname - change the filename of the file being edited
SYNTAX
[SET] FName filename
DESCRIPTION
The SET FNAME command allows the user to change the fname of
the file currently being edited.
See <SET FILENAME> for a full explanation of THE's definitions
of fpath, filename, fname, fext and fmode.
A limited amount of validation of the resulting file name is
carried out by this command, but some errors in the file name
will not be evident until the file is saved.
It is not possible to use this command on pseudo files.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
SEE ALSO
<SET FPATH>, <SET FILENAME>, <SET FEXT>, <SET FMODE>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Fname(CHARTYPE *params)
#else
short Fname(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
CHARTYPE tmp_name[MAX_FILE_NAME+1];
short rc=RC_OK;
int last_period=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Fname");
#endif
/*
* Must supply a parameter...
*/
if (blank_field(params))
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*
* If a pseudo file is being changed, then error...
*/
if (CURRENT_FILE->pseudo_file)
{
display_error(8,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
strcpy((DEFCHAR *)tmp_name,(DEFCHAR *)CURRENT_FILE->fpath);
last_period = strzreveq(CURRENT_FILE->fname,(CHARTYPE)'.');
if (last_period == (-1)) /* no period */
{
strcat((DEFCHAR*)tmp_name,(DEFCHAR*)params);
}
else
{
int len=strlen((DEFCHAR*)CURRENT_FILE->fpath);
int lenext=strlen((DEFCHAR*)CURRENT_FILE->fname)-last_period;
strcat((DEFCHAR*)tmp_name,(DEFCHAR*)CURRENT_FILE->fname+last_period);
meminsmem(tmp_name,params,strlen((DEFCHAR*)params),len,MAX_FILE_NAME+1,
len+lenext+1);
}
/*
* Split the new path supplied...
*/
if ((rc = splitpath(strrmdup(strtrans(tmp_name,OSLASH,ISLASH),ISLASH,TRUE))) != RC_OK)
{
display_error(10,tmp_name,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*
* If the resulting path is different to the current one, error.
*/
if (strcmp((DEFCHAR *)sp_path,(DEFCHAR *)CURRENT_FILE->fpath) != 0)
{
display_error(8,params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*
* If the file name is the same as already assigned, exit...
*/
if (strcmp((DEFCHAR *)sp_fname,(DEFCHAR *)CURRENT_FILE->fname) == 0)
{
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*
* If the length of the new path is > the existing one,
* free up any memory for the existing path and allocate some
* more. Save the new path.
*/
if (strlen((DEFCHAR*)sp_fname) > strlen((DEFCHAR*)CURRENT_FILE->fname))
{
(*the_free)(CURRENT_FILE->fname);
if ((CURRENT_FILE->fname = (CHARTYPE *)(*the_malloc)(strlen((DEFCHAR *)sp_fname))) == NULL)
{
display_error(30,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OUT_OF_MEMORY);
}
}
strcpy((DEFCHAR *)CURRENT_FILE->fname,(DEFCHAR *)sp_fname);
/*
* Re-display the IDLINE
*/
if (display_screens > 1
&& SCREEN_FILE(current_screen) == SCREEN_FILE(other_screen))
show_heading(other_screen);
show_heading(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set fpath - change the path of the existing file
SYNTAX
[SET] FPath path
DESCRIPTION
The SET FPATH command allows the user to change the path of
the file currently being edited.
The 'path' parameter can be specified with or without the
trailing directory seperator. Under DOS, OS/2 and Windows ports,
the drive letter is considered part of the file's path.
See <SET FILENAME> for a full explanation of THE's definitions
of fpath, filename, fname, fext and fmode.
It is not possible to use this command on pseudo files.
COMPATIBILITY
XEDIT: N/A
KEDIT: N/A
SEE ALSO
<SET FNAME>, <SET FILENAME>, <SET FEXT>, <SET FMODE>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Fpath(CHARTYPE *params)
#else
short Fpath(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Fpath");
#endif
/*
* Must supply a parameter...
*/
if (blank_field(params))
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*
* If a pseudo file is being changed, then error...
*/
if (CURRENT_FILE->pseudo_file)
{
display_error(8,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*
* Split the new path supplied...
*/
if ((rc = splitpath(strrmdup(strtrans(params,OSLASH,ISLASH),ISLASH,TRUE))) != RC_OK)
{
display_error(10,params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*
* If a filename results, then the path name specified would conflict
* with an existing file.
*/
if (!blank_field(sp_fname))
{
display_error(8,params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*
* If the path is the same as already assigned, exit...
*/
if (strcmp((DEFCHAR *)sp_path,(DEFCHAR *)CURRENT_FILE->fpath) == 0)
{
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*
* If the length of the new path is > the existing one,
* free up any memory for the existing path and allocate some
* more. Save the new path.
*/
if (strlen((DEFCHAR*)sp_path) > strlen((DEFCHAR*)CURRENT_FILE->fpath))
{
(*the_free)(CURRENT_FILE->fpath);
if ((CURRENT_FILE->fpath = (CHARTYPE *)(*the_malloc)(strlen((DEFCHAR *)sp_path))) == NULL)
{
display_error(30,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OUT_OF_MEMORY);
}
}
strcpy((DEFCHAR *)CURRENT_FILE->fpath,(DEFCHAR *)sp_path);
/*
* Re-display the IDLINE
*/
if (display_screens > 1
&& SCREEN_FILE(current_screen) == SCREEN_FILE(other_screen))
show_heading(other_screen);
show_heading(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set ftype - change the extension of the existing file
SYNTAX
[SET] FType ext
DESCRIPTION
The SET FTYPE is a synonym for <SET FEXT>.
COMPATIBILITY
XEDIT: N/A
KEDIT: N/A
SEE ALSO
<SET FNAME>, <SET FILENAME>, <SET FEXT>, <SET FMODE>
STATUS
Complete.
**man-end**********************************************************************/
/*man-start*********************************************************************
COMMAND
set fullfname - specify if complete filename to be displayed
SYNTAX
[SET] FULLFName ON|OFF
DESCRIPTION
The SET FULLFNAME command allows the user to determine if the
fully qualified filename is displayed on the IDLINE or just the
filename that the user entered.
COMPATIBILITY
XEDIT: N/A
KEDIT: N/A
DEFAULT
ON
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Fullfname(CHARTYPE *params)
#else
short Fullfname(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Fullfname");
#endif
rc = execute_set_on_off(params,&CURRENT_FILE->display_actual_filename);
if (display_screens > 1
&& SCREEN_FILE(current_screen) == SCREEN_FILE(other_screen))
show_heading(other_screen);
show_heading(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set hex - set how hexadecimal strings are treated in string operands
SYNTAX
[SET] HEX ON|OFF
DESCRIPTION
The SET HEX set command determines whether hexadecimal strings are
treated as such in string operands.
With the 'ON' option, any string operand of the form
/x'31 32 33'/ or
/d'49 50 51'/
will be converted to /123/ before the command is executed.
With the 'OFF' option, no conversion is done.
This conversion should work wherever a string operand is used
in any command.
COMPATIBILITY
XEDIT: Adds support for decimal representation. See below.
KEDIT: Compatible. See below.
Spaces must seperate each character representation.
DEFAULT
OFF
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Hex(CHARTYPE *params)
#else
short Hex(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Hex");
#endif
rc = execute_set_on_off(params,&CURRENT_VIEW->hex);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set hexdisplay - turn on or off display of character under cursor
SYNTAX
[SET] HEXDISPlay ON|OFF
DESCRIPTION
The SET HEXDISPLAY command turns on or off the display of the
character under the cursor on the <status line>.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
ON
STATUS
Complete
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Hexdisplay(CHARTYPE *params)
#else
short Hexdisplay(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Hexdisplay");
#endif
rc = execute_set_on_off(params,&HEXDISPLAYx);
if (rc == RC_OK
&& curses_started)
clear_statarea();
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set hexshow - turn on or off hex display of current line
SYNTAX
[SET] HEXShow ON|OFF [M[+n|-n]|[+|-]n]
DESCRIPTION
The SET HEXShow command indicates if and where a hexadecimal
representation of the <current line> will be displayed.
The first form of parameters is:
M[+n|-n]
this sets the hexshow line to be relative to the middle of
the screen. A positive value adds to the middle line number,
a negative subtracts from it.
eg. M+3 on a 24 line screen will be line 15
M-5 on a 24 line screen will be line 7
The second form of parameters is:
[+|-]n
this sets the hexshow line to be relative to the top of the
screen (if positive or no sign) or relative to the bottom
of the screen if negative.
eg. +3 or 3 will set current line to line 3
-3 on a 24 line screen will be line 21
If the resulting line is outside the bounds of the screen
the position of the hexshow line will become the middle line
on the screen.
The position argument specifies the position of the first line
of the hexadecimal display.
It is an error to try to position the HEXSHOW lines on the same
line as <SET CURLINE>.
COMPATIBILITY
XEDIT: N/A
KEDIT: N/A
DEFAULT
OFF 7
STATUS
Complete
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Hexshow(CHARTYPE *params)
#else
short Hexshow(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define HEXS_PARAMS 2
CHARTYPE *word[HEXS_PARAMS+1];
CHARTYPE strip[HEXS_PARAMS];
short num_params=0;
short rc=RC_OK;
short base=(short)CURRENT_VIEW->hexshow_base;
short off=CURRENT_VIEW->hexshow_off;
bool hexshowsts=FALSE;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Hexshow");
#endif
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
num_params = param_split(params,word,HEXS_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params < 1)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* Parse the status parameter... */
/*---------------------------------------------------------------------*/
rc = execute_set_on_off(word[0],&hexshowsts);
if (rc != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*---------------------------------------------------------------------*/
/* Parse the position parameter... */
/*---------------------------------------------------------------------*/
if (num_params > 1)
{
rc = execute_set_row_position(word[1],&base,&off);
if (rc != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
}
/*---------------------------------------------------------------------*/
/* If the HEXSHOW row (or the next row) is the same row as CURLINE and */
/* it is being turned on, return ERROR. */
/*---------------------------------------------------------------------*/
if ((calculate_actual_row(CURRENT_VIEW->current_base,
CURRENT_VIEW->current_off,
CURRENT_SCREEN.rows[WINDOW_FILEAREA],TRUE) ==
calculate_actual_row(base,off,CURRENT_SCREEN.rows[WINDOW_FILEAREA],TRUE)
|| calculate_actual_row(CURRENT_VIEW->current_base,
CURRENT_VIEW->current_off,
CURRENT_SCREEN.rows[WINDOW_FILEAREA],TRUE) ==
calculate_actual_row(base,off,CURRENT_SCREEN.rows[WINDOW_FILEAREA],TRUE) + 1)
&& hexshowsts)
{
display_error(64,(CHARTYPE *)"- same line as CURLINE",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_ENVIRON);
}
CURRENT_VIEW->hexshow_base = (CHARTYPE)base;
CURRENT_VIEW->hexshow_off = off;
CURRENT_VIEW->hexshow_on = hexshowsts;
post_process_line(CURRENT_VIEW,CURRENT_VIEW->focus_line,(LINE *)NULL,TRUE);
build_screen(current_screen);
display_screen(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set highlight - specify which lines (if any) are to be highlighted
SYNTAX
[SET] HIGHlight OFF|TAGged|ALTered|SELect n [m]
DESCRIPTION
The SET HIGHLIGHT command allows for the user to specify which
lines are to be displayed in the highlighted colour.
'OFF' turns all highlighting display off
'TAGGED' displays all tagged lines in the highlight colour.
'ALTERED' displays all lines that have been added or
changed in the current session in the highlight colour.
'SELECT n [m]' displays all lines with the specified selection
level in highlight colour.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible
DEFAULT
OFF
SEE ALSO
<SET SELECT>, <TAG>, <SET LINEFLAG>
STATUS
Ccomplete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Highlight(CHARTYPE *params)
#else
short Highlight(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define HIGH_PARAMS 2
CHARTYPE *word[HIGH_PARAMS+1];
CHARTYPE strip[HIGH_PARAMS];
short num_params=0;
short col1=0,col2=0;
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Highlight");
#endif
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
num_params = param_split(params,word,HIGH_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params < 1)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
switch (num_params)
{
case 1:
if (equal((CHARTYPE *)"off",word[0],3))
{
CURRENT_VIEW->highlight = HIGHLIGHT_NONE;
break;
}
if (equal((CHARTYPE *)"tagged",word[0],3))
{
CURRENT_VIEW->highlight = HIGHLIGHT_TAG;
break;
}
if (equal((CHARTYPE *)"altered",word[0],3))
{
CURRENT_VIEW->highlight = HIGHLIGHT_ALT;
break;
}
display_error(1,word[0],FALSE);
rc = RC_INVALID_OPERAND;
break;
case 2:
case 3:
if (!equal((CHARTYPE *)"select",word[0],3))
{
display_error(1,word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if ((rc = validate_n_m(word[1],&col1,&col2)) != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
CURRENT_VIEW->highlight = HIGHLIGHT_SELECT;
CURRENT_VIEW->highlight_low = col1;
CURRENT_VIEW->highlight_high = col2;
break;
default:
display_error(1,word[0],FALSE);
rc = RC_INVALID_OPERAND;
break;
}
if (rc == RC_OK)
{
build_screen(current_screen);
display_screen(current_screen);
}
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set idline - specify if IDLINE is displayed
SYNTAX
[SET] IDline ON|OFF
DESCRIPTION
The SET IDLINE set command determines if the <idline> for a file is
displayed or not.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
ON
STATUS
Complete
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Idline(CHARTYPE *params)
#else
short Idline(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
bool save_id_line=FALSE;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Idline");
#endif
save_id_line = CURRENT_VIEW->id_line;
rc = execute_set_on_off(params,&CURRENT_VIEW->id_line);
if (rc != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*---------------------------------------------------------------------*/
/* If the new value of id_line is the same as before, exit now. */
/*---------------------------------------------------------------------*/
if (save_id_line == CURRENT_VIEW->id_line)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*---------------------------------------------------------------------*/
/* Redefine the screen sizes... */
/*---------------------------------------------------------------------*/
set_screen_defaults();
/*---------------------------------------------------------------------*/
/* Recreate windows for the current screen... */
/*---------------------------------------------------------------------*/
if (curses_started)
{
if (set_up_windows(current_screen) != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
}
build_screen(current_screen);
display_screen(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set impcmscp - set implied operating system command processing
SYNTAX
[SET] IMPcmscp ON|OFF
DESCRIPTION
The SET IMPCMSCP command is used to toggle implied operating system
command processing from the command line. By turning this feature
on you can then issue an operating system command without the need
to prefix the operating system command with the <OS> command.
COMPATIBILITY
XEDIT: Compatible.
KEDIT: N/A
DEFAULT
ON
SEE ALSO
<SET IMPOS>
STATUS
Complete.
**man-end**********************************************************************/
/*man-start*********************************************************************
COMMAND
set impmacro - set implied macro command processing
SYNTAX
[SET] IMPMACro ON|OFF
DESCRIPTION
The SET IMPMACRO command is used to toggle implied macro processing
from the command line. By turning this feature on you can then
issue a <macro> command without the need to prefix the macro name
with the <MACRO> command.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
ON
SEE ALSO
<MACRO>, <SET MACROPATH>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Impmacro(CHARTYPE *params)
#else
short Impmacro(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Impmacro");
#endif
rc = execute_set_on_off(params,&CURRENT_VIEW->imp_macro);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set impos - set implied operating system command processing
SYNTAX
[SET] IMPOS ON|OFF
DESCRIPTION
The SET IMPOS command is used to toggle implied operating system
command processing from the command line. By turning this feature
on you can then issue an operating system command without the need
to prefix the operating system command with the <OS> command.
COMPATIBILITY
XEDIT: Compatible.
KEDIT: N/A
DEFAULT
ON
SEE ALSO
<SET IMPCMSCP>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Impos(CHARTYPE *params)
#else
short Impos(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Impos");
#endif
rc = execute_set_on_off(params,&CURRENT_VIEW->imp_os);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set inputmode - set input mode behaviour
SYNTAX
[SET] INPUTMode OFF|FUll|LIne
DESCRIPTION
The SET INPUTMODE command changes the way THE handles input.
When INPUTMODE LINE is in effect, pressing the ENTER key while
in the <filearea> will result in a new line being added.
When INPUTMODE OFF is in effect, pressing the ENTER key while
in the <filearea> will result in the cursor moving to the
beginning of the next line; scrolling the screen if necessary.
When INPUTMODE FULL is in effect, pressing the ENTER key while
in the <filearea> will result in the cursor moving to the
beginning of the next line; scrolling the screen if necessary.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
LINE
SEE ALSO
<INPUT>
STATUS
Incomplete. No support for FULL option.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Inputmode(CHARTYPE *params)
#else
short Inputmode(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Inputmode");
#endif
if (equal((CHARTYPE *)"off",params,3))
CURRENT_VIEW->inputmode = INPUTMODE_OFF;
else
if (equal((CHARTYPE *)"full",params,2))
CURRENT_VIEW->inputmode = INPUTMODE_FULL;
else
if (equal((CHARTYPE *)"line",params,2))
CURRENT_VIEW->inputmode = INPUTMODE_LINE;
else
{
display_error(1,(CHARTYPE *)params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set insertmode - put editor into or out of insert mode
SYNTAX
[SET] INSERTMode ON|OFF|TOGGLE
DESCRIPTION
The SET INSERTMODE command enable the user to set the insert mode
within THE.
The 'TOGGLE' option turns insert mode 'ON' if it is currently
'OFF' and vice versa.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
OFF
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Insertmode(CHARTYPE *params)
#else
short Insertmode(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Insertmode");
#endif
if (equal((CHARTYPE *)"off",params,3))
INSERTMODEx = FALSE;
else
if (equal((CHARTYPE *)"on",params,2))
INSERTMODEx = TRUE;
else
if (equal((CHARTYPE *)"toggle",params,6))
INSERTMODEx = (INSERTMODEx) ? FALSE : TRUE;
else
{
display_error(1,(CHARTYPE *)params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (curses_started)
draw_cursor(TRUE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set lineflag - set the line characteristics of lines
SYNTAX
[SET] LINEFLAG CHAnge|NOCHange NEW|NONEW TAG|NOTAG [target]
DESCRIPTION
The SET LINEFLAGS command controls the line characteristics of lines
in a file.
Each line in a file has certain characteristics associated with it
depending on how the line has been modified. On reading a file from
disk, all lines in the file are set to their default values.
Once a line is modified, or tagged, the characteristics of the line
are set appropriately. A line that is added, is set to NEW; a line
that is changed is set to CHANGE, and a line that is tagged with the
<TAG> command, is set to TAG. All three characteristics can be on
at the one time.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
NOCHANGE NONEW NOTAG
SEE ALSO
<TAG>, <SET HIGHLIGHT>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Lineflag(CHARTYPE *params)
#else
short Lineflag(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define LF_PARAMS 4
CHARTYPE *word[LF_PARAMS+1];
CHARTYPE strip[LF_PARAMS];
LINETYPE num_lines=0L,true_line=0L;
CHARTYPE *save_params;
short num_params=0,num_flags;
short rc=RC_OK;
short target_type=TARGET_NORMAL|TARGET_BLOCK_CURRENT|TARGET_ALL;
short save_target_type=TARGET_UNFOUND;
TARGET target;
bool num_lines_based_on_scope=FALSE,no_flag=FALSE;
unsigned int new_flag=2;
unsigned int changed_flag=2;
unsigned int tag_flag=2;
int i,j;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("comm4.c: Lineflag");
#endif
save_params = my_strdup( params );
if ( save_params == NULL )
{
display_error(30,(CHARTYPE *)"",FALSE);
return(RC_OUT_OF_MEMORY);
}
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
strip[2]=STRIP_BOTH;
strip[3]=STRIP_NONE;
num_params = param_split(params,word,LF_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params == 0) /* no params */
{
display_error(3,(CHARTYPE *)"",FALSE);
(*the_free)( save_params );
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
for (i = 0; i < num_params; i++)
{
if (!equal((CHARTYPE *)"change",word[i],3)
&& !equal((CHARTYPE *)"nochange",word[i],4)
&& !equal((CHARTYPE *)"new",word[i],3)
&& !equal((CHARTYPE *)"nonew",word[i],5)
&& !equal((CHARTYPE *)"tag",word[i],3)
&& !equal((CHARTYPE *)"notag",word[i],5))
{
no_flag = TRUE;
break;
}
}
/*
* If we broke out of the above loop the first time, then
* there are no valid flags specified
*/
if ( i == 0 )
{
display_error(3,(CHARTYPE *)"",FALSE);
(*the_free)( save_params );
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*
* If no_flag is set to FALSE, all parameters are flags; therefore
* the target will be 1
*/
if ( no_flag == FALSE )
{
num_lines = 1L;
true_line = get_true_line(TRUE);
num_lines_based_on_scope = TRUE;
num_flags = num_params;
}
else
{
if ( i+1 != num_params )
{
for ( j = 0; j < i; j++ )
{
strip[0]=STRIP_BOTH;
}
strip[i]=STRIP_NONE;
num_params = param_split(params,word,i+1,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
}
initialise_target(&target);
if ( ( rc = validate_target( word[num_params-1], &target, target_type, get_true_line(TRUE), TRUE, TRUE ) ) != RC_OK )
{
free_target( &target );
(*the_free)( save_params );
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
switch ( target.rt[0].target_type )
{
case TARGET_BLOCK_CURRENT:
switch( MARK_VIEW->mark_type )
{
case M_STREAM:
case M_WORD:
case M_COLUMN:
display_error(49,(CHARTYPE*)"",FALSE);
free_target(&target);
(*the_free)( save_params );
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
break;
case M_BOX:
display_error(48,(CHARTYPE*)"",FALSE);
free_target(&target);
(*the_free)( save_params );
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
break;
default:
break;
}
break;
case TARGET_BLOCK_ANY:
display_error(45,(CHARTYPE*)"",FALSE);
free_target(&target);
(*the_free)( save_params );
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
break;
default:
break;
}
num_lines = target.num_lines;
true_line = target.true_line;
save_target_type = target.rt[0].target_type;
num_lines_based_on_scope = (save_target_type == TARGET_BLOCK_CURRENT) ? FALSE : TRUE;
free_target(&target);
num_flags = num_params-1;
}
for ( i = 0; i < num_flags; i++ )
{
if ( equal( (CHARTYPE *)"change", word[i], 3 ) )
changed_flag = 1;
else if ( equal( (CHARTYPE *)"nochange", word[i], 4 ) )
changed_flag = 0;
else if ( equal( (CHARTYPE *)"new", word[i], 3 ) )
new_flag = 1;
else if ( equal( (CHARTYPE *)"nonew", word[i], 5 ) )
new_flag = 0;
else if ( equal( (CHARTYPE *)"tag", word[i], 3 ) )
tag_flag = 1;
else if ( equal( (CHARTYPE *)"notag", word[i], 5 ) )
tag_flag = 0;
else
;
}
/*
* Now we are here, everything's OK, do the actual modification...
*/
rc = execute_set_lineflag( new_flag, changed_flag, tag_flag, true_line, num_lines, num_lines_based_on_scope, save_target_type );
(*the_free)( save_params );
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set linend - allow/disallow multiple commands on command line
SYNTAX
[SET] LINENd ON|OFF [character]
DESCRIPTION
The SET LINEND command allows or disallows the execution of multiple
commands on the <command line>. When setting LINEND ON, a 'character'
is specified as the LINEND character which delimits each command.
COMPATIBILITY
XEDIT: Compatible.
KEDIT: Compatible.
DEFAULT
OFF #
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Linend(CHARTYPE *params)
#else
short Linend(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define LE_PARAMS 2
CHARTYPE *word[LE_PARAMS+1];
CHARTYPE strip[LE_PARAMS];
unsigned short num_params=0;
bool le_status=CURRENT_VIEW->linend_status;
CHARTYPE le_value=CURRENT_VIEW->linend_value;
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Linend");
#endif
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
num_params = param_split(params,word,LE_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
switch(num_params)
{
case 1:
case 2:
rc = execute_set_on_off(word[0],&le_status);
if (rc != RC_OK)
{
display_error(1,word[0],FALSE);
rc = RC_INVALID_OPERAND;
break;
}
if (num_params == 1)
break;
if ((int)strlen((DEFCHAR *)word[1]) > (int)1)
{
display_error(1,word[1],FALSE);
break;
}
le_value = word[1][0];
break;
case 0:
display_error(3,(CHARTYPE *)"",FALSE);
rc = RC_INVALID_OPERAND;
break;
default:
display_error(2,(CHARTYPE *)"",FALSE);
rc = RC_INVALID_OPERAND;
break;
}
if (rc == RC_OK)
{
CURRENT_VIEW->linend_status = le_status;
CURRENT_VIEW->linend_value = le_value;
}
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set macro - indicate if macros executed before commands
SYNTAX
SET MACRO ON|OFF
DESCRIPTION
The SET MACRO command allows the user to determine if macros
are executed before a built-in command of the same name.
This command MUST be prefixed with <SET> to distinguish it
from the <MACRO> command.
A macro with the same name as a built-in command will only
be executed before the built-in command if <SET IMPMACRO>
is ON, <SET MACRO> is ON, and the command was NOT executed
with the <COMMAND> command.
COMPATIBILITY
XEDIT: Compatible.
KEDIT: N/A
DEFAULT
OFF
SEE ALSO
<MACRO>, <SET IMPMACRO>, <COMMAND>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short SetMacro(CHARTYPE *params)
#else
short SetMacro(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:SetMacro");
#endif
rc = execute_set_on_off(params,&CURRENT_VIEW->macro);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set macroext - set default macro extension value
SYNTAX
[SET] MACROExt [ext]
DESCRIPTION
The SET MACROEXT command sets the value of the file extension to be
used for <macro> files. When a macro file name is specified on the
<command line>, a period '.', then this value will be appended.
If no value is specified for 'ext', then THE assumes that the
supplied macro file name is the fully specified name for a macro.
The length of 'ext' must be 10 characters or less.
The macro extension is only appended to a file if that file does
not include any path specifiers.
COMPATIBILITY
XEDIT: N/A
KEDIT: N/A
DEFAULT
the
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Macroext(CHARTYPE *params)
#else
short Macroext(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Macroext");
#endif
/*---------------------------------------------------------------------*/
/* If no value is specified for ext, set the value of macro_suffix to */
/* "", otherwise set it to the supplied value, prefixed with '.' */
/*---------------------------------------------------------------------*/
if (strlen((DEFCHAR *)params) == 0)
strcpy((DEFCHAR *)macro_suffix,"");
else
{
if ((int)strlen((DEFCHAR *)params) > (int)10)
{
display_error(85,(CHARTYPE *)params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
strcpy((DEFCHAR *)macro_suffix,".");
strcat((DEFCHAR *)macro_suffix,(DEFCHAR *)params);
}
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set macropath - set default path for macro commands
SYNTAX
[SET] MACROPath PATH|path[s]
DESCRIPTION
The SET MACROPATH command sets up the search path from which macro
command files are executed. Each directory is seperated by a
colon (Unix) or semi-colon (DOS & OS/2). Only 20 directories are
allowed to be specified.
When 'PATH' is specified, the search path is set to the system
PATH environment variable.
COMPATIBILITY
XEDIT: N/A
KEDIT: Incompatible.
DEFAULT
Path specified by env variable THE_MACRO_PATH
SEE ALSO
<MACRO>, <SET IMPMACRO>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Macropath(CHARTYPE *params)
#else
short Macropath(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
#if defined(UNIX)
# define PATH_DELIM ':'
#else
# define PATH_DELIM ';'
#endif
/*--------------------------- local data ------------------------------*/
register int len=0;
DEFCHAR *ptr=NULL;
CHARTYPE *src;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Macropath");
#endif
/*---------------------------------------------------------------------*/
/* No checking is done on macro path supplied other than it contains a */
/* value. Path delimiters are translated if necessary. */
/*---------------------------------------------------------------------*/
if (strlen((DEFCHAR *)params) == 0)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (my_stricmp((DEFCHAR *)params,"PATH") == 0)
src = (CHARTYPE *)getenv("PATH");
else
src = params;
strcpy((DEFCHAR *)the_macro_path_buf,(DEFCHAR *)src);
(void *)strrmdup(strtrans(the_macro_path_buf,OSLASH,ISLASH),ISLASH,TRUE);
(void *)strrmdup(the_macro_path_buf,PATH_DELIM,FALSE);
len = strlen((DEFCHAR *)the_macro_path_buf);
if (the_macro_path_buf[len-1] == PATH_DELIM)
{
the_macro_path_buf[len-1] = '\0';
len--;
}
strcpy((DEFCHAR *)the_macro_path,(DEFCHAR *)the_macro_path_buf);
the_macro_dir[0] = the_macro_path_buf;
max_macro_dirs = 1;
for (ptr=(DEFCHAR*)the_macro_path_buf; *ptr != '\0'; ptr++)
{
if (*ptr == PATH_DELIM)
{
*ptr = '\0';
the_macro_dir[max_macro_dirs++] = (CHARTYPE*)++ptr;
if (max_macro_dirs > MAX_MACRO_DIRS)
{
display_error(2,(CHARTYPE *)"More than 20 directories specified",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
}
}
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set margins - set left and right margins for wordwrap
SYNTAX
[SET] MARgins left right [[+|-]indent]
DESCRIPTION
The SET MARGINS command sets the 'left' and 'right' margins and the
number of columns to 'indent' a paragraph.
These values are used with the <SET WORDWRAP> option.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible.
DEFAULT
1 72 +0
SEE ALSO
<SET WORDWRAP>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Margins(CHARTYPE *params)
#else
short Margins(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define MAR_PARAMS 3
CHARTYPE *word[MAR_PARAMS+1];
CHARTYPE strip[MAR_PARAMS];
short num_params=0;
short left=0,right=0,indent=0;
bool offset=FALSE,consistancy_error=FALSE;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Margins");
#endif
/*---------------------------------------------------------------------*/
/* Two parameters are mandatory, the third is optional. */
/*---------------------------------------------------------------------*/
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
strip[2]=STRIP_BOTH;
num_params = param_split(params,word,MAR_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params < 2)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params > 3)
{
display_error(2,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* Parse the parameters... */
/*---------------------------------------------------------------------*/
left = atoi((DEFCHAR *)word[0]);
if (left < 1)
{
display_error(5,word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* Right margin value can be *, set to maximum line length. */
/*---------------------------------------------------------------------*/
if (*(word[1]+1) == '*')
{
right = max_line_length;
}
else
{
right = atoi((DEFCHAR *)word[1]);
if (right < 1)
{
display_error(5,word[1],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
}
/*---------------------------------------------------------------------*/
/* Left margin must be less than right margin. */
/*---------------------------------------------------------------------*/
if (right < left)
{
display_error(5,word[1],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* Obtain current values for indent, in case they aren't changed by */
/* the current command. (ie. no third parameter) */
/*---------------------------------------------------------------------*/
indent = CURRENT_VIEW->margin_indent;
offset = CURRENT_VIEW->margin_indent_offset_status;
/*---------------------------------------------------------------------*/
/* Determine the type of offset for the indent value. If a sign is */
/* specified, then the number supplied is relative to the left margin */
/* otherwise it is an absolute column value. */
/*---------------------------------------------------------------------*/
if (num_params == 3)
{
if (*(word[2]) == '-'
|| *(word[2]) == '+')
{
offset = TRUE;
if ((indent = atoi((DEFCHAR *)word[2])) == 0)
{
if (strcmp((DEFCHAR *)word[2],"+0") != 0)
{
display_error(1,word[2],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
}
}
else
{
offset = FALSE;
/*---------------------------------------------------------------------*/
/* Absolute indent cannot be negative. */
/*---------------------------------------------------------------------*/
if ((indent = atoi((DEFCHAR *)word[2])) < 0)
{
display_error(1,word[2],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
}
}
/*---------------------------------------------------------------------*/
/* Once all values are determined, validate the relationship between */
/* the margins and the indent values. */
/* Rules: */
/* o If indent is a negative offset, the resultant column value */
/* cannot be negative. */
/* o If indent is a positive offset, the resultant column value */
/* cannot be > max_line_length or right margin */
/* o If indent is an absolute value, it cannot be > right margin */
/*---------------------------------------------------------------------*/
consistancy_error = FALSE;
if (offset
&& indent < 0
&& indent + left < 0)
consistancy_error = TRUE;
if (offset
&& indent > 0
&& indent + left > right)
consistancy_error = TRUE;
if (offset
&& indent > 0
&& (LENGTHTYPE)(indent + left) > max_line_length)
consistancy_error = TRUE;
if (!offset
&& indent > right)
consistancy_error = TRUE;
if (consistancy_error)
{
if (offset)
sprintf((DEFCHAR *)temp_cmd,"%d %d %+d",left,right,indent);
else
sprintf((DEFCHAR *)temp_cmd,"%d %d %d",left,right,indent);
display_error(12,temp_cmd,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* All OK, so save the values... */
/*---------------------------------------------------------------------*/
CURRENT_VIEW->margin_left = left;
CURRENT_VIEW->margin_right = right;
CURRENT_VIEW->margin_indent = indent;
CURRENT_VIEW->margin_indent_offset_status = offset;
/*---------------------------------------------------------------------*/
/* If the SCALE line is currently displayed, display the page so that */
/* any changes are reflected in the SCALE line. */
/*---------------------------------------------------------------------*/
if (CURRENT_VIEW->scale_on)
{
build_screen(current_screen);
display_screen(current_screen);
}
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set mouse - turn mouse support on or off
SYNTAX
[SET] MOUSE ON|OFF
DESCRIPTION
The SET MOUSE command allows the user to turn on or off mouse
support in THE. With mouse support, THE commands assigned to
a mouse button event will be executed. See APPENDIX 3 for
details on default mouse support.
If the platform does not support mouse operations, the default
setting will be OFF.
COMPATIBILITY
XEDIT: N/A
KEDIT: Compatible. Does not support all options.
DEFAULT
ON - if mouse supported, OFF - otherwise
SEE ALSO
<DEFINE>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Mouse(CHARTYPE *params)
#else
short Mouse(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Mouse");
#endif
rc = execute_set_on_off(params,&MOUSEx);
#if defined(PDCURSES_MOUSE_ENABLED)
mouse_set((MOUSEx)?ALL_MOUSE_EVENTS:0L);
#endif
#if defined(NCURSES_MOUSE_VERSION)
mousemask((MOUSEx)?ALL_MOUSE_EVENTS:0, (mmask_t*)NULL);
#endif
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set msgline - set position and size of message line
SYNTAX
[SET] MSGLine ON M[+n|-n]|[+|-]n [lines] [Overlay]
DESCRIPTION
The SET MSGLINE set command specifies the position of the
<message line> and the size of the message line window.
The first form of parameters is:
M[+n|-n]
this sets the first line to be relative to the middle of
the screen. A positive value adds to the middle line number,
a negative subtracts from it.
eg. M+3 on a 24 line screen will be line 15
M-5 on a 24 line screen will be line 7
The second form of parameters is:
[+|-]n
this sets the first line to be relative to the top of the
screen (if positive or no sign) or relative to the bottom
of the screen if negative.
eg. +3 or 3 will set current line to line 3
-3 on a 24 line screen will be line 21
If the resulting line is outside the bounds of the screen
the position of the message line will become the middle line
on the screen.
COMPATIBILITY
XEDIT: Compatible.
The OVERLAY option is the default but ignored.
KEDIT: Compatible
The OVERLAY option is the default but ignored.
DEFAULT
ON 2 5 Overlay
STATUS
Complete
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Msgline(CHARTYPE *params)
#else
short Msgline(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
#define MSG_PARAMS 5
CHARTYPE *word[MSG_PARAMS+1];
CHARTYPE strip[MSG_PARAMS];
short num_params=0;
short rc=RC_OK;
short base=(short)CURRENT_VIEW->msgline_base;
short off=CURRENT_VIEW->msgline_off;
bool msgsts=FALSE;
ROWTYPE num_lines=CURRENT_VIEW->msgline_rows;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Msgline");
#endif
strip[0]=STRIP_BOTH;
strip[1]=STRIP_BOTH;
strip[2]=STRIP_BOTH;
strip[3]=STRIP_BOTH;
strip[4]=STRIP_NONE;
num_params = param_split(params,word,MSG_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params < 2)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params > 4)
{
display_error(2,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* Parse the status parameter... */
/*---------------------------------------------------------------------*/
rc = execute_set_on_off(word[0],&msgsts);
if (rc != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*---------------------------------------------------------------------*/
/* ... only "ON" is allowed... */
/*---------------------------------------------------------------------*/
if (!msgsts)
{
display_error(1,word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
/*---------------------------------------------------------------------*/
/* Parse the position parameter... */
/*---------------------------------------------------------------------*/
if (num_params > 1)
{
rc = execute_set_row_position(word[1],&base,&off);
if (rc != RC_OK)
{
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
}
/*---------------------------------------------------------------------*/
/* To get here we have either two arguments or one. If two, the first */
/* is the number of lines, and the second MUST be Overlay. */
/* If one argument, it is either Overlay or number of lines. */
/*---------------------------------------------------------------------*/
switch(num_params)
{
case 3:
if (equal((CHARTYPE *)"overlay",word[2],1))
num_lines = 1;
else
{
num_lines = atoi((DEFCHAR *)word[2]);
if (num_lines < 1)
{
display_error(5,word[2],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
}
break;
case 4:
num_lines = atoi((DEFCHAR *)word[2]);
if (num_lines < 1)
{
display_error(5,word[2],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
if (!equal((CHARTYPE *)"overlay",word[3],1))
{
display_error(1,word[3],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
break;
default:
num_lines = 1;
break;
}
CURRENT_VIEW->msgline_base = (CHARTYPE)base;
CURRENT_VIEW->msgline_off = off;
CURRENT_VIEW->msgline_rows = num_lines;
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set msgmode - set display of messages on or off
SYNTAX
[SET] MSGMode ON|OFF
DESCRIPTION
The SET MSGMODE set command determines whether error messages will
be displayed or suppressed.
COMPATIBILITY
XEDIT: Does not support [Short|Long] options.
KEDIT: Compatible
DEFAULT
ON
STATUS
Complete
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Msgmode(CHARTYPE *params)
#else
short Msgmode(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Msgmode");
#endif
rc = execute_set_on_off(params,&CURRENT_VIEW->msgmode_status);
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
/*man-start*********************************************************************
COMMAND
set newlines - set position of cursor after adding blank line
SYNTAX
[SET] NEWLines Aligned|Left
DESCRIPTION
The SET NEWLINES set command determines where the cursor displays
after a new line is added to the file.
With 'ALIGNED', the cursor will display in the column of the new line
immediately underneath the first non-blank character in the line
above.
With 'LEFT', the cursor will display in the first column of the new
line.
COMPATIBILITY
XEDIT: N/A
KEDIT: Same command, different functionality.
DEFAULT
Aligned
STATUS
Complete
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Newlines(CHARTYPE *params)
#else
short Newlines(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
#define NEW_PARAMS 1
CHARTYPE parm[NEW_PARAMS];
CHARTYPE *word[NEW_PARAMS+1];
CHARTYPE strip[NEW_PARAMS];
unsigned short num_params=0;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Newlines");
#endif
strip[0]=STRIP_BOTH;
num_params = param_split(params,word,NEW_PARAMS,WORD_DELIMS,TEMP_PARAM,strip,FALSE);
if (num_params > 1)
{
display_error(2,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
if (num_params < 1)
{
display_error(3,(CHARTYPE *)"",FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
parm[0] = (CHARTYPE)UNDEFINED_OPERAND;
if (equal((CHARTYPE *)"aligned",word[0],1))
parm[0] = TRUE;
if (equal((CHARTYPE *)"left",word[0],1))
parm[0] = FALSE;
if (parm[0] == (CHARTYPE)UNDEFINED_OPERAND)
{
display_error(1,word[0],FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
CURRENT_VIEW->newline_aligned = parm[0];
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set nondisp - specify character to display for non-displaying characters
SYNTAX
[SET] NONDisp character
DESCRIPTION
The SET NONDISP command allows the user to change the 'character'
that is displayed for non-displaying commands when <SET ETMODE>
is OFF.
COMPATIBILITY
XEDIT: Compatible.
KEDIT: N/A
DEFAULT
#
SEE ALSO
<SET ETMODE>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Nondisp(CHARTYPE *params)
#else
short Nondisp(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Nondisp");
#endif
if (strlen((DEFCHAR *)params) != 1)
{
display_error(1,params,FALSE);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_INVALID_OPERAND);
}
NONDISPx = *params;
build_screen(current_screen);
display_screen(current_screen);
#ifdef THE_TRACE
trace_return();
#endif
return(RC_OK);
}
/*man-start*********************************************************************
COMMAND
set number - turn prefix numbers on or off
SYNTAX
[SET] NUMber ON|OFF
DESCRIPTION
The SET NUMBER command allows the user to toggle the display of
numbers in the <prefix area>.
COMPATIBILITY
XEDIT: Compatible.
KEDIT: Compatible.
DEFAULT
ON
SEE ALSO
<SET PREFIX>
STATUS
Complete.
**man-end**********************************************************************/
#ifdef HAVE_PROTO
short Number(CHARTYPE *params)
#else
short Number(params)
CHARTYPE *params;
#endif
/***********************************************************************/
{
/*--------------------------- local data ------------------------------*/
short rc=RC_OK;
/*--------------------------- processing ------------------------------*/
#ifdef THE_TRACE
trace_function("commset1.c:Number");
#endif
rc = execute_set_on_off(params,&CURRENT_VIEW->number);
if (rc == RC_OK)
{
build_screen(current_screen);
display_screen(current_screen);
}
#ifdef THE_TRACE
trace_return();
#endif
return(rc);
}
|