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
|
/*
* vile -- "vi like emacs"
*
* this used to be MicroEMACS, a public domain program written by
* dave g. conroy, further improved and modified by daniel m. lawrence.
*
* the original author of vile is paul fox. tom dickey and kevin
* buettner made huge contributions along the way, as did rick
* sladkey and other people (see all of the CHANGES files for
* details). vile is now principally maintained by tom dickey.
*
* previous versions of vile were limited to non-commercial use due to
* their inclusion of code from versions of MicroEMACS which were
* restricted in that way. in the current version of vile, every
* attempt has been made to ensure that this later code has been
* removed or rewritten, returning vile's original basis to freely
* distributable status. This version of vile is distributed under the
* terms of the GNU Public License (see COPYING).
*
* Copyright (c) 1992-2001 by Paul Fox and Thomas Dickey
*
*/
/*
* $Header: /usr/build/vile/vile/RCS/main.c,v 1.474 2002/02/18 00:43:32 tom Exp $
*/
#define realdef /* Make global definitions not external */
#include "estruct.h" /* global structures and defines */
#include "edef.h" /* global declarations */
#include "nevars.h"
#include "nefunc.h"
#include "nefsms.h"
#if OPT_LOCALE
#include <locale.h>
#include <ctype.h>
#endif
#if CC_NEWDOSCC
#include <io.h>
#if CC_DJGPP
#include <dpmi.h>
#include <go32.h>
#endif
#endif
#if SYS_VMS
#include <processes.h>
#endif
extern char *exec_pathname;
extern const char *const pathname[]; /* startup file path/name array */
/* if on a crippled system, try to survive: bigger stack */
#if SYS_MSDOS && CC_TURBO
unsigned _stklen = 24000U;
#endif
static int cmd_mouse_motion(const CMDFUNC * cfp);
static void get_executable_dir(void);
static void global_val_init(void);
static void loop(void);
static void make_startup_file(char *name);
static void siginit(void);
static void start_debug_log(int ac, char **av);
extern const int nametblsize;
/*--------------------------------------------------------------------------*/
/*
* Get the argument parameter. The 'param' points to the option flag. Set it
* to a 1-character string to force the next entry from argv[] to be fetched.
*/
static char *
get_argvalue(char *param, char *argv[], int *argcp)
{
if (!*(++param)) {
*argcp += 1;
param = argv[*argcp];
}
if (param == 0)
print_usage();
return param;
}
#define GetArgVal(param) get_argvalue(param, argv, &carg)
/*--------------------------------------------------------------------------*/
int
MainProgram(int argc, char *argv[])
{
int tt_opened;
BUFFER *bp;
int carg; /* current arg to scan */
char *vileinit = NULL; /* the startup file or VILEINIT var */
int startstat = TRUE; /* result of running startup */
BUFFER *havebp = NULL; /* initial buffer to read */
char *havename = NULL; /* name of first buffer in cmd line */
int gotoflag = FALSE; /* do we need to goto line at start? */
int gline = FALSE; /* if so, what line? */
int helpflag = FALSE; /* do we need help at start? */
REGEXVAL *search_exp = 0; /* initial search-pattern */
const char *msg;
#if SYS_VMS
char *init_descrip = NULL;
#endif
#ifdef VILE_OLE
int ole_register = FALSE;
#endif
#if OPT_TAGS
int didtag = FALSE; /* look up a tag to start? */
char *tname = NULL;
#endif
#ifdef DISP_NTCONS
int new_console = FALSE;
#endif
#if OPT_ENCRYPT
char startkey[NKEYLEN]; /* initial encryption key */
*startkey = EOS;
#endif
#if OPT_LOCALE
setlocale(LC_CTYPE, "");
#endif
#if OPT_NAMEBST
build_namebst(nametbl, 0, nametblsize - 1);
#endif
global_val_init(); /* global buffer values */
charinit(); /* character types -- we need these early */
winit(FALSE); /* command-line */
#if !SYS_UNIX
expand_wild_args(&argc, &argv);
#endif
prog_arg = argv[0]; /* this contains our only clue to exec-path */
#if SYS_MSDOS || SYS_OS2 || SYS_OS2_EMX || SYS_WINNT
if (strchr(pathleaf(prog_arg), '.') == 0) {
char *t = malloc(strlen(prog_arg) + 5);
lsprintf(t, "%s.exe", prog_arg);
prog_arg = t;
}
#endif
start_debug_log(argc, argv);
get_executable_dir();
if (strcmp(pathleaf(prog_arg), "view") == 0)
set_global_b_val(MDREADONLY, TRUE);
#if DISP_X11
if (argc != 2 || strcmp(argv[1], "-V") != 0) {
if (x_preparse_args(&argc, &argv) != TRUE)
startstat = FALSE;
}
#endif
/*
* Allow for I/O to the command-line before we initialize the screen
* driver.
*
* FIXME: we only know how to do this for displays that open the
* terminal in the same way for command-line and screen.
*/
siginit();
#if OPT_DUMBTERM
if (isatty(fileno(stdin))
&& isatty(fileno(stdout))) {
tt_opened = open_terminal(&dumb_term);
} else
#endif
tt_opened = open_terminal(&null_term);
/* Parse the passed in parameters */
for (carg = 1; carg < argc; ++carg) {
char *param = argv[carg];
/* evaluate switches */
if (*param == '-') {
++param;
#if DISP_IBMPC || DISP_BORLAND || SYS_VMS
/* if it's a digit, it's probably a screen
resolution */
if (isDigit(*param)) {
#if DISP_IBMPC || DISP_BORLAND
current_res_name = param;
#else
if (strcmp(param, "132") == 0)
init_descrip = "WIDE";
else if (strcmp(param, "80") == 0)
init_descrip = "NORMAL";
else
print_usage();
#endif
continue;
} else
#endif /* DISP_IBMPC */
switch (*param) {
#if DISP_NTCONS
case 'c':
if (strcmp(param, "console") == 0) {
/*
* start editor in a new console env if
* stdin is redirected. if this option
* is not set when stdin is redirected,
* console vile's mouse features are
* unavailable (bug).
*/
new_console = TRUE;
} else
print_usage();
break;
#endif /* DISP_NTCONS */
#if OPT_EVAL || OPT_DEBUGMACROS
case 'D':
tracemacros = TRUE;
break;
#endif
case 'e': /* -e for Edit file */
case 'E':
set_global_b_val(MDVIEW, FALSE);
break;
case 'g': /* -g for initial goto */
case 'G':
gotoflag = TRUE;
param = GetArgVal(param);
gline = atoi(param);
break;
case 'h': /* -h for initial help */
case 'H':
helpflag = TRUE;
break;
case 'i':
case 'I':
vileinit = "vileinit.rc";
/*
* If the user has no startup file, make a simple
* one that points to this one.
*/
if (cfg_locate(vileinit, LOCATE_SOURCE) != 0
&& cfg_locate(startup_file, LOCATE_SOURCE) == 0)
make_startup_file(vileinit);
break;
#if OPT_ENCRYPT
case 'k': /* -k<key> for code key */
case 'K':
param = GetArgVal(param);
vl_make_encrypt_key(startkey, param);
break;
#endif
#ifdef VILE_OLE
case 'O':
if (param[1] == 'r')
ole_register = TRUE;
else
print_usage();
break;
#endif
case 's': /* -s <pattern> */
case 'S':
dosearch:
param = GetArgVal(param);
search_exp = new_regexval(param,
global_b_val(MDMAGIC));
break;
#if OPT_TAGS
case 't': /* -t for initial tag lookup */
case 'T':
param = GetArgVal(param);
tname = param;
break;
#endif
case 'v': /* -v is view mode */
set_global_b_val(MDVIEW, TRUE);
break;
case 'R': /* -R is readonly mode */
set_global_b_val(MDREADONLY, TRUE);
break;
case 'V':
#if DISP_NTWIN
gui_version(prog_arg);
#else
(void) printf("%s\n", getversion());
#endif
tidy_exit(GOODEXIT);
/* NOTREACHED */
case '?':
/* FALLTHRU */
default: /* unknown switch */
print_usage();
}
} else if (*param == '+') { /* alternate form of -g */
if (*(++param) == '/') {
int len = strlen(param);
if (len > 0 && param[len - 1] == '/')
param[--len] = EOS;
if (len == 0)
print_usage();
goto dosearch;
}
gotoflag = TRUE;
gline = atoi(param);
} else if (*param == '@') {
vileinit = ++param;
} else if (*param != EOS) {
/* must be a filename */
#if OPT_ENCRYPT
cryptkey = (*startkey != EOS) ? startkey : 0;
#endif
/* set up a buffer for this file */
bp = getfile2bp(param, FALSE, TRUE);
if (bp) {
bp->b_flag |= BFARGS; /* treat this as an argument */
make_current(bp); /* pull it to the front */
if (!havebp) {
havebp = bp;
havename = param;
}
}
#if OPT_ENCRYPT
cryptkey = 0;
#endif
}
}
#ifdef VILE_OLE
if (ole_register) {
/*
* Now that all command line options have been successfully
* parsed, register the OLE automation server and exit.
*/
ntwinio_oleauto_reg();
/* NOT REACHED */
}
#endif
/* if stdin isn't a terminal, assume the user is trying to pipe a
* file into a buffer.
*/
#if SYS_UNIX || SYS_VMS || SYS_MSDOS || SYS_OS2 || SYS_WINNT
#if DISP_NTWIN
if (stdin_data_available())
#else
if (!isatty(fileno(stdin)))
#endif
{
#if !SYS_WINNT
#if !DISP_X11
#if SYS_UNIX
char *tty = "/dev/tty";
#else
FILE *in;
int fd;
#endif /* SYS_UNIX */
#endif /* DISP_X11 */
#endif /* !SYS_WINNT */
BUFFER *lastbp = havebp;
int nline = 0;
bp = bfind(STDIN_BufName, BFARGS);
make_current(bp); /* pull it to the front */
if (!havebp)
havebp = bp;
ffp = fdopen(dup(fileno(stdin)), "r");
#if !DISP_X11
# if SYS_UNIX
# if defined(HAVE_TTYNAME) && !defined(HAVE_DEV_TTY)
tty = ttyname(fileno(stderr));
# endif
/*
* Note: On Linux, the low-level close/dup operation
* doesn't work, since something hangs, apparently
* because substituting the file descriptor doesn't communicate
* properly up to the stdio routines.
*/
if ((freopen(tty, "r", stdin)) == 0
|| !isatty(fileno(stdin))) {
fprintf(stderr, "cannot open a terminal (%s)\n", tty);
tidy_exit(BADEXIT);
}
#else
# if SYS_WINNT
# if DISP_NTCONS
if (new_console) {
if (FreeConsole()) {
if (!AllocConsole()) {
fputs("unable to allocate new console\n", stderr);
tidy_exit(BADEXIT);
}
} else {
fputs("unable to release existing console\n", stderr);
tidy_exit(BADEXIT);
}
}
/*
* The editor must reopen the console, not fd 0. If the console
* is not reopened, the nt console I/O routines die immediately
* when attempting to fetch a STDIN handle.
*/
freopen("con", "r", stdin);
# endif
# else
# if SYS_VMS
fd = open("tt:", O_RDONLY, S_IREAD); /* or sys$command */
# else /* e.g., DOS-based systems */
fd = fileno(stderr); /* this normally cannot be redirected */
# endif
if ((fd >= 0)
&& (close(0) >= 0)
&& (fd = dup(fd)) == 0
&& (in = fdopen(fd, "r")) != 0)
*stdin = *in;
# endif /* SYS_WINNT */
# endif /* SYS_UNIX */
#endif /* DISP_X11 */
#if OPT_ENCRYPT
if (*startkey != EOS) {
strcpy(bp->b_cryptkey, startkey);
make_local_b_val(bp, MDCRYPT);
set_b_val(bp, MDCRYPT, TRUE);
}
#endif
(void) slowreadf(bp, &nline);
set_rdonly(bp, bp->b_fname, MDREADONLY);
(void) ffclose();
if (is_empty_buf(bp)) {
(void) zotbuf(bp);
curbp = havebp = lastbp;
}
#if OPT_FINDERR
else {
set_febuff(bp->b_bname);
}
#endif
}
#endif
if (!tt_opened)
siginit();
(void) open_terminal((TERM *) 0);
term.kopen(); /* open the keyboard */
term.rev(FALSE);
/*
* The terminal driver sets default colors and $palette during the
* open_terminal function. Save that information as the 'default'
* color scheme. We have to do this before reading .vilerc
*/
#if OPT_COLOR_SCHEMES
init_scheme();
#endif
if (vtinit() != TRUE) /* allocate display memory */
tidy_exit(BADEXIT);
winit(TRUE); /* windows */
/* this comes out to 70 on an 80 (or greater) column display */
{
register int fill;
fill = (7 * term.cols) / 8; /* must be done after vtinit() */
if (fill > 70)
fill = 70;
set_global_b_val(VAL_FILL, fill);
}
/* Create an unnamed buffer, so that the initialization-file will have
* something to work on. We don't pull in any of the command-line
* filenames yet, because some of the initialization stuff has to be
* triggered by switching buffers after reading the .vilerc file.
*
* If nothing modifies it, this buffer will be automatically removed
* when we switch to the first file (i.e., havebp), because it is
* empty (and presumably isn't named the same as an actual file).
*/
bp = bfind(UNNAMED_BufName, 0);
bp->b_active = TRUE;
#if OPT_DOSFILES
/* an empty non-existent buffer defaults to line-style
favored by the OS */
make_local_b_val(bp, MDDOS);
set_b_val(bp, MDDOS, CRLF_LINES);
#endif
fix_cmode(bp, FALSE);
swbuffer(bp);
/* run the specified, or the system startup file here.
if vileinit is set, it's the name of the user's
command-line startup file, i.e. 'vile @mycmds'
*/
if (vileinit && *vileinit) {
if (do_source(vileinit, 1, FALSE) != TRUE) {
startstat = FALSE;
goto begin;
}
free(startup_file);
startup_file = strmalloc(vileinit);
} else {
/* else vileinit is the contents of their VILEINIT variable */
vileinit = getenv("VILEINIT");
if (vileinit != NULL) { /* set... */
BUFFER *vbp, *obp;
UINT oflags = 0;
if (*vileinit) { /* ...and not null */
/* mark as modified, to prevent
* undispbuff() from clobbering */
obp = curbp;
if (obp) {
oflags = obp->b_flag;
b_set_changed(obp);
}
if ((vbp = bfind(VILEINIT_BufName, BFEXEC)) == 0)
tidy_exit(BADEXIT);
/* don't want swbuffer to try to read it */
vbp->b_active = TRUE;
swbuffer(vbp);
b_set_scratch(vbp);
bprintf("%s", vileinit);
/* if we leave it scratch, swbuffer(obp)
may zot it, and we may zot it again */
b_clr_scratch(vbp);
set_rdonly(vbp, vbp->b_fname, MDVIEW);
/* go execute it! */
if (dobuf(vbp, 1) != TRUE) {
startstat = FALSE;
goto begin;
}
if (obp) {
swbuffer(obp);
obp->b_flag = oflags;
}
/* remove the now unneeded buffer */
b_set_scratch(vbp); /* make sure it will go */
(void) zotbuf(vbp);
}
} else { /* find and run .vilerc */
if (do_source(startup_file, 1, TRUE) != TRUE) {
startstat = FALSE;
goto begin;
}
}
}
/*
* before reading, double-check, since a startup-script may
* have removed the first buffer.
*/
if (havebp && find_bp(havebp)) {
if (find_bp(bp) && is_empty_buf(bp) && !b_is_changed(bp))
b_set_scratch(bp); /* remove the unnamed-buffer */
if (swbuffer(havebp) == TRUE) {
#if OPT_MAJORMODE && OPT_HOOKS
/*
* Partial fix in case we edit .vilerc (vile.rc) or
* filters.rc, or related files that initialize syntax
* highlighting.
*/
VALARGS args;
infer_majormode(curbp);
if (find_mode(curbp, "vilemode", FALSE, &args) == TRUE)
run_readhook();
#else
;
#endif
} else {
startstat = FALSE;
}
if (havename)
set_last_file_edited(havename);
if (bp2any_wp(bp) && bp2any_wp(havebp))
zotwp(bp);
}
#if OPT_TAGS
else if (tname) {
cmdlinetag(tname);
didtag = TRUE;
}
#endif
msg = s_NULL;
if (helpflag) {
if (vl_help(TRUE, 1) != TRUE) {
msg =
"[Problem with help information. Type \":quit\" to exit if you wish]";
}
} else {
msg = "[Use ^A-h, ^X-h, or :help to get help]";
}
/* honor command-line actions */
if (gotoflag + (search_exp != 0)
#if OPT_TAGS
+ (tname ? 1 : 0)
#endif
> 1) {
#if OPT_TAGS
msg = "[Search, goto and tag are used one at a time]";
#else
msg = "[Cannot search and goto at the same time]";
#endif
} else if (gotoflag) {
if (gotoline(gline != 0, gline) == FALSE) {
msg = "[Not that many lines in buffer]";
(void) gotoeob(FALSE, 1);
}
} else if (search_exp) {
FreeIfNeeded(gregexp);
(void) strncpy0(searchpat, search_exp->pat, NPAT);
gregexp = search_exp->reg;
(void) forwhunt(FALSE, 0);
#if OPT_TAGS
} else if (tname && !didtag) {
cmdlinetag(tname);
#endif
}
#if OPT_POPUP_MSGS
purge_msgs();
#endif
if (startstat == TRUE) /* else there's probably an error message */
mlforce(msg);
begin:
#if SYS_VMS
if (init_descrip) {
/*
* All terminal inits are complete. Switch to new screen
* resolution specified from command line.
*/
(void) term.setdescrip(init_descrip);
}
#endif
(void) update(FALSE);
#if DISP_NTWIN
/* Draw winvile's main window, for the very first time. */
winvile_start();
#endif
#if OPT_POPUP_MSGS
if (global_g_val(GMDPOPUP_MSGS) && (startstat != TRUE)) {
bp = bfind(MESSAGES_BufName, BFSCRTCH);
bsizes(bp);
TRACE(("Checking size of popup messages: %d\n", bp->b_linecount));
if (bp->b_linecount > 1) {
int save = global_g_val(GMDPOPUP_MSGS);
set_global_g_val(GMDPOPUP_MSGS, TRUE);
popup_msgs();
tb_init(&mlsave, EOS);
set_global_g_val(GMDPOPUP_MSGS, save);
}
}
if (global_g_val(GMDPOPUP_MSGS) == -TRUE)
set_global_g_val(GMDPOPUP_MSGS, FALSE);
#endif
#ifdef GMDCD_ON_OPEN
/* reset a one-shot, e.g., for winvile's drag/drop code */
if (global_g_val(GMDCD_ON_OPEN) < 0) {
set_directory_from_file(curbp);
set_global_g_val(GMDCD_ON_OPEN, FALSE);
}
#endif
/* We won't always be able to show messages before the screen is
* initialized. Give it one last chance.
*/
if ((startstat != TRUE) && tb_length(mlsave))
mlforce("%*S", tb_length(mlsave), tb_values(mlsave));
/* process commands */
loop();
/* NOTREACHED */
return BADEXIT;
}
/* this is nothing but the main command loop */
static void
loop(void)
{
const CMDFUNC *cfp = NULL;
const CMDFUNC *last_cfp = NULL;
const CMDFUNC *last_failed_motion_cfp = NULL;
int s, c, f, n;
for_ever {
hst_reset();
/* vi doesn't let the cursor rest on the newline itself. This
takes care of that. */
/* if we're inserting, or will be inserting again, then
suppress. this happens if we're using arrow keys
during insert */
if (is_at_end_of_line(DOT) && (DOT.o > w_left_margin(curwp)) &&
!insertmode && !cmd_mouse_motion(cfp))
backchar(TRUE, 1);
/* same goes for end-of-file -- I'm actually not sure if
this can ever happen, but I _am_ sure that it's
a lot safer not to let it... */
if (is_header_line(DOT, curbp) && !is_empty_buf(curbp))
(void) backline(TRUE, 1);
/* start recording for '.' command */
dotcmdbegin();
/* bring the screen up to date */
s = update(FALSE);
/* get a user command */
kbd_mac_check();
c = kbd_seq();
/* reset the contents of the command/status line */
if (kbd_length() > 0) {
mlerase();
if (s != SORTOFTRUE) /* did nothing due to typeahead */
(void) update(FALSE);
}
f = FALSE;
n = 1;
#if LATERMAYBE
/* insertion is too complicated to pop in
and out of so glibly... -pgf */
#ifdef insertmode
/* FIXME: Paul and Tom should check this over. */
if (insertmode != FALSE) {
if (!kbd_replaying(FALSE))
mayneedundo();
unkeystroke(c);
insert(f, n);
dotcmdfinish();
continue;
}
#endif /* insertmode */
#endif /* LATERMAYBE */
do_repeats(&c, &f, &n);
kregflag = 0;
/* flag the first time through for some commands -- e.g. subst
must know to not prompt for strings again, and pregion
must only restart the p-lines buffer once for each
command. */
calledbefore = FALSE;
/* convert key code to a function pointer */
cfp = DefaultKeyBinding(c);
if (cfp == &f_dotcmdplay &&
(last_cfp == &f_undo ||
last_cfp == &f_forwredo ||
last_cfp == &f_backundo ||
last_cfp == &f_inf_undo))
cfp = &f_inf_undo;
s = execute(cfp, f, n);
last_cfp = cfp;
/* stop recording for '.' command */
dotcmdfinish();
/* If this was a motion that failed, sound the alarm (like vi),
* but limit it to once, in case the user is holding down the
* autorepeat-key.
*/
if ((cfp != NULL)
&& ((cfp->c_flags & MOTION) != 0)
&& (s == FALSE)) {
if (cfp != last_failed_motion_cfp ||
global_g_val(GMDMULTIBEEP)) {
last_failed_motion_cfp = cfp;
kbd_alarm();
}
} else {
last_failed_motion_cfp = NULL; /* avoid noise! */
}
attrib_matches();
regionshape = EXACT;
/*
* Some perl scripts may not reset this flag.
*/
vile_is_busy = FALSE;
}
}
/* attempt to locate the executable that contains our code.
* leave its directory name in exec_pathname and shorten prog_arg
* to the simple filename (no path).
*/
static void
get_executable_dir(void)
{
#if SYS_UNIX || SYS_VMS
char temp[NFILEN];
char *s, *t;
if (last_slash(prog_arg) == NULL) {
/* If there are no slashes, we can guess where we came from,
*/
if ((s = cfg_locate(prog_arg, FL_PATH | FL_EXECABLE)) != 0)
s = strmalloc(s);
} else {
/* if there _are_ slashes, then argv[0] was either
* absolute or relative. lengthen_path figures it out.
*/
s = strmalloc(lengthen_path(strcpy(temp, prog_arg)));
}
if (s == 0)
return;
t = pathleaf(s);
if (t != s) {
/*
* On a unix host, 't' points past slash. On a VMS host,
* 't' points to first char after the last ':' or ']' in
* the exe's path.
*/
prog_arg = strmalloc(t);
*t = EOS;
exec_pathname = strmalloc(lengthen_path(strcpy(temp, s)));
}
free(s);
#endif
}
void
tidy_exit(int code)
{
#if OPT_PERL
perl_exit();
#endif
#if DISP_NTWIN
winvile_cleanup();
#endif
#if DISP_X11
term.close(); /* need this if $xshell left subprocesses */
#endif
ttclean(TRUE);
#if SYS_UNIX
setup_handler(SIGHUP, SIG_IGN);
#endif
ExitProgram(code);
}
#ifndef strmalloc
char *
strmalloc(const char *s)
{
register char *ns = castalloc(char, strlen(s) + 1);
if (ns != 0)
(void) strcpy(ns, s);
return ns;
}
#endif
int
no_memory(const char *s)
{
mlforce("[%s] %s", out_of_mem, s);
return FALSE;
}
#define setIntValue(vp, value) vp->v.i = value
#define setPatValue(vp, value) vp->v.r = new_regexval(value, TRUE)
#define setTxtValue(vp, value) vp->v.p = strmalloc(value)
#define setINT(name,value) case name: setIntValue(d,value); break
#define setPAT(name,value) case name: setPatValue(d,value); break;
#define setTXT(name,value) case name: setTxtValue(d,value); break
#define DFT_FENCE_BEGIN "/\\*"
#define DFT_FENCE_END "\\*/"
#define DFT_FENCE_IF "^\\s*#\\s*if"
#define DFT_FENCE_ELIF "^\\s*#\\s*elif\\>"
#define DFT_FENCE_ELSE "^\\s*#\\s*else\\>"
#define DFT_FENCE_FI "^\\s*#\\s*endif\\>"
/* where do paragraphs start? */
#define DFT_PARAGRAPHS "^\\.[ILPQ]P\\>\\|^\\.P\\>\\|\
^\\.LI\\>\\|^\\.[plinb]p\\>\\|^\\.\\?\\s*$"
/* where do comments start and end */
#define DFT_COMMENTS "^\\s*/\\?\\(\\s*[#*>/]\\)\\+/\\?\\s*$"
#define DFT_CMT_PREFIX "^\\s*\\(\\(\\s*[#*>]\\)\\|\\(///*\\)\\)\\+"
/* where do sections start? */
#define DFT_SECTIONS "^[{\014]\\|^\\.[NS]H\\>\\|^\\.HU\\?\\>\\|\
^\\.[us]h\\>\\|^+c\\>"
/* where do sentences start? */
#define DFT_SENTENCES "[.!?][])\"']* \\?$\\|[.!?][])\"']* \\|\
^\\.[ILPQ]P\\>\\|^\\.P\\>\\|^\\.LI\\>\\|^\\.[plinb]p\\>\\|^\\.\\?\\s*$"
#if SYS_MSDOS /* actually, 16-bit ints */
#define DFT_TIMEOUTUSERVAL 30000
#else
#define DFT_TIMEOUTUSERVAL 60000
#endif
#if OPT_MSDOS_PATH
#define DFT_BACKUPSTYLE ".bak"
#else
#define DFT_BACKUPSTYLE "off"
#endif
#if SYS_VMS
#define DFT_CSUFFIX "\\.\\(\\([CHIS]\\)\\|CC\\|CXX\\|HXX\\)\\(;[0-9]*\\)\\?$"
#endif
#if SYS_MSDOS
#define DFT_CSUFFIX "\\.\\(\\([chis]\\)\\|cc\\|cpp\\|cxx\\|hxx\\)$"
#endif
#ifndef DFT_CSUFFIX /* UNIX or OS2/HPFS (mixed-case names) */
#define DFT_CSUFFIX "\\.\\(\\([Cchis]\\)\\|CC\\|cc\\|cpp\\|cxx\\|hxx\\|scm\\)$"
#endif
/*
* For the given class/mode, initialize the VAL struct to the default value
* for that mode.
*/
void
init_mode_value(struct VAL *d, MODECLASS v_class, int v_which)
{
static const char expand_chars[] =
{EXPC_THIS, EXPC_THAT, EXPC_SHELL, EXPC_TOKEN, EXPC_RPAT, 0};
switch (v_class) {
case UNI_MODE:
switch (v_which) {
setINT(GMDABUFF, TRUE); /* auto-buffer */
setINT(GMDALTTABPOS, FALSE); /* emacs-style tab positioning */
setINT(GMDERRORBELLS, TRUE); /* alarms are noticeable */
setINT(GMDEXPAND_PATH, FALSE);
setINT(GMDIMPLYBUFF, FALSE); /* imply-buffer */
setINT(GMDMULTIBEEP, TRUE); /* multiple beeps for multiple motion failures */
setINT(GMDREMAP, TRUE); /* allow remapping by default */
setINT(GMDRONLYRONLY, FALSE); /* Set readonly-on-readonly */
setINT(GMDRONLYVIEW, FALSE); /* Set view-on-readonly */
setINT(GMDSMOOTH_SCROLL, FALSE);
setINT(GMDSPACESENT, TRUE); /* add two spaces after each sentence */
setINT(GMDWARNRENAME, TRUE); /* warn before renaming a buffer */
setINT(GMDWARNREREAD, TRUE); /* warn before rereading a buffer */
setINT(GMDWARNUNREAD, TRUE); /* warn if quitting without looking at all buffers */
setINT(GVAL_MAPLENGTH, 1200);
setINT(GVAL_MINI_HILITE, VAREV); /* reverse hilite */
setINT(GVAL_PRINT_HIGH, 0);
setINT(GVAL_PRINT_LOW, 0);
setINT(GVAL_REPORT, 5); /* report changes */
setINT(GVAL_TIMEOUTUSERVAL, 30000); /* how long to wait for user seq */
setINT(GVAL_TIMEOUTVAL, 500); /* how long to wait for ESC seq */
setTXT(GVAL_EXPAND_CHARS, expand_chars);
#ifdef GMDALL_VERSIONS
setINT(GMDALL_VERSIONS, FALSE);
#endif
#ifdef GMDCD_ON_OPEN
setINT(GMDCD_ON_OPEN, cd_on_open);
#endif
#ifdef GMDDIRC
setINT(GMDDIRC, FALSE); /* directory-completion */
#endif
#ifdef GMDFLASH
setINT(GMDFLASH, FALSE); /* beeps beep by default */
#endif
#ifdef FORCE_CONSOLE_RESURRECTED
# ifdef GMDFORCE_CONSOLE /* deprecated (unused) */
setINT(GMDFORCE_CONSOLE, is_win95());
# endif
#endif
#ifdef GMDGLOB
setINT(GMDGLOB, TRUE);
#endif
#ifdef GMDHEAPSIZE
setINT(GMDHEAPSIZE, TRUE); /* show heap usage */
#endif
#ifdef GMDHISTORY
setINT(GMDHISTORY, TRUE);
#endif
#ifdef GMDPOPUP_CHOICES
setINT(GMDPOPUP_CHOICES, TRUE);
#endif
#ifdef GMDPOPUPMENU
setINT(GMDPOPUPMENU, TRUE); /* enable popup menu */
#endif
#ifdef GMDPOPUP_MSGS
setINT(GMDPOPUP_MSGS, -TRUE); /* popup-msgs */
#endif
#ifdef GMDRESOLVE_LINKS
setINT(GMDRESOLVE_LINKS, FALSE); /* set noresolve-links by default in case we've got NFS problems */
#endif
#ifdef GMDSWAPTITLE
setINT(GMDSWAPTITLE, FALSE);
#endif
#ifdef GMDUSEFILELOCK
setINT(GMDUSEFILELOCK, FALSE); /* Use filelocks */
#endif
#ifdef GMDW32PIPES
setINT(GMDW32PIPES, is_winnt()); /* use native pipes? */
#endif
#ifdef GMDWARNBLANKS
setINT(GMDWARNBLANKS, FALSE); /* if filenames have blanks */
#endif
#ifdef GMDWORKING
setINT(GMDWORKING, TRUE); /* we put up "working..." */
#endif
#ifdef GMDXTERM_MOUSE
setINT(GMDXTERM_MOUSE, FALSE); /* mouse-clicking */
#endif
#ifdef GVAL_BACKUPSTYLE
setTXT(GVAL_BACKUPSTYLE, DFT_BACKUPSTYLE);
#endif
#ifdef GVAL_BCOLOR
setINT(GVAL_BCOLOR, C_BLACK); /* background color */
#endif
#ifdef GVAL_CCOLOR
setINT(GVAL_CCOLOR, ENUM_UNKNOWN); /* cursor color */
#endif
#ifdef GVAL_CSUFFIXES
setPAT(GVAL_CSUFFIXES, DFT_CSUFFIX);
#endif
#ifdef GVAL_FCOLOR
setINT(GVAL_FCOLOR, C_WHITE); /* foreground color */
#endif
#ifdef GVAL_FINDCFG
setTXT(GVAL_FINDCFG, "");
#endif
#ifdef GVAL_GLOB
setTXT(GVAL_GLOB, "!echo %s");
#endif
#ifdef GVAL_ICURSOR
setTXT(GVAL_ICURSOR, "0"); /* no insertion cursor */
#endif
#ifdef GVAL_MCOLOR
setINT(GVAL_MCOLOR, VAREV); /* show in reverse */
#endif
#ifdef GVAL_POPUP_CHOICES
setINT(GVAL_POPUP_CHOICES, POPUP_CHOICES_DELAYED);
#endif
#ifdef GVAL_REDIRECT_KEYS
setTXT(GVAL_REDIRECT_KEYS,
"F5::S,F10::S,F11::S,F7::F,F5:C:,F9::Y");
#endif
#ifdef GVAL_SCROLLPAUSE
setINT(GVAL_SCROLLPAUSE, 0);
#endif
#ifdef GVAL_VTFLASH
setINT(GVAL_VTFLASH, VTFLASH_OFF); /* hardwired flash off */
#endif
default:
setIntValue(d, 0);
break;
}
break;
case BUF_MODE:
switch (v_which) {
setINT(MDAIND, FALSE); /* auto-indent */
setINT(MDASAVE, FALSE); /* auto-save */
setINT(MDBACKLIMIT, TRUE); /* limit backspacing to insert point */
setINT(MDCINDENT, FALSE); /* C-style indent */
setINT(MDDOS, CRLF_LINES); /* on by default on DOS, off others */
setINT(MDIGNCASE, FALSE); /* exact matches */
setINT(MDMAGIC, TRUE); /* magic searches */
setINT(MDMETAINSBIND, TRUE); /* honor meta-bindings when in insert mode */
setINT(MDNEWLINE, TRUE); /* trailing-newline */
setINT(MDREADONLY, FALSE); /* readonly */
setINT(MDSHOWMAT, FALSE); /* show-match */
setINT(MDSHOWMODE, TRUE); /* show-mode */
setINT(MDSWRAP, TRUE); /* scan wrap */
setINT(MDTABINSERT, TRUE); /* allow tab insertion */
setINT(MDTAGSRELTIV, FALSE); /* path relative tag lookups */
setINT(MDTERSE, FALSE); /* terse messaging */
setINT(MDUNDOABLE, TRUE); /* undo stack active */
setINT(MDUNDO_DOS_TRIM, FALSE); /* undo dos trimming */
setINT(MDVIEW, FALSE); /* view-only */
setINT(MDWRAP, FALSE); /* wrap */
setINT(VAL_ASAVECNT, 256); /* autosave count */
setINT(VAL_RECORD_SEP, RS_DEFAULT);
setINT(VAL_SHOW_FORMAT, SF_FOREIGN);
setINT(VAL_SWIDTH, 8); /* shiftwidth */
setINT(VAL_TAB, 8); /* tab stop */
setINT(VAL_TAGLEN, 0); /* significant tag length */
setINT(VAL_UNDOLIM, 10); /* undo limit */
setPAT(VAL_CMT_PREFIX, DFT_CMT_PREFIX);
setPAT(VAL_COMMENTS, DFT_COMMENTS);
setPAT(VAL_FENCE_BEGIN, DFT_FENCE_BEGIN);
setPAT(VAL_FENCE_ELIF, DFT_FENCE_ELIF);
setPAT(VAL_FENCE_ELSE, DFT_FENCE_ELSE);
setPAT(VAL_FENCE_END, DFT_FENCE_END);
setPAT(VAL_FENCE_FI, DFT_FENCE_FI);
setPAT(VAL_FENCE_IF, DFT_FENCE_IF);
setPAT(VAL_PARAGRAPHS, DFT_PARAGRAPHS);
setPAT(VAL_SECTIONS, DFT_SECTIONS);
setPAT(VAL_SENTENCES, DFT_SENTENCES);
setTXT(VAL_FENCES, "{}()[]"); /* fences */
setTXT(VAL_TAGS, "tags"); /* tags filename */
#ifdef MDCHK_MODTIME
setINT(MDCHK_MODTIME, FALSE); /* modtime-check */
#endif
#ifdef MDCMOD
setINT(MDCMOD, FALSE); /* C mode */
#endif
#ifdef MDCRYPT
setINT(MDCRYPT, FALSE); /* crypt */
#endif
#ifdef MDHILITE
setINT(MDHILITE, TRUE); /* syntax-highlighting */
#endif
#ifdef MDLOCKED
setINT(MDLOCKED, FALSE); /* LOCKED */
#endif
#ifdef MDUPBUFF
setINT(MDUPBUFF, TRUE); /* animated */
#endif
#ifdef VAL_AUTOCOLOR
setINT(VAL_AUTOCOLOR, 0); /* auto syntax coloring timeout */
#endif
#ifdef VAL_HILITEMATCH
setINT(VAL_HILITEMATCH, 0); /* no hilite */
#endif
#ifdef VAL_FENCE_LIMIT
setINT(VAL_FENCE_LIMIT, 10); /* fences iteration timeout */
#endif
#ifdef VAL_LOCKER
setTXT(VAL_LOCKER, ""); /* Name locker */
#endif
#ifdef VAL_RECORD_FORMAT
setINT(VAL_RECORD_FORMAT, FAB$C_UDF);
#endif
#ifdef VAL_RECORD_LENGTH
setINT(VAL_RECORD_LENGTH, 0);
#endif
#ifdef VAL_C_SWIDTH
setINT(VAL_C_SWIDTH, 8); /* C file shiftwidth */
#endif
#ifdef VAL_C_TAB
setINT(VAL_C_TAB, 8); /* C file tab stop */
#endif
default:
setIntValue(d, 0);
break;
}
break;
case WIN_MODE:
switch (v_which) {
setINT(WMDHORSCROLL, TRUE); /* horizontal scrolling */
setINT(WMDLIST, FALSE); /* list-mode */
setINT(WMDNUMBER, FALSE); /* number */
setINT(WVAL_SIDEWAYS, 0); /* list-mode */
#ifdef WMDLINEWRAP
setINT(WMDLINEWRAP, FALSE); /* line-wrap */
#endif
#ifdef WMDTERSELECT
setINT(WMDTERSELECT, TRUE); /* terse selections */
#endif
default:
setIntValue(d, 0);
break;
}
break;
default:
setIntValue(d, 0);
break;
}
}
/*
* The $filename-expr expression is used with a trailing '*' to repeat
* the last field. Otherwise it is complete.
*
* Limitations - the expressions are used in the error finder, which
* has to choose the first pattern which matches a filename embedded
* in other text. UNIX-style pathnames could have embedded blanks,
* but it's not common. It is common on win32, but is not often a
* problem with grep, etc., since the full pathname of the file is not
* usually given.
*/
#if OPT_MSDOS_PATH
#define DFT_FILENAME_EXPR "\\([a-zA-Z]:\\)\\?[^ \t\":*?<>|]"
#else
#if OPT_VMS_PATH
#define DFT_FILENAME_EXPR "[-/\\w.;\\[\\]<>$:]"
#else /* UNIX-style */
#define DFT_FILENAME_EXPR "[-/\\w.~]"
#endif
#endif
#define DFT_HELP_FILE "vile.hlp"
#define DFT_MENU_FILE "vilemenu.rc"
#ifdef VILE_LIBDIR_PATH
#define DFT_LIBDIR_PATH VILE_LIBDIR_PATH
#else
#define DFT_LIBDIR_PATH ""
#endif
#if SYS_MSDOS || SYS_OS2 || SYS_WINNT || SYS_VMS
#define DFT_STARTUP_FILE "vile.rc"
#else /* SYS_UNIX */
#define DFT_STARTUP_FILE ".vilerc"
#endif
#define DFT_MLFORMAT \
"%-%i%- %b %m:: :%f:is : :%=%F: : :%l:(:,:%c::) :%p::% :%S%-%-%|"
#define DFT_POSFORMAT \
"Line %{$curline}d of %{$blines}d,\
Col %{$curcol}d of %{$lcols}d,\
Char %{$curchar}d of %{$bchars}d\
(%P%%) char is 0x%{$char}x or 0%{$char}o"
static char *
default_help_file(void)
{
char *result;
if ((result = getenv("VILE_HELP_FILE")) == 0)
result = DFT_HELP_FILE;
return result;
}
static char *
default_libdir_path(void)
{
char *result;
if ((result = getenv("VILE_LIBDIR_PATH")) == 0)
result = DFT_LIBDIR_PATH;
return result;
}
#if OPT_MENUS
static char *
default_menu_file(void)
{
static char default_menu[] = DFT_MENU_FILE;
char temp[NSTRING];
char *menurc = getenv("VILE_MENU");
if (menurc == NULL || *menurc == EOS) {
sprintf(temp, "%.*s_MENU", (int) (sizeof(temp) - 6), prognam);
mkupper(temp);
menurc = getenv(temp);
if (menurc == NULL || *menurc == EOS) {
menurc = default_menu;
}
}
return menurc;
}
#endif
static char *
default_startup_file(void)
{
char *result;
if ((result = getenv("VILE_STARTUP_FILE")) == 0)
result = DFT_STARTUP_FILE;
return result;
}
static char *
default_startup_path(void)
{
char *result = 0;
char *s;
if ((s = getenv("VILE_STARTUP_PATH")) != 0) {
append_to_path_list(&result, s);
} else {
#if SYS_MSDOS || SYS_OS2 || SYS_WINNT
append_to_path_list(&result, "/sys/public");
append_to_path_list(&result, "/usr/bin");
append_to_path_list(&result, "/bin");
append_to_path_list(&result, "/");
#else
#if SYS_VMS
append_to_path_list(&result, "sys$login");
append_to_path_list(&result, "sys$sysdevice:[vmstools]");
append_to_path_list(&result, "sys$library");
#else /* SYS_UNIX */
#if defined(VILE_STARTUP_PATH)
append_to_path_list(&result, VILE_STARTUP_PATH);
#else
append_to_path_list(&result, "/usr/local/lib");
append_to_path_list(&result, "/usr/local");
append_to_path_list(&result, "/usr/lib");
#endif /* VILE_STARTUP_PATH */
#endif /* SYS_VMS... */
#endif /* SYS_MSDOS... */
}
#ifdef HELP_LOC
append_to_path_list(&result, HELP_LOC);
#endif
return result;
}
#if OPT_EVAL
/*
* Returns a string representing the default/initial value of the given
* state-variable.
*/
char *
init_state_value(int which)
{
char *result = 0;
int allocated = FALSE;
switch (which) {
#if OPT_FINDERR
case VAR_FILENAME_EXPR:
result = DFT_FILENAME_EXPR;
break;
#endif
case VAR_HELPFILE:
result = default_help_file();
break;
case VAR_LIBDIR_PATH:
result = default_libdir_path();
break;
#if OPT_MENUS
case VAR_MENU_FILE:
result = default_menu_file();
break;
#endif
#if OPT_MLFORMAT
case VAR_MLFORMAT:
result = DFT_MLFORMAT;
break;
#endif
#if OPT_POSFORMAT
case VAR_POSFORMAT:
result = DFT_POSFORMAT;
break;
#endif
case VAR_PROMPT:
result = ": ";
break;
case VAR_REPLACE:
result = "";
break;
case VAR_STARTUP_FILE:
result = default_startup_file();
break;
case VAR_STARTUP_PATH:
result = default_startup_path();
allocated = TRUE;
break;
}
return (result != 0 && !allocated) ? strmalloc(result) : result;
}
#endif /* OPT_EVAL */
#if OPT_REBIND
/*
* Cache the length of kbindtbl[].
*/
static size_t
len_kbindtbl(void)
{
static size_t result = 0;
if (result == 0)
while (kbindtbl[result].k_cmd != 0)
result++;
return result + 1;
}
/*
* At startup, construct copies of kbindtbl[] for the alternate bindings, so
* we can have separate bindings of special keys from the default bindings.
*/
static void
copy_kbindtbl(BINDINGS * dst)
{
KBIND *result;
size_t len = len_kbindtbl();
if (dst->kb_special == kbindtbl) {
if ((result = typecallocn(KBIND, len)) == 0) {
(void) no_memory("copy_kbindtbl");
return;
}
dst->kb_special = dst->kb_extra = result;
} else {
result = dst->kb_special;
}
while (len-- != 0) {
result[len] = kbindtbl[len];
}
}
#endif
#if OPT_FILTER && defined(WIN32)
extern void flt_array(void);
#endif
static void
global_val_init(void)
{
int i;
#if OPT_FILTER && defined(WIN32)
flt_array();
#endif
/* set up so the global value pointers point at the global
values. we never actually use the global pointers
directly, but when buffers get a copy of the
global_b_values structure, the pointers will still point
back at the global values, which is what we want */
for (i = 0; i <= NUM_G_VALUES; i++) {
make_local_val(global_g_values.gv, i);
init_mode_value(&global_g_values.gv[i], UNI_MODE, i);
}
for (i = 0; i <= NUM_B_VALUES; i++) {
make_local_val(global_b_values.bv, i);
init_mode_value(&global_b_values.bv[i], BUF_MODE, i);
}
for (i = 0; i <= NUM_W_VALUES; i++) {
make_local_val(global_w_values.wv, i);
init_mode_value(&global_w_values.wv[i], WIN_MODE, i);
}
#if OPT_MAJORMODE
/*
* Built-in majormodes (see 'modetbl')
*/
alloc_mode("c", TRUE);
alloc_mode("vile", TRUE);
set_submode_val("c", VAL_SWIDTH, 8); /* C file shiftwidth */
set_submode_val("c", VAL_TAB, 8); /* C file tab stop */
set_submode_val("c", MDCINDENT, TRUE); /* C-style indent */
set_majormode_rexp("c", MVAL_SUFFIXES, DFT_CSUFFIX);
#endif
#if OPT_EVAL
/*
* Note that not all state variables can be initialized explicitly, many
* are either read-only, or have too many side-effects to set blindly.
*/
for (i = 0; i < Num_StateVars; i++) {
char *s;
if ((s = init_state_value(i)) != 0) {
set_state_variable(statevars[i], s);
free(s);
}
}
#else
helpfile = default_help_file();
startup_file = default_startup_file();
startup_path = default_startup_path();
libdir_path = default_libdir_path();
#if OPT_MENUS
menu_file = default_menu_file();
#endif
#if OPT_MLFORMAT
modeline_format = strmalloc(DFT_MLFORMAT);
#endif
#if OPT_POSFORMAT
position_format = strmalloc(DFT_POSFORMAT);
#endif
#if OPT_FINDERR
filename_expr = strmalloc(DFT_FILENAME_EXPR);
#endif
#endif
/*
* Initialize the "normal" bindings for insert and command mode to
* the motion-commands that are safe if insert-exec mode is enabled.
*/
#if OPT_REBIND
copy_kbindtbl(&sel_bindings);
copy_kbindtbl(&ins_bindings);
copy_kbindtbl(&cmd_bindings);
#endif
for (i = 0; i < N_chars; i++) {
const CMDFUNC *cfp;
sel_bindings.kb_normal[i] = dft_bindings.kb_normal[i];
ins_bindings.kb_normal[i] = 0;
cmd_bindings.kb_normal[i] = dft_bindings.kb_normal[i];
if (i < 32
&& (cfp = dft_bindings.kb_normal[i]) != 0
&& (cfp->c_flags & (GOAL | MOTION)) != 0) {
ins_bindings.kb_normal[i] =
cmd_bindings.kb_normal[i] = cfp;
}
}
}
#if SYS_UNIX || SYS_MSDOS || SYS_OS2 || SYS_WINNT || SYS_VMS
/* ARGSUSED */
SIGT
catchintr(int ACTUAL_SIG_ARGS)
{
am_interrupted = TRUE;
#if SYS_MSDOS || SYS_OS2 || SYS_WINNT
sgarbf = TRUE; /* there's probably a ^C on the screen. */
#endif
setup_handler(SIGINT, catchintr);
if (im_waiting(-1))
longjmp(read_jmp_buf, signo);
SIGRET;
}
#endif
#ifndef interrupted /* i.e. unless it's a macro */
int
interrupted(void)
{
#if SYS_MSDOS && CC_DJGPP
if (_go32_was_ctrl_break_hit() != 0) {
while (keystroke_avail())
(void) keystroke();
return TRUE;
}
if (was_ctrl_c_hit() != 0) {
while (keystroke_avail())
(void) keystroke();
return TRUE;
}
if (am_interrupted)
return TRUE;
return FALSE;
#endif
}
#endif
void
not_interrupted(void)
{
am_interrupted = FALSE;
#if SYS_MSDOS
# if CC_DJGPP
(void) _go32_was_ctrl_break_hit(); /* flush any pending kbd ctrl-breaks */
(void) was_ctrl_c_hit(); /* flush any pending kbd ctrl-breaks */
# endif
#endif
}
#if SYS_MSDOS
# if CC_WATCOM
int
wat_crit_handler(unsigned deverror, unsigned errcode, unsigned *devhdr)
{
_hardresume((int) _HARDERR_FAIL);
return (int) _HARDERR_FAIL;
}
#else
void
dos_crit_handler(void)
{
# if ! CC_DJGPP
_hardresume(_HARDERR_FAIL);
# endif
}
# endif
#endif
static void
siginit(void)
{
#if SYS_UNIX
setup_handler(SIGINT, catchintr);
setup_handler(SIGHUP, imdying);
#ifdef SIGBUS
setup_handler(SIGBUS, imdying);
#endif
#ifdef SIGSYS
setup_handler(SIGSYS, imdying);
#endif
setup_handler(SIGSEGV, imdying);
setup_handler(SIGTERM, imdying);
/* #define DEBUG 1 */
#if DEBUG
setup_handler(SIGQUIT, imdying);
#else
setup_handler(SIGQUIT, SIG_IGN);
#endif
setup_handler(SIGPIPE, SIG_IGN);
#if defined(SIGWINCH) && ! DISP_X11
setup_handler(SIGWINCH, sizesignal);
#endif
#else
# if SYS_MSDOS
setup_handler(SIGINT, catchintr);
# if CC_DJGPP
_go32_want_ctrl_break(TRUE);
setcbrk(FALSE);
want_ctrl_c(TRUE);
hard_error_catch_setup();
# else
# if CC_WATCOM
{
/* clean up Warning from Watcom C */
void *ptrfunc = wat_crit_handler;
_harderr(ptrfunc);
}
# else /* CC_TURBO */
_harderr(dos_crit_handler);
# endif
# endif
# endif
# if SYS_OS2 || SYS_WINNT
setup_handler(SIGINT, catchintr);
#endif
#endif
}
static void
siguninit(void)
{
#if SYS_MSDOS
# if CC_DJGPP
_go32_want_ctrl_break(FALSE);
want_ctrl_c(FALSE);
hard_error_teardown();
setcbrk(TRUE);
# endif
#endif
}
/* do number processing if needed */
static void
do_num_proc(int *cp, int *fp, int *np)
{
register int c, f, n;
register int mflag;
register int oldn;
c = *cp;
if (isCntrl(c) || isSpecial(c))
return;
f = *fp;
n = *np;
if (f)
oldn = n;
else
oldn = 1;
n = 1;
if (isDigit(c) && c != '0') {
n = 0; /* start with a zero default */
f = TRUE; /* there is a # arg */
mflag = 1; /* current minus flag */
while ((isDigit(c) && !isSpecial(c)) || (c == '-')) {
if (c == '-') {
/* already hit a minus or digit? */
if ((mflag == -1) || (n != 0))
break;
mflag = -1;
} else {
n = n * 10 + (c - '0');
}
if ((n == 0) && (mflag == -1)) /* lonely - */
mlwrite("arg:");
else
mlwrite("arg: %d", n * mflag);
c = kbd_seq(); /* get the next key */
}
n = n * mflag; /* figure in the sign */
}
*cp = c;
*fp = f;
*np = n * oldn;
}
/* do emacs ^U-style repeat argument processing -- vile binds this to 'K' */
static void
do_rept_arg_proc(int *cp, int *fp, int *np)
{
register int c, f, n;
register int mflag;
register int oldn;
c = *cp;
if (c != reptc)
return;
f = *fp;
n = *np;
if (f)
oldn = n;
else
oldn = 1;
n = 4; /* start with a 4 */
f = TRUE; /* there is a # arg */
mflag = 0; /* that can be discarded. */
mlwrite("arg: %d", n);
while ((isDigit(c = kbd_seq()) && !isSpecial(c))
|| c == reptc || c == '-') {
if (c == reptc)
n = n * 4;
/*
* If dash, and start of argument string, set arg.
* to -1. Otherwise, insert it.
*/
else if (c == '-') {
if (mflag)
break;
n = 0;
mflag = -1;
}
/*
* If first digit entered, replace previous argument
* with digit and set sign. Otherwise, append to arg.
*/
else {
if (!mflag) {
n = 0;
mflag = 1;
}
n = 10 * n + c - '0';
}
mlwrite("arg: %d", (mflag >= 0) ? n : (n ? -n : -1));
}
/*
* Make arguments preceded by a minus sign negative and change
* the special argument "^U -" to an effective "^U -1".
*/
if (mflag == -1) {
if (n == 0)
n++;
n = -n;
}
*cp = c;
*fp = f;
*np = n * oldn;
}
/* handle all repeat counts */
void
do_repeats(int *cp, int *fp, int *np)
{
do_num_proc(cp, fp, np);
do_rept_arg_proc(cp, fp, np);
if (dotcmdactive == PLAY) {
if (dotcmdarg) /* then repeats are done by dotcmdcnt */
*np = 1;
} else {
/* then we want to cancel any dotcmdcnt repeats */
if (*fp)
dotcmdarg = FALSE;
}
}
/* the vi ZZ command -- write all, then quit */
int
zzquit(int f, int n)
{
int thiscmd;
int cnt;
BUFFER *bp;
thiscmd = lastcmd;
cnt = any_changed_buf(&bp);
if (cnt) {
if (cnt > 1) {
mlprompt("Will write %d buffers. %s ", cnt,
clexec ? s_NULL : "Repeat command to continue.");
} else {
mlprompt("Will write buffer \"%s\". %s ",
bp->b_bname,
clexec ? s_NULL : "Repeat command to continue.");
}
if (!clexec && !isnamedcmd) {
if (thiscmd != kbd_seq())
return FALSE;
}
if (writeall(f, n, FALSE, TRUE, FALSE, FALSE) != TRUE) {
return FALSE;
}
} else if (!clexec && !isnamedcmd) {
/* consume the next char. anyway */
if (thiscmd != kbd_seq())
return FALSE;
}
return quit(f, n);
}
/*
* attempt to write all changed buffers, and quit
*/
int
quickexit(int f, int n)
{
register int status;
if ((status = writeall(f, n, FALSE, TRUE, FALSE, FALSE)) == TRUE)
status = quithard(f, n); /* conditionally quit */
return status;
}
/* Force quit by giving argument */
/* ARGSUSED */
int
quithard(int f GCC_UNUSED, int n GCC_UNUSED)
{
return quit(TRUE, 1);
}
/*
* Quit command. If an argument, always quit. Otherwise confirm if a buffer
* has been changed and not written out.
*/
/* ARGSUSED */
int
quit(int f, int n GCC_UNUSED)
{
int cnt;
BUFFER *bp;
const char *sadj, *sverb;
run_a_hook(&exithook);
if (f == FALSE) {
cnt = any_changed_buf(&bp);
sadj = "modified";
sverb = "Write";
if (cnt == 0 && global_g_val(GMDWARNUNREAD)) {
cnt = any_unread_buf(&bp);
sadj = "unread";
sverb = "Look at";
}
if (cnt != 0) {
if (cnt == 1)
mlforce(
"Buffer \"%s\" is %s. %s it, or use :q!",
bp->b_bname, sadj, sverb);
else
mlforce(
"There are %d %s buffers. %s them, or use :q!",
cnt, sadj, sverb);
return FALSE;
}
}
#if OPT_LCKFILES
/* Release all placed locks */
if (global_g_val(GMDUSEFILELOCK)) {
for_each_buffer(bp) {
if (bp->b_active) {
if (!b_val(curbp, MDLOCKED) &&
!b_val(curbp, MDVIEW))
release_lock(bp->b_fname);
}
}
}
#endif
siguninit();
#if OPT_WORKING
setup_handler(SIGALRM, SIG_IGN);
#endif
#if NO_LEAKS
{
beginDisplay(); /* ...this may take a while... */
/* free all of the global data structures */
onel_leaks();
path_leaks();
kbs_leaks();
bind_leaks();
map_leaks();
tags_leaks();
wp_leaks();
bp_leaks();
vt_leaks();
#if !SMALLER
ev_leaks();
#endif
mode_leaks();
vars_leaks();
fileio_leaks();
#if DISP_X11
x11_leaks();
#endif
free_local_vals(g_valnames, global_g_values.gv, global_g_values.gv);
free_local_vals(b_valnames, global_b_values.bv, global_b_values.bv);
free_local_vals(w_valnames, global_w_values.wv, global_w_values.wv);
FreeAndNull(libdir_path);
FreeAndNull(startup_path);
FreeAndNull(gregexp);
tb_free(&tb_matched_pat);
#if OPT_MLFORMAT
FreeAndNull(modeline_format);
#endif
#if OPT_POSFORMAT
FreeAndNull(position_format);
#endif
FreeAndNull(helpfile);
FreeAndNull(startup_file);
#if SYS_UNIX
if (strcmp(exec_pathname, "."))
FreeAndNull(exec_pathname);
#endif
#if OPT_FILTER
flt_leaks();
#endif
/* do these last, e.g., for tb_matched_pat */
itb_leaks();
tb_leaks();
term.close();
/* whatever is left over must be a leak */
show_alloc();
}
#endif
tidy_exit(GOODEXIT);
/* NOTREACHED */
return FALSE;
}
/* ARGSUSED */
int
writequit(int f GCC_UNUSED, int n)
{
int s;
s = filesave(FALSE, n);
if (s != TRUE)
return s;
return quit(FALSE, n);
}
/*
* Abort.
* Beep the beeper. Kill off any keyboard macro, etc., that is in progress.
* Sometimes called as a routine, to do general aborting of stuff.
*/
/* ARGSUSED */
int
esc_func(int f GCC_UNUSED, int n GCC_UNUSED)
{
dotcmdactive = 0;
regionshape = EXACT;
doingopcmd = FALSE;
do_sweep(FALSE);
sweephack = FALSE;
opcmd = 0;
mlwarn("[Aborted]");
return ABORT;
}
/* tell the user that this command is illegal while we are in
VIEW (read-only) mode */
int
rdonly(void)
{
mlwarn("[No changes are allowed while in \"view\" mode]");
return FALSE;
}
/* ARGSUSED */
int
unimpl(int f GCC_UNUSED, int n GCC_UNUSED)
{
mlwarn("[Sorry, that vi command is unimplemented in vile ]");
return FALSE;
}
int
opercopy(int f, int n)
{
return unimpl(f, n);
}
int
opermove(int f, int n)
{
return unimpl(f, n);
}
int
opertransf(int f, int n)
{
return unimpl(f, n);
}
int
operglobals(int f, int n)
{
return unimpl(f, n);
}
int
opervglobals(int f, int n)
{
return unimpl(f, n);
}
int
vl_source(int f, int n)
{
return unimpl(f, n);
}
int
visual(int f, int n)
{
return unimpl(f, n);
}
int
ex(int f, int n)
{
return unimpl(f, n);
}
/* ARGSUSED */
/* user function that only returns true */
int
nullproc(int f GCC_UNUSED, int n GCC_UNUSED)
{
return TRUE;
}
/* dummy functions for binding to key sequence prefixes */
/* ARGSUSED */
int
cntl_a_func(int f GCC_UNUSED, int n GCC_UNUSED)
{
return TRUE;
}
/* ARGSUSED */
int
cntl_x_func(int f GCC_UNUSED, int n GCC_UNUSED)
{
return TRUE;
}
/* ARGSUSED */
int
poundc_func(int f GCC_UNUSED, int n GCC_UNUSED)
{
return TRUE;
}
/* ARGSUSED */
int
reptc_func(int f GCC_UNUSED, int n GCC_UNUSED)
{
return TRUE;
}
/*----------------------------------------------------------------------------*/
/* initialize our version of the "chartypes" stuff normally in ctypes.h */
/* also called later, if charset-affecting modes change, for instance */
void
charinit(void)
{
register int c;
TRACE(("charinit lo=%d, hi=%d\n",
global_g_val(GVAL_PRINT_LOW),
global_g_val(GVAL_PRINT_HIGH)));
/* If we're using the locale functions, set our flags based on its
* tables. Note that just because you have 'setlocale()' doesn't mean
* that the tables are present or correct. But this is a start.
*/
#if OPT_LOCALE
for (c = 0; c < N_chars; c++) {
vl_chartypes_[c] = 0;
if (iscntrl(c))
vl_chartypes_[c] |= vl_cntrl;
if (isdigit(c))
vl_chartypes_[c] |= vl_digit;
if (islower(c))
vl_chartypes_[c] |= vl_lower;
if (isprint(c))
vl_chartypes_[c] |= vl_print;
if (ispunct(c))
vl_chartypes_[c] |= vl_punct;
if (isspace(c))
vl_chartypes_[c] |= vl_space;
if (isupper(c))
vl_chartypes_[c] |= vl_upper;
#ifdef vl_xdigit
if (isxdigit(c))
vl_chartypes_[c] |= vl_xdigit;
#endif
}
#else /* ! OPT_LOCALE */
(void) memset((char *) vl_chartypes_, 0, sizeof(vl_chartypes_));
/* control characters */
for (c = 0; c < ' '; c++)
vl_chartypes_[c] |= vl_cntrl;
vl_chartypes_[127] |= vl_cntrl;
/* lowercase */
for (c = 'a'; c <= 'z'; c++)
vl_chartypes_[c] |= vl_lower;
#if OPT_ISO_8859
for (c = 0xc0; c <= 0xd6; c++)
vl_chartypes_[c] |= vl_lower;
for (c = 0xd8; c <= 0xde; c++)
vl_chartypes_[c] |= vl_lower;
#endif
/* uppercase */
for (c = 'A'; c <= 'Z'; c++)
vl_chartypes_[c] |= vl_upper;
#if OPT_ISO_8859
for (c = 0xdf; c <= 0xf6; c++)
vl_chartypes_[c] |= vl_upper;
for (c = 0xf8; c <= 0xff; c++)
vl_chartypes_[c] |= vl_upper;
#endif
/* digits */
for (c = '0'; c <= '9'; c++)
vl_chartypes_[c] |= vl_digit;
#ifdef vl_xdigit
/* hex digits */
for (c = '0'; c <= '9'; c++)
vl_chartypes_[c] |= vl_xdigit;
for (c = 'a'; c <= 'f'; c++)
vl_chartypes_[c] |= vl_xdigit;
for (c = 'A'; c <= 'F'; c++)
vl_chartypes_[c] |= vl_xdigit;
#endif
/* punctuation */
for (c = '!'; c <= '/'; c++)
vl_chartypes_[c] |= vl_punct;
for (c = ':'; c <= '@'; c++)
vl_chartypes_[c] |= vl_punct;
for (c = '['; c <= '`'; c++)
vl_chartypes_[c] |= vl_punct;
for (c = LBRACE; c <= '~'; c++)
vl_chartypes_[c] |= vl_punct;
#if OPT_ISO_8859
for (c = 0xa1; c <= 0xbf; c++)
vl_chartypes_[c] |= vl_punct;
#endif
/* printable */
for (c = ' '; c <= '~'; c++)
vl_chartypes_[c] |= vl_print;
/* whitespace */
vl_chartypes_[' '] |= vl_space;
#if OPT_ISO_8859
vl_chartypes_[0xa0] |= vl_space;
#endif
vl_chartypes_['\t'] |= vl_space;
vl_chartypes_['\r'] |= vl_space;
vl_chartypes_['\n'] |= vl_space;
vl_chartypes_['\f'] |= vl_space;
#endif /* OPT_LOCALE */
/* legal in pathnames */
vl_chartypes_['.'] |= vl_pathn;
vl_chartypes_['_'] |= vl_pathn;
vl_chartypes_['~'] |= vl_pathn;
vl_chartypes_['-'] |= vl_pathn;
vl_chartypes_['*'] |= vl_pathn;
vl_chartypes_['/'] |= vl_pathn;
/* legal in "identifiers" */
vl_chartypes_['_'] |= vl_ident | vl_qident;
vl_chartypes_[':'] |= vl_qident;
#if SYS_VMS
vl_chartypes_['$'] |= vl_ident | vl_qident;
#endif
c = global_g_val(GVAL_PRINT_LOW);
/*
* Guard against setting printing-high before printing-low while we have a
* buffer which may be repainted and possibly trashing the display.
*/
if (c == 0
&& global_g_val(GVAL_PRINT_HIGH) >= 254)
c = 160;
if (c < HIGHBIT)
c = HIGHBIT;
while (c <= global_g_val(GVAL_PRINT_HIGH) && c < N_chars)
vl_chartypes_[c++] |= vl_print;
#if DISP_X11
for (c = 0; c < N_chars; c++) {
if (isPrint(c) && !gui_isprint(c)) {
vl_chartypes_[c] &= ~vl_print;
}
}
#endif
/* backspacers: ^H, rubout */
vl_chartypes_['\b'] |= vl_bspace;
vl_chartypes_[127] |= vl_bspace;
/* wildcard chars for most shells */
vl_chartypes_['*'] |= vl_wild;
vl_chartypes_['?'] |= vl_wild;
#if !OPT_VMS_PATH
#if SYS_UNIX
vl_chartypes_['~'] |= vl_wild;
#endif
vl_chartypes_[LBRACK] |= vl_wild;
vl_chartypes_[RBRACK] |= vl_wild;
vl_chartypes_[LBRACE] |= vl_wild;
vl_chartypes_[RBRACE] |= vl_wild;
vl_chartypes_['$'] |= vl_wild;
vl_chartypes_['`'] |= vl_wild;
#endif
/* ex mode line specifiers */
vl_chartypes_[','] |= vl_linespec;
vl_chartypes_['%'] |= vl_linespec;
vl_chartypes_['-'] |= vl_linespec;
vl_chartypes_['+'] |= vl_linespec;
vl_chartypes_[';'] |= vl_linespec;
vl_chartypes_['.'] |= vl_linespec;
vl_chartypes_['$'] |= vl_linespec;
vl_chartypes_['\''] |= vl_linespec;
/* fences */
vl_chartypes_[LBRACE] |= vl_fence;
vl_chartypes_[RBRACE] |= vl_fence;
vl_chartypes_[LPAREN] |= vl_fence;
vl_chartypes_[RPAREN] |= vl_fence;
vl_chartypes_[LBRACK] |= vl_fence;
vl_chartypes_[RBRACK] |= vl_fence;
#if OPT_VMS_PATH
vl_chartypes_[LBRACK] |= vl_pathn; /* actually, "<", ">" too */
vl_chartypes_[RBRACK] |= vl_pathn;
vl_chartypes_['$'] |= vl_pathn;
vl_chartypes_[':'] |= vl_pathn;
vl_chartypes_[';'] |= vl_pathn;
#endif
#if OPT_MSDOS_PATH
vl_chartypes_[BACKSLASH] |= vl_pathn;
vl_chartypes_[':'] |= vl_pathn;
#endif
#if OPT_WIDE_CTYPES
/* scratch-buffer-names (usually superset of vl_pathn) */
vl_chartypes_[(unsigned) SCRTCH_LEFT[0]] |= vl_scrtch;
vl_chartypes_[(unsigned) SCRTCH_RIGHT[0]] |= vl_scrtch;
vl_chartypes_[' '] |= vl_scrtch; /* ...to handle "[Buffer List]" */
#endif
for (c = 0; c < N_chars; c++) {
if (!(isSpace(c)))
vl_chartypes_[c] |= vl_nonspace;
if (isDigit(c))
vl_chartypes_[c] |= vl_linespec;
if (isAlpha(c) || isDigit(c))
vl_chartypes_[c] |= vl_ident | vl_pathn | vl_qident;
#if OPT_WIDE_CTYPES
if (isSpace(c) || isPrint(c))
vl_chartypes_[c] |= vl_shpipe;
if (ispath(c))
vl_chartypes_[c] |= vl_scrtch;
#endif
}
}
#if OPT_HEAPSIZE
/* track overall heap usage */
#undef realloc
#undef malloc
#undef free
long currentheap; /* current heap usage */
typedef struct {
size_t length;
unsigned magic;
} HEAPSIZE;
#define MAGIC_HEAP 0x12345678
/* display the amount of HEAP currently malloc'ed */
static void
display_heap_usage(void)
{
beginDisplay();
if (global_g_val(GMDHEAPSIZE)) {
char membuf[20];
int saverow = ttrow;
int savecol = ttcol;
if (saverow >= 0 && saverow < term.rows
&& savecol >= 0 && savecol < term.cols) {
(void) lsprintf(membuf, "[%ld]", currentheap);
kbd_overlay(membuf);
kbd_flush();
movecursor(saverow, savecol);
}
}
endofDisplay();
}
static char *
old_ramsize(char *mp)
{
HEAPSIZE *p = (HEAPSIZE *) (mp - sizeof(HEAPSIZE));
if (p->magic == MAGIC_HEAP) {
mp = (char *) p;
currentheap -= p->length;
}
return mp;
}
static char *
new_ramsize(char *mp, unsigned nbytes)
{
HEAPSIZE *p = (HEAPSIZE *) mp;
if (p != 0) {
p->length = nbytes;
p->magic = MAGIC_HEAP;
currentheap += nbytes;
mp = (char *) ((long) p + sizeof(HEAPSIZE));
}
return mp;
}
/* track reallocs */
char *
track_realloc(char *p, unsigned size)
{
if (!p)
return track_malloc(size);
size += sizeof(HEAPSIZE);
p = new_ramsize(realloc(old_ramsize(p), size), size);
display_heap_usage();
return p;
}
/* track mallocs */
char *
track_malloc(
unsigned size)
{
char *p;
size += sizeof(HEAPSIZE);
if ((p = malloc(size)) != 0) {
(void) memset(p, 0, size); /* so we can use for calloc */
p = new_ramsize(p, size);
display_heap_usage();
}
return p;
}
/* track free'd memory */
void
track_free(char *p)
{
if (!p)
return;
free(old_ramsize(p));
display_heap_usage();
}
#endif /* OPT_HEAPSIZE */
#if MALLOCDEBUG
mallocdbg(int f, int n)
{
int lvl;
lvl = malloc_debug(n);
mlwrite("malloc debug level was %d", lvl);
if (!f) {
malloc_debug(lvl);
} else if (n > 2) {
malloc_verify();
}
return TRUE;
}
#endif
/*
* the log file is left open, unbuffered. thus any code can do
*
* extern FILE *FF;
* fprintf(FF, "...", ...);
*
* to log events without disturbing the screen
*/
#ifdef DEBUGLOG
/* suppress the declaration so that the link will fail if someone uses it */
FILE *FF;
#endif
/*ARGSUSED*/
static void
start_debug_log(int ac GCC_UNUSED, char **av GCC_UNUSED)
{
#ifdef DEBUGLOG
int i;
FF = fopen("vilelog", "w");
setbuf(FF, NULL);
for (i = 0; i < ac; i++)
(void) fprintf(FF, "arg %d: %s\n", i, av[i]);
#endif
}
#if SYS_MSDOS
#if CC_TURBO
int
showmemory(int f, int n)
{
extern long coreleft(void);
mlforce("Memory left: %ld bytes", coreleft());
return TRUE;
}
#endif
#if CC_WATCOM
int
showmemory(int f, int n)
{
mlforce("Watcom C doesn't provide a very useful 'memory-left' call.");
return TRUE;
}
#endif
#if CC_DJGPP
int
showmemory(int f, int n)
{
mlforce("Memory left: %ld Kb virtual, %ld Kb physical",
_go32_dpmi_remaining_virtual_memory() / 1024,
_go32_dpmi_remaining_physical_memory() / 1024);
return TRUE;
}
#endif
#endif /* SYS_MSDOS */
char *
strncpy0(char *t, const char *f, size_t l)
{
(void) strncpy(t, f, l);
if (l)
t[l - 1] = EOS;
return t;
}
/*
* This is probably more efficient for copying short strings into a large
* fixed-size buffer, because strncpy always zero-pads the destination to
* the given length.
*/
char *
vl_strncpy(char *dest, const char *src, size_t destlen)
{
size_t srclen = strlen(src) + 1;
if (srclen > destlen)
srclen = destlen;
return strncpy0(dest, src, srclen);
}
#if defined(SA_RESTART)
/* several systems (SCO, SunOS) have sigaction without SA_RESTART */
/*
* Redefine signal in terms of sigaction for systems which have the
* SA_RESTART flag defined through <signal.h>
*
* This definition of signal will cause system calls to get restarted for a
* more BSD-ish behavior. This will allow us to use the OPT_WORKING feature
* for such systems.
*/
void
setup_handler(int sig, void (*disp) (int ACTUAL_SIG_ARGS))
{
struct sigaction act, oact;
act.sa_handler = disp;
sigemptyset(&act.sa_mask);
#ifdef SA_NODEFER /* don't rely on it. if it's not there, signals
probably aren't deferred anyway. */
act.sa_flags = SA_RESTART | SA_NODEFER;
#else
act.sa_flags = SA_RESTART;
#endif
(void) sigaction(sig, &act, &oact);
}
#else
void
setup_handler(int sig, void (*disp) (int ACTUAL_SIG_ARGS))
{
(void) signal(sig, disp);
}
#endif
/* put us in a new process group, on command. we don't do this all the
* time since it interferes with suspending xvile on some systems with some
* shells. but we _want_ it other times, to better isolate us from signals,
* and isolate those around us (like buggy window/display managers) from
* _our_ signals. so we punt, and leave it up to the user.
*/
/* ARGSUSED */
int
newprocessgroup(int f GCC_UNUSED, int n GCC_UNUSED)
{
#if DISP_X11
int pid;
if (f) {
#if SYS_VMS
pid = vfork(); /* VAX C and DEC C have a 'vfork()' */
#else
pid = fork();
#endif
if (pid > 0)
ExitProgram(GOODEXIT);
else if (pid < 0) {
fputs("cannot fork\n", stderr);
tidy_exit(BADEXIT);
}
}
# if !SYS_VMS
# ifdef HAVE_SETSID
(void) setsid();
# else
# ifdef HAVE_BSD_SETPGRP
(void) setpgrp(0, 0);
# else
(void) setpgrp();
# endif /* HAVE_BSD_SETPGRP */
# endif /* HAVE_SETSID */
# endif /* SYS_VMS */
#endif /* DISP_X11 */
return TRUE;
}
static int
cmd_mouse_motion(const CMDFUNC * cfp)
{
int result = FALSE;
#if (OPT_XTERM || DISP_X11)
if (cfp != 0
&& CMD_U_FUNC(cfp) == mouse_motion)
result = TRUE;
#endif
return result;
}
static void
make_startup_file(char *name)
{
FILE *fp;
char temp[NFILEN];
if (strcmp(pathcat(temp, home_dir(), startup_file), startup_file)
&& ((fp = fopen(temp, "w")) != 0)) {
fprintf(fp, "; generated by %s -I\n", prog_arg);
fprintf(fp, "source %s\n", name);
fclose(fp);
}
}
|