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
|
% -*- mode: slang; mode: fold; -*-
% Note: This file has been folded.
%_traceback = 1;
#ifntrue
variable get_jed_library_path = "/usr/local/lib/jed";
#endif
%{{{ Description of site.sl file
%
% Site specific initialiation file.
%
% This file must be present in the JED_LIBRARY. JED loads it first--- even
% before reading command line arguments. The command line arguments are then
% passed to a hook declared in this file for further processing.
%
% In addition to some hooks, this file declares some autoloads for various
% functions and defines utility functions. Any user specific stuff should be
% placed in the jed.rc (.jedrc) user startup file. Only put here what you
% believe EVERY user on your system should get!
%
% The best way to make changes in this file is to put all your changes in a
% separate file, defaults.sl. defaults.sl is NOT distributed with JED. Code
% at the edn of this file checks for the existence of `defaults.sl' and loads
% it if found. Functions occuring in this file (site.sl) may be overloaded in
% defaults.sl. Making changes this way also makes it easier to upgrade to
% future JED versions.
%
%}}}
%{{{ Special note on syntax of some functions
% --------------------------------------------------------------------------
% Note: Some of the small routines here have been written in such a way that
% the stack based nature of the language is exploited. That is, instead of
% writing:
% define sum (a, b) { return a + b; }
% I use:
% define sum () { () + (); }
% The former parses to the bytecode: =b =a a b + return
% where as the latter parses to: +
% which is 6 times faster and 6 times more memory efficient!
% --------------------------------------------------------------------------
%}}}
%{{{ Global Variables
variable Null_String = "";
%!% A Comma separated list of info directories to search.
variable Info_Directory;
variable Jed_Bin_Dir;
variable Jed_Doc_Files;
%!% Prototype: Integer C_CONTINUED_OFFSET = 2;
%!% This variable controls the indentation of statements that are continued
%!% onto the next line as in the following example:
%!% @ if (something)
%!% @ continued_statement ();
%!% @ else
%!% @ another_continued_statement ();
%!% Related Variables: @C_BRA_NEWLINE@, @C_BRACE@, @C_INDENT@, @C_Colon_Offset@
variable C_CONTINUED_OFFSET = 2;
%!% Integer C_Colon_Offset = 1;
%!% This variable may be changed to adjust the indentation of @case@ statements
%!% in C-Mode.
%!% See also: @c_mode@
%!% Related Variables: @C_BRA_NEWLINE@, @C_BRACE@, @C_INDENT@, @C_Colon_Offset@
variable C_Colon_Offset = 1;
%!% Prototype: Integer C_Preprocess_Indent = 1;
%!% This variable controls the indentation of preprocessor directives in
%!% C-mode.
%!% See also: @c_mode@
%!% Related Variables: @C_BRA_NEWLINE@, @C_BRACE@, @C_INDENT@, @C_Colon_Offset@
variable C_Preprocess_Indent = 1;
%!% Column to begin a C comment--- used by c_make_comment
variable C_Comment_Column = 40;
%!% Prototype: Integer C_INDENT = 3;
%!% This value determines the number of columns the current line is indented
%!% past the previous line containing an opening @'{'@ character.
%!% Related Variables: @C_BRACE@, @C_BRA_NEWLINE@.
variable C_INDENT = 3;
%!% Prototype: Integer C_BRACE = 2;
%!% This is a C-mode variable that specifies how much an opening brace
%!% should be indented compared its surrounding block.
%!% Related Variables: @C_INDENT@, @C_BRA_NEWLINE@
variable C_BRACE = 2;
%!% Prototype: Integer C_BRA_NEWLINE = 1;
%!% This variable is used by the indentation routines for the C langauge.
%!% If it is non-zero, the @'{'@ character will be placed on a line by
%!% itself when one presses the @'{'@ character. For K&R indentation style,
%!% set this variable to zero.
%!% Related Variables: @C_INDENT@, @C_BRACE@
variable C_BRA_NEWLINE = 1;
#ifdef UNIX
%if (OUTPUT_RATE > 9600) OUTPUT_RATE = 0; %% coming through a network?
#endif
variable compile_parse_error_function = "gcc";
% These are for compatibility
variable REPLACE_PRESERVE_CASE = 0;
variable LAST_SEARCH = Null_String;
%}}}
%{{{ Compatibility functions
define define_keywords ()
{
define_keywords_n (0);
}
define save_search_string ()
{
LAST_SEARCH = ();
}
% define this now so lib files can refer to it.
define compile_parse_errors ();
%}}}
%{{{ Utility functions required below (dircat, etc)
%{{{ vinsert
%!% Prototype: Void vinsert (String, fmt,... Integer n);
%!% This function is like @insert@ except that it takes a variable number
%!% of arguments and a format string. Formally, it is equivalent to
%!% @insert (Sprintf (fmt,...n))@.
%!% See also: @insert@, @Sprintf@, @insert_char@
define vinsert ()
{
_NARGS-1; Sprintf; insert;
}
%}}}
%{{{ dircat
%!% A function to contat a directory with a filename. Basically checks
%!% for the final slash on the dir and adds on if necessary
define dircat(dir, file)
{
% Many functions assume dir = NULL is ok, e.g., dircat (getenv (...));
if (dir == NULL) dir = "";
if (file == NULL) file = "";
variable n = strlen(dir);
if (n)
{
#ifdef MSDOS OS2
variable slash = "\\";
if (strcmp(substr(dir, n, 1), slash)) dir += slash;
#endif
#ifdef UNIX
variable slash = "/";
if (dir [n - 1] != '/') dir += slash;
%if (strcmp(substr(dir, n, 1), slash)) dir = strcat(dir, slash);
#endif
#ifdef VMS
% assume dir = d:[dir]a.dir;1
% convert a.dir;1 to [.a] first
variable f1, d1;
dir = extract_element(dir, 0, ';'); % dir = d:[dir]a.dir
d1 = extract_element(dir, 0, ']'); % d1 = d:[dir
f1 = extract_element(dir, 1, ']'); % f1 = a.dir
if (f1 != NULL)
d1 += "." + extract_element(f1, 0, '.'); % d1 = d:[dir.a
n = strlen (dir);
if (n)
{
if (dir [n - 1] != ':') d1 += "]";
}
% if (':' != int(substr(dir, strlen(dir), 1))) d1 += "]";
dir = d1;
#endif
}
expand_filename (dir + file);
}
%}}}
%{{{ str_replace_all (str, old, new)
%!% Prototype: String str_replace_all (str, old, new);
%!% Replace all occurances of @old@ in @str@ with @new@ and return the
%!% result.
%!% Related Functions: @str_replace@, @replace_cmd@
define str_replace_all (str, old, new)
{
while (str_replace (str, old, new))
str = ();
str;
}
%}}}
%{{{ strncat (n)
%!% Prototype: Void strncat (String a, String b, ..., Integer n);
%!% Returns concatenated string "abc..."
define strncat (n)
{
"";
_stk_roll (n + 1);
create_delimited_string (n);
}
%}}}
%{{{ bol_skip_white ()
%!% Prototype: Void bol_skip_white ();
%!% This function combines the two functions @bol@ and @skip_white@ into a
%!% single operation. That is, it moves the point to the beginning of the
%!% line and then skips over whitespace to the first non-whitespace character.
%!% See also: @bol@, @skip_white@, @skip_chars@
define bol_skip_white ()
{
bol (); skip_white ();
}
%}}}
%{{{ bskip_white ()
%!% Prototype: Void bskip_white ();
%!% This function skips backward over whitespace.
%!% Note: it does not cross lines.
%!% See also: @skip_white@, @bskip_chars@
define bskip_white ()
{
bskip_chars ("\t ");
}
%}}}
%{{{ buffer_filename ()
%!% Prototype: String buffer_filename ();
%!% Returns the name of the file associated with the current buffer. If
%!% there is none associated with it, the empty string is returned.
define buffer_filename ()
{
variable file, dir;
(file, dir, , ) = getbuf_info();
!if (strlen (file)) dir = Null_String;
dir + file;
}
%}}}
%{{{ path2list(path)
%% Convert Unix- or OS/2- style path to comma-delimited list
define path2list ()
{
% path is on stack
#ifndef VMS
str_replace_all ( (),
# ifdef UNIX
":",
# else
";",
# endif
",");
#endif
}
%}}}
%{{{ file_type(file)
%!% returns type of file. e.g., /usr/a.b/file.c --> c
define file_type(file)
{
variable n;
file = extract_filename(file);
n = is_substr(file, ".");
!if (n) return (Null_String);
substr(file, n + 1, strlen(file));
}
%}}}
%{{{ expand_jedlib_file (f)
%!% Search for FILE in jed lib search directories and return
%!% expanded pathname if found or the Null string otherwise.
define expand_jedlib_file (f)
{
variable n = 0, dir, file;
variable jed_lib = get_jed_library_path ();
forever
{
dir = extract_element (jed_lib, n, ',');
if (dir == NULL)
return "";
file = dircat(dir, f);
if (file_status(file) == 1) break;
++n;
}
file;
}
%}}}
%{{{ find_jedlib_file(file)
%!% find a file from JED_LIBRARY, returns number of lines read or 0 if not
%!% found.
define find_jedlib_file(file)
{
file = expand_jedlib_file(file);
!if (strlen(file)) return(0);
find_file(file);
}
%}}}
%{{{ parse_filename(fn)
%!% Prototype: (dir, file) = define parse_filename(fn)
%!% breaks a filespec into dir filename---
%!% this routine returns dir and filename such that a simple strcat will
%!% suffice to put them together again. For example, on unix, /a/b/c
%!% returns /a/b/ and c
define parse_filename(fn)
{
variable f, dir, n;
f = extract_filename(fn);
n = strlen(fn) - strlen(f);
dir = substr(fn, 1, n);
dir; f;
}
%}}}
%}}}
%{{{ Jed info and bin directories
#ifdef VMS
Info_Directory = JED_ROOT + "[info]";
Jed_Bin_Dir = JED_ROOT + "[bin]";
Jed_Doc_Files = dircat (JED_ROOT, "[doc]jedfuns.txt") + "," + dircat (JED_ROOT,"[doc]slangfun.txt");
#else
Info_Directory = dircat (JED_ROOT, "info");
Jed_Bin_Dir = dircat (JED_ROOT, "bin");
Jed_Doc_Files = dircat (JED_ROOT, "doc/jedfuns.txt") + "," + dircat (JED_ROOT, "doc/slangfun.txt");
#endif
#ifdef UNIX
Info_Directory += ",/usr/info,/usr/local/info";
#endif
$1 = getenv("INFOPATH");
if ($1 != NULL) Info_Directory = path2list($1);
%}}}
%{{{ Some key definitions
% These two are for compatability:
setkey("search_forward", "^Ff");
setkey("search_backward", "^Fb");
setkey("skip_word", "^[^[[C"); %escape right arrow.
setkey("bskip_word", "^[^[[D"); %escape left arrow
setkey("upcase_word", "^[U");
setkey("downcase_word", "^[L");
setkey("capitalize_word", "^[C");
setkey("emacs_escape_x", "^[X");
setkey("undo", "^Xu"); %% Also ^_ but vtxxx have problems with it
setkey("transpose_lines", "^X^T");
setkey("help_prefix", "\e?");
%setkey("indent_line_cmd", "^I");
%setkey("insert_colon_cmd", ":");
% setkey("newline_and_indent_cmd", "^M");
setkey("do_shell_cmd", "^[!");
setkey("find_tag", "^[.");
setkey("dabbrev", "\e/");
setkey("save_buffers", "^Xs");
setkey("whatpos", "^X?");
setkey("list_buffers", "^X^B");
setkey ("set_fill_column", "^Xf");
setkey ("compile_parse_errors", "^X'");
setkey ("digraph_cmd", "^X8");
% 16 bit systems do not get these features
if (is_defined ("KILL_ARRAY_SIZE"))
{
setkey ("reg_insert_register", "^XG");
setkey ("reg_copy_to_register", "^XX");
}
#ifdef UNIX OS2
setkey("ispell", "^[$");
#endif
#ifndef MSDOS OS2
setkey("mail", "^Xm");
#endif
#ifdef MSDOS OS2
setkey(" /", "\eOQ");
setkey(" *", "\eOR");
setkey(" +", "\eOm");
setkey(" -", "\eOS");
setkey("toggle_overwrite", "\xE0R"); %/* insert key */
setkey("toggle_overwrite", "\eOp"); %/* insert key */
#endif
%}}}
%{{{ Autoloads
$0 = _stkdepth ();
_autoload("c_mode", "cmode",
"slang_mode", "slmode",
"java_mode", "javamode",
"find_binary_file", "binary",
"jed_easy_help", "jedhelp",
"query_replace_match", "regexp",
"re_search_forward", "regexp",
"re_search_backward", "regexp",
"dired", "dired",
"calendar", "cal",
"menu_main_cmds", "menu",
"trim_buffer", "util",
"occur", "occur",
"info_reader", "info",
"info_mode", "info",
"info_find_node", "info",
"list_buffers", "buf",
"append_region", "buf",
"write_region", "buf",
"recover_file", "buf",
"most_mode", "most",
"run_most", "most",
"compile", "compile",
"sort", "sort",
"sort_using_function", "sort",
"untab", "untab",
"fortran_mode", "fortran",
"save_buffers", "buf",
"sh_mode", "shmode",
"ps_mode", "pscript",
"python_mode", "pymode",
"rot13", "rot13",
"search_forward", "search",
"search_backward", "search",
"replace_cmd", "search",
"replace_across_buffer_files","replace",
"isearch_forward", "isearch",
"isearch_backward", "isearch",
"shell", "shell",
"mute_set_mute_keys", "mutekeys",
#ifndef OS2 UNIX
"run_shell_cmd", "shell",
#endif
"html_mode", "html",
"do_shell_cmd", "shell",
"shell_perform_cmd", "shell",
"find_tag", "ctags",
"apropos", "help",
"expand_keystring", "help",
"describe_bindings", "help",
"describe_function", "help",
"describe_variable", "help",
"help_for_function", "help",
"where_is", "help",
"showkey", "help",
"describe_mode", "help",
"format_paragraph_hook", "tmisc",
"dabbrev", "dabbrev",
"tex_mode", "tex",
"bibtex_mode", "bibtex",
"latex_mode", "latex",
"bkmrk_goto_mark", "bookmark",
"bkmrk_set_mark", "bookmark",
"add_keyword", "syntax",
"lisp_mode", "lisp",
"perl_mode", "perl",
"vhdl_mode", "vhdlmode",
"spice_mode", "spicemod",
"verilog_mode", "verilog",
%%
%% By default, tabs are every TAB columns (default 8). Calling this function
%% will allow the user to set the tabs arbitrarily and bind the TAB key
%% appropriately.
"edit_tab_stops", "tabs",
"tab_to_tab_stop", "tabs",
"append_string_to_file", "misc",
"write_string_to_file", "misc",
"make_tmp_buffer_name", "misc",
"abbrev_mode", "abbrev",
"set_abbrev_mode", "abbrev",
"save_abbrevs", "abbrmisc",
"define_abbreviation", "abbrmisc",
#ifdef VMS
"mail", "mail", % See also sendmail.sl
"mail_format_buffer", "mail",
"dcl_mode", "dcl",
"vms_help", "vmshelp",
#endif
#ifdef UNIX OS2
"unix_man", "man",
"ispell", "ispell",
#endif
#ifdef UNIX
"rmail", "rmail",
"mail", "sendmail",
"mail_format_buffer", "sendmail",
#endif
#ifdef VMS UNIX
"f90_mode", "f90",
#endif
"idl_mode", "idl",
"nroff_mode", "nroff",
"modeline_hook2", "modehook",
"digraph_cmd", "digraph",
"bufed", "bufed",
"push_mode", "pushmode",
% Compatibility functions
"create_array", "compat",
(_stkdepth () - $0) / 2); % matches start of _autoload
if (is_defined ("KILL_ARRAY_SIZE"))
{
autoload ("reg_insert_register", "register");
autoload ("reg_copy_to_register", "register");
}
%}}}
%{{{ More Utility functions
%{{{ Simple editing and movement functions
%!% Prototype: Void go_up (Integer n);
%!% Move up 'n' lines.
%!% See also: up, go_down
define go_up() { () = up(); }
%!% Prototype: Void up_1 ();
%!% Move up 1 line. If successful, returns 1 otherwise it returns 0.
%!% See also: @up@, @go_down@, @go_up@, @go_up_1@
define up_1() { up(1); }
%!% Prototype: Void go_up_1 ();
%!% Move up exactly 1 line if possible.
%!% See also: up, go_down
define go_up_1 () { () = up_1(); }
%!% Prototype: Void go_down (Integer n);
%!% Move down 'n' lines.
%!% See also: go_up, down
define go_down() { () = down(); }
%!% Prototype: Void down_1 ();
%!% Move down exactly one lines. If sucessful, 1 is returned otherwise
%!% zero is returned.
%!% See also: @go_up@, @down@, @go_down_1@
define down_1 () { down (1); }
%!% Prototype: Void go_down_1 ();
%!% Move down one lines.
%!% See also: go_up, down
define go_down_1 () { () = down_1(); }
%!% Prototype: Void go_left (Integer n);
%!% Move backward 'n' characters.
%!% See also: left, go_right
define go_left() { () = left();}
%!% Prototype: Void go_right (Integer n);
%!% Move forward 'n' characters.
%!% See also: right, go_left
define go_right() { () = right();}
%!% Prototype: Void go_right_1 ();
%!% Move forward 1 characters.
%!% See also: right, go_left
define go_right_1() { go_right (1); }
%!% Prototype: Void go_left_1 ();
%!% Move forward 1 characters.
%!% See also: left, go_left
define go_left_1() { go_left (1); }
#iffalse
%!% insert a character into a buffer.
%!% This function should be called instead of 'insert' when it is desired to
%!% insert a 1 character string. Unlike 'insert', insert_char takes an integer
%!% argument. For example,
%!% 'x' insert_char
%!% and
%!% "x" insert
%!% are functionally equivalent but insert_char is more memory efficient.
define insert_char ()
{
insert (char( () ));
}
#endif
!if (is_defined("insert_char")) eval (".(char insert)insert_char");
%!% Prototype: Void newline (Void);
%!% insert a newline in the buffer at point.
%!% See also: insert, insert_char
define newline ()
{
insert_char('\n');
}
%!% insert a single space into the buffer.
define insert_single_space ()
{
insert_char(' ');
}
%!% Prototype: Integer looking_at_char (Integer ch);
%!% This function returns non-zero if the character at the current editing
%!% point is 'ch' otherwise it retuns zero. This function performs a case
%!% sensitive comparison.
define looking_at_char ()
{
what_char () == ();
}
%}}}
% For compatability
define shell_cmd ()
{
() = run_shell_cmd ();
}
typedef struct
{
hook,
next
}
Hook_Type;
define hook_add_to_hook (hook, fun)
{
variable next;
next = @Hook_Type;
next.next = NULL;
next.hook = fun;
if (@hook == NULL)
{
@hook = next;
return;
}
hook = @hook;
forever
{
if (hook.hook == fun)
return; % already present
if (hook.next == NULL)
break;
hook = hook.next;
}
hook.next = next;
}
%!% Prototype: Void runhooks (Hook_Type_or_String hook);
%!% If @hook@ is of type @Hook_Type@, then the hooks defined by the object
%!% will be called. If @hook@ is a string, and a function named @hook@
%!% exists, that function will be called.
%!% Related Functions: @hook_add_to_hook@
define runhooks (hook)
{
if (hook == NULL) return;
if (Hook_Type != typeof (hook))
{
if (is_defined (hook)) eval(hook);
return;
}
while (hook != NULL)
{
@hook.hook ();
hook = hook.next;
}
}
#ifdef UNIX VMS
%!% Prototype: Hook_Type Reset_Display_Hook_List = NULL;
%!% This object contains a list of hooks to be called just prior to resetting
%!% the display. To add a hook to the list, e.g., @my_reset_display_hook@
%!% use
%!% @
%!% @ hook_add_to_hook (&Reset_Display_Hook_List, &my_reset_display_hook);
%!% @
%!% Related Functions: @hook_add_to_hook@, @reset_display_hook@
%!% Related Variables: @Init_Display_Hook_List@
variable Reset_Display_Hook_List = NULL;
%!% Prototype: Void reset_display_hook ();
%!% This function is called when the gets reset to its default state.
%!% The current implementation runs the functions specified by the
%!% variable @Reset_Display_Hook_List@
%!% Related Functions: @init_display_hook@, @hook_add_to_hook@, @runhooks@
%!% Related Variables: @Reset_Display_Hook_List@
define reset_display_hook ()
{
runhooks (Reset_Display_Hook_List);
}
%!% Prototype: Hook_Type Init_Display_Hook_List = NULL;
%!% This variable contains a list of function to get called by
%!% @init_display_hook@ after jed initializes the display. To add a
%!% function, e.g., @my_init_display_hook@ to it, use
%!% @
%!% @ hook_add_to_hook (&Init_Display_Hook_List, &my_init_display_hook);
%!% @
%!% Related Functions: @hook_add_to_hook@, @init_display_hook@
%!% Related Variables: @Reset_Display_Hook_List@
%!% Prototype: Void init_display_hook ();
variable Init_Display_Hook_List = NULL;
%!% Prototype: Void init_display_hook ();
%!% Just after the display is initialized, this function runs the hooks that
%!% are specified by the variable @Init_Display_Hook_List@.
%!% Related Functions: @hook_add_to_hook@, @reset_display_hook@
%!% Related Variables: @Init_Display_Hook_List@, @Reset_Display_Hook_List@
define init_display_hook ()
{
runhooks (Init_Display_Hook_List);
}
#endif % UNIX VMS
%!% Prototype: Void local_setkey (String fun, String key);
%!% This function is like 'setkey' but unlike 'setkey' which operates on the
%!% global keymap, 'local_setkey' operates on the current keymap which may or
%!% may not be the global one.
%!% See also: setkey, definekey, local_unsetkey
define local_setkey ()
{
definekey((), (), what_keymap());
}
%!% Prototype: Void local_unsetkey (String key);
%!% This function is like 'unsetkey' but unlike 'unsetkey' which unsets a key
%!% from the global keymap, 'local_unsetkey' operates on the current keymap
%!% which may or may not be the global one.
%!% See also: unsetkey, undefinekey, local_setkey
define local_unsetkey ()
{
undefinekey( (), what_keymap());
}
%!% Prototype: String make_tmp_file (String base);
%!% This function returns a unique file name that begins with @base@.
define make_tmp_file(base)
{
variable pid = getpid(), file, n = 1000;
while (n)
{
file = base + string (pid); % strcat(base, string(pid));
!if (file_status(file)) return (file);
pid++;
}
error ("Unable to create a tmp file!");
}
%}}}
%{{{ More functions
%!% Prototype: Void pop_mark_0 ();
%!% Since @pop_mark@ is used so often with an argument of @0@, this function
%!% is simply equivalent to @pop_mark(0)@.
%!% See also: @pop_mark@, @pop_mark_1@
define pop_mark_0 ()
{
pop_mark (0);
}
%!% Prototype: Void pop_mark_1 ();
%!% Since @pop_mark@ is used so often with an argument of @1@, this function
%!% is simply equivalent to @pop_mark(1)@.
%!% See also: @pop_mark@, @pop_mark_0@
define pop_mark_1 ()
{
pop_mark (1);
}
%!% Prototype: Void goto_spot ();
%!% This function returns to the position of the last pushed spot. The spot
%!% is not popped.
%!% See also: @push_spot@, @pop_spot@, @create_user_mark@
define goto_spot ()
{
pop_spot ();
push_spot ();
}
%!% Prototype: Void push_spot_bob ();
%!% The function sequence @push_spot (); bob ();@ occurs so often that
%!% it makes sense to have a single function that performs this task.
%!% See also: @push_spot@, @bob@, @pop_spot@, @push_spot_bol@
define push_spot_bob ()
{
push_spot ();
bob ();
}
%!% Prototype: Void push_spot_bol ();
%!% The function sequence @push_spot (); bol ();@ occurs so often that
%!% it makes sense to have a single function that performs this task.
%!% See also: @push_spot@, @bol@, @pop_spot@, @push_spot_bob@
define push_spot_bol ()
{
push_spot ();
bol ();
}
%!% Prototype: Void push_mark_eol ();
%!% The function sequence @push_mark (); eol ();@ occurs so often that
%!% it makes sense to have a single function that performs this task.
%!% See also: @push_mark@, @eol@, @pop_mark@, @push_mark_eob@
define push_mark_eol ()
{
push_mark ();
eol ();
}
%!% Prototype: Void push_mark_eob ();
%!% The function sequence @push_mark (); eob ();@ occurs so often that
%!% it makes sense to have a single function that performs this task.
%!% See also: @push_mark@, @eob@, @pop_mark@, @push_mark_eob@
define push_mark_eob ()
{
push_mark ();
eob ();
}
%!% Prototype: mark_buffer ();
%!% This function marks the whole buffer leaving the point at the end
%!% of the buffer.
%!% See also: @push_mark@, @pop_mark@, @bob@, @eob@
define mark_buffer ()
{
bob ();
push_mark_eob ();
}
%!% Prototype: String bufsubstr_delete ()
%!% This functions returns the contents of a region defined my the mark
%!% and the current point. The region will be deleted.
%!% See also: @bufsubstr@
define bufsubstr_delete ()
{
() = dupmark ();
bufsubstr (); % on stack
del_region ();
}
%!% Prototype: Void del_eol ();
%!% This function deletes from the current position to the end of the line.
%!% See also: @del@, @delete_line@, @del_through_eol@
define del_eol ()
{
push_mark_eol ();
del_region ();
}
%!% Prototype: del_through_eol ();
%!% This function deletes all text from the current point through the end of
%!% the line.
%!% See also: @del@, @del_eol@, @del_region@
define del_through_eol ()
{
del_eol ();
!if (eobp ()) del ();
}
%!% Prototype: String line_as_string ()
%!% This function returns the current line as a string. This does not include
%!% the newline character at the end of the line. The editing point is left
%!% at the end of the line. That is, this function does not preserve the point.
%!% See also: @bufsubstr@
define line_as_string ()
{
bol (); push_mark_eol (); bufsubstr ();
}
define double_line ()
{
POINT;
line_as_string (); % on stack
newline();
insert(());
POINT = ();
}
%!% Prototype: Void bol_trim ();
%!% Move to beginning of line and remove whitespace.
%!% See also: @bol@, @trim@
define bol_trim ()
{
bol (); trim ();
}
%!% Prototype: Void eol_trim ();
%!% Move to end of line and remove whitespace.
%!% See also: @eol@, @trim@
define eol_trim ()
{
eol ();
trim ();
}
define re_looking_at (re)
{
push_spot ();
push_mark_eol ();
1 == string_match (bufsubstr (), re, 1); % on stack
pop_spot ();
}
%}}}
%{{{ Backup and autosave functions
#ifdef MSDOS OS2 WIN32
# ifdef MSDOS WIN32
variable MSDOS_Has_Long_File_Names = 0;
# endif
define pc_system_support_long_filenames (dir)
{
# ifdef OS2
return IsHPFSFileSystem(dir);
# else
MSDOS_Has_Long_File_Names;
# endif
}
#endif
variable No_Backups = 0;
% returns backup filename. Arguments to function are dir and file.
define make_backup_filename(dir, file)
{
#ifdef UNIX
if (dir == "/tmp/") return "";
dir + file + "~";
#endif
#ifdef MSDOS OS2 WIN32
variable type;
!if (pc_system_support_long_filenames (dir))
{
% There are several things to worry about. Here just break up the
% filename and truncate type to 2 chars and paste it back.
% note that this takes a name like file.c and produces file.c~
% Also, note that if the type is empty as in 'file', it produces
% 'file.~'
type = file_type(file);
file = extract_element (file, 0, '.') + "." + substr(type, 1, 2);
}
dir + file + "~"; %strncat (dir, file, "~", 3);
#endif
}
% returns autosave filename. Arguments to function are dir and file.
define make_autosave_filename(dir, file)
{
#ifdef VMS
sprintf ("%s_$%s;1", dir, file);
#endif
#ifdef UNIX
sprintf ("%s#%s#", dir, file);
#endif
#ifdef MSDOS OS2 WIN32
!if (pc_system_support_long_filenames (dir))
{
variable type = file_type(file);
file = substr(extract_element(file, 0, '.'), 1, 7);
if (strlen(type)) file += ".";
file += type; % file = strcat (file, type);
}
dir + "#" + file;
#endif
}
%}}}
%{{{ Some interactive functions (goto_line, column, M-x)
%{{{ emacs_escape_x()
define emacs_escape_x()
{
variable f = Null_String, i = 0;
if (MINIBUFFER_ACTIVE)
{
call("evaluate_cmd");
return;
}
forever
{
f = str_replace_all (f, "-", "_");
if (is_internal(f))
{
call(f);
return;
}
if (is_defined(f))
{
eval(f);
return;
}
!if (EXECUTING_MACRO or DEFINING_MACRO)
{
if (i == 1) ungetkey(13);
ungetkey(' ');
++i;
}
f = read_with_completion("M-x", Null_String, f, 'F');
}
}
%}}}
define goto_line_cmd()
{
read_mini("Goto line:", Null_String, Null_String);
goto_line(integer(()));
}
define goto_column_cmd()
{
read_mini("Goto Column:", Null_String, Null_String);
goto_column(integer(()));
}
%;; scroll other window macros-- bind them yourself
define next_wind_up()
{
otherwindow(); call("page_up");
loop (nwindows() - 1) otherwindow();
}
define next_wind_dn()
{
otherwindow(); call("page_down");
loop (nwindows() - 1) otherwindow();
}
%!% display row and column information in minibuffer
define whatpos ()
{
variable max_lines;
push_spot (); eob (); max_lines = what_line (); pop_spot ();
vmessage ("%s, Line %d of %d lines, Column %d",
count_chars (), what_line(), max_lines, what_column ());
}
define goto_top_of_window ()
{
go_up (window_line () - 1);
bol ();
}
define goto_bottom_of_window ()
{
go_down (window_info ('r') - window_line ());
}
%}}}
%{{{ Mode functions and settings
%!% Generic mode not designed for anything in particular.
%!% Related Functions: @text_mode@, @c_mode@
define no_mode ()
{
use_syntax_table (Null_String);
set_mode(Null_String, 0);
use_keymap("global");
set_buffer_hook (Null_String, Null_String);
}
%!% Mode for indenting and wrapping text
%!% Functions that affect this mode include:
%!%
%!% @ Function: Default Binding:
%!% @ indent_line TAB
%!% @ newline_and_indent RETURN
%!% @ format_paragraph ESC Q
%!% @ narrow_paragraph ESC N
%!%
%!% @ Variables include:
%!% @ WRAP_INDENTS, WRAP
%!% @ TAB, TAB_DEFAULT
%!% Related Functions: @no_mode@, @c_mode@
define text_mode()
{
no_mode ();
set_mode("Text", 1);
runhooks ("text_mode_hook");
}
% Function prototypes
% These 'functions' are only here to initialize function pointers.
define _function_pop_0 (x) {0;}
define _function_return_1 () {1;}
%!% called from mode_hook. Returns 0 if it is desired that control return
%!% to mode_hook or 1 if mode hook should exit after calling mode_hook_ptr
variable Mode_Hook_Pointer = &_function_pop_0;
variable Default_Mode = &text_mode;
% Emacs allows a mode definition on the first line of a file
% -*- mode: MODENAME; VAR: VALUE; ... -*-
% which can also include values of local variables
%!% check first line for the simplest Emacs mode statement
%!% -*- modename -*-
define modeline_hook()
{
variable mode = Null_String, extra_hook;
push_spot_bob ();
go_down (4);
#iffalse
() = bsearch ("-*- END -*-");
#endif
push_mark (); bob ();
narrow ();
% #!/bin/sh, #!/usr/local/bin/perl, #!/bin/csh -f ...
#ifdef 0
if (looking_at("#!")) mode = "sh";
#endif
if (re_fsearch("^#!/[^ ]+/\\([^ ]+\\)"))
mode = regexp_nth_match (1);
if (re_fsearch ("-\\*- *\\([-A-Za-z_]+\\) *-\\*-"))
mode = strlow (regexp_nth_match (1));
bob ();
% -*- mode: VALUE -*- or -*- eval: VALUE -*-
extra_hook = re_fsearch ("-\\*- *.+:.+ *-\\*-");
widen ();
EXIT_BLOCK
{
mode = ();
if (extra_hook) (mode + modeline_hook2 ()); else mode;
pop_spot (); % restore place
}
if ( strlen(mode) )
{
variable mstr = "_mode";
mode = str_replace_all (mode, "-", "_");
!if (is_substr (mode, mstr)) mode += "_mode"; %mode = strcat (mode, "_mode" );
if (is_defined(mode))
{
eval (mode);
1; % mode was defined
return;
}
}
0;
}
variable Mode_List_Exts = "c,h,cc,cpp,hpp,sl,txt,doc,tex,f,for,pro,idl,1,pl,v,verilog,vhd,vhdl,vt,sp,cir,spice,ps,py,tcl,cxx";
variable Mode_List_Modes = "c,c,c,c,c,slang,text,text,tex,fortran,fortran,idl,idl,nroff,perl,verilog,verilog,vhdl,vhdl,vhdl,spice,spice,spice,ps,python,tcl,c";
#ifdef MSDOS OS2
Mode_List_Exts += ",rc,bat,htm"; % resource file
Mode_List_Modes += ",c,no,html";
#endif
#ifdef VMS UNIX
Mode_List_Exts += ",com,html,f90"; % resource file
Mode_List_Modes += ",dcl,html,f90";
#endif
#ifdef UNIX
Mode_List_Exts += ",cshrc,tcshrc,login,profile,conf,sh";
Mode_List_Modes += ",sh,sh,sh,sh,sh,sh";
Mode_List_Exts += ",letter,article,followup";
Mode_List_Modes += ",text,text,text";
#endif
#ifndef MSDOS
Mode_List_Modes += ",java";
Mode_List_Exts += ",java";
#endif
%!% Prototype: Void add_mode_for_extension (String mode, String ext);
%!% This function modifies Mode_List in such a way that when a file with
%!% filename extension `ext' is read in, function strcat (mode, "_mode")
%!% will be called to set the mode. That is, the first parameter 'mode'
%!% is the name of a mode without the '_mode' added to the end of it.
define add_mode_for_extension (mode, ext)
{
Mode_List_Modes = mode + "," + Mode_List_Modes;
Mode_List_Exts = ext + "," + Mode_List_Exts;
}
%!% This is a hook called by find_file routines to set the mode
%!% for the buffer. This function takes one parameter, the filename extension
%!% and returns nothing.
define mode_hook (ext)
{
variable n, mode;
#ifdef VMS
ext = extract_element(ext, 0, ';');
#endif
#ifdef MSDOS OS2 VMS
ext = strlow (ext);
#endif
#ifdef UNIX
% Strip off final ~
n = strlen (ext); n--;
if (andelse
{n > 0}
{ext[n] == '~'})
ext = substr (ext, 1, n);
#endif
if (@Mode_Hook_Pointer(ext)) return;
if (modeline_hook ()) return;
n = is_list_element (Mode_List_Exts, ext, ',');
if (n)
{
n--;
mode = extract_element (Mode_List_Modes, n, ',') + "_mode";
if (is_defined(mode))
{
eval (mode);
return;
}
}
!if (strncmp (strup (extract_filename (buffer_filename ())), "READ", 4))
{
text_mode ();
return;
}
@Default_Mode ();
}
%}}}
%{{{ Buffer flags and related functions
%!% sets buf modified flag. If argument is 1, mark
%!% buffer as modified. If argument is 0, mark buffer as unchanged.
define set_buffer_modified_flag(modif)
{
getbuf_info();
if (modif) () | 1; else () & ~(1);
setbuf_info(());
}
%!% returns non-zero if the buffer modified flag is set. It returns zero
%!% if the buffer modified flag is not been set. This works on the
%!% current buffer. See also 'set_buffer_modified_flag'.
define buffer_modified ()
{
variable flags;
(, , , flags) = getbuf_info ();
flags & 1;
}
%!% set undo mode for buffer. If argument is 1, undo is on. 0 turns it off
define set_buffer_undo(modif)
{
getbuf_info();
if (modif) () | 32; else () & ~(32);
setbuf_info(());
}
%!% Takes 1 parameter: 0 turn off readonly
%!% 1 turn on readonly
define set_readonly(n)
{
getbuf_info();
if (n) () | 8; else () & ~(8);
setbuf_info(());
}
%!% Takes 1 parameter: 0 turn off overwrite
%!% 1 turn on overwrite
define set_overwrite(n)
{
getbuf_info();
if (n) () | 16; else () & ~(16);
setbuf_info(());
}
define toggle_crmode ()
{
setbuf_info(getbuf_info() xor 0x400);
set_buffer_modified_flag (1);
}
define toggle_readonly()
{
setbuf_info(getbuf_info() xor 8);
}
define toggle_overwrite()
{
setbuf_info(getbuf_info() xor 16);
}
define toggle_undo()
{
setbuf_info(getbuf_info() xor 32);
}
%!% Prototype: Void set_buffer_no_backup ();
define set_buffer_no_backup ()
{
setbuf_info (getbuf_info() | 0x100);
}
%!% Prototype: Void set_buffer_no_autosave ();
define set_buffer_no_autosave ()
{
setbuf_info (getbuf_info() & ~(0x2));
}
%}}}
%{{{ Help stuff
%!% string to display at bottom of screen upon JED startup and when
%!% user executes the help function.
variable help_for_help_string;
help_for_help_string =
#ifdef VMS
"-> Help:H Menu:? Info:I Apropos:A Key:K Where:W Fnct:F VMSHELP:M Var:V";
#endif
#ifdef MSDOS
"-> Help:H Menu:? Info:I Apropos:A Key:K Where:W Fnct:F Var:V Mem:M";
#endif
#ifdef UNIX OS2
"-> Help:H Menu:? Info:I Apropos:A Key:K Where:W Fnct:F Var:V Man:M";
#endif
%%
%% help function
%%
%!% name of the file to load when the help function is called.
variable Help_File = "jed.hlp"; %% other modes will override this.
%{{{ help()
%!% Prototype: Void help ();
%!% Pop up a window containing a help file. The help file that is read
%!% in is given by the variable Help_File.
define help()
{
variable hlp = "*help*", buf, rows;
!if (buffer_visible (hlp))
{
!if (strlen(Help_File)) Help_File = "generic.hlp";
Help_File = expand_jedlib_file(Help_File);
buf = whatbuf();
onewindow();
rows = window_info('r');
setbuf(hlp);
set_readonly(0);
erase_buffer();
() = insert_file(Help_File);
pop2buf(hlp);
eob(); bskip_chars("\n");
rows = rows / 2 - (what_line() + 1);
bob();
set_buffer_modified_flag(0);
set_readonly(1);
pop2buf(buf);
loop (rows) enlargewin();
}
update (1);
message(help_for_help_string);
}
%}}}
variable Global_Top_Status_Line = " *** To activate menus, press `ESC ? ?'. For help, press `ESC ? h'. ***";
() = set_top_status_line (Global_Top_Status_Line);
%{{{ help_prefix()
define help_prefix()
{
variable c;
!if (input_pending(7)) flush (help_for_help_string);
c = toupper (getkey());
switch (c)
{ case 8 or case 'H': help (); }
{ case 'A' : apropos (); }
{ case 'I' : info_mode (); }
{ case '?' : menu_main_cmds ();}
{ case 'F' : describe_function ();}
{ case 'V' : describe_variable ();}
{ case 'W' : where_is ();}
{ case 'C' or case 'K': showkey ();}
{ case 'M' :
#ifdef UNIX OS2
unix_man();
#else
#ifdef VMS
vms_help ();
#endif
#endif
#ifdef MSDOS
call("coreleft");
#endif
}
{ beep(); clear_message ();}
}
%}}}
%}}}
%{{{ Mini-Buffer related stuff
% Load minibuffer routines now before any files are loaded.
% This will reduce fragmentation on PC.
!if (BATCH)
{
#ifdef MSDOS UNIX OS2 VMS
() = evalfile("mini");
#else
autoload ("mini_exit_minibuffer", "mini");
autoload ("prev_mini_command", "mini");
autoload ("next_mini_command", "mini");
#endif
}
%{{{ Reading from Mini-Buffer functions
%for compatability with older versions
%!% Prototype: String read_file_from_mini (String p);
%!% This function prompts the user for a file name using @p@ as a prompt.
%!% It reads a filename with completion from the mini-buffer and returns
%!% it.
%!% Related Functions: @read_with_completion@, @read_mini@
define read_file_from_mini ()
{
read_with_completion( () , Null_String, Null_String, 'f');
}
%!% Prototype: String read_string_with_completion (prompt, dflt, list)
%!% This function takes 3 String parameters and returns a String. The
%!% first parameter is used as the prompt, the second parameter is the
%!% default value to be returned and the third parameter is a list to be used
%!% for completions. This list is simply a comma separated list of strings.
define read_string_with_completion (prompt, dflt, list)
{
read_with_completion (list, prompt, dflt, Null_String, 's');
}
%}}}
%}}}
%{{{ Startup hook
%!% If non-zero, startup by asking user for a filename if one was
%!% not specified on the command line.
variable Startup_With_File = 0;
%% startup hook
%!% Function that gets executed right before JED enters its main editing
%!% loop. This is for last minute modifications of data structures that
%!% did not exist when startup files were loaded (e.g., minibuffer keymap)
define jed_startup_hook()
{
variable n, hlp, ok = 0, mini = "Mini_Map", file;
variable scratch = "*scratch*";
#ifdef MSDOS OS2
definekey ("next_mini_command", "\eOr", mini);
definekey ("next_mini_command", "\xE0P", mini);
definekey ("prev_mini_command", "\xE0H", mini);
definekey ("prev_mini_command", "\eOx", mini);
#else
definekey ("next_mini_command", "^[[B", mini);
definekey ("prev_mini_command", "^[[A", mini);
definekey ("next_mini_command", "^[OB", mini);
definekey ("prev_mini_command", "^[OA", mini);
#endif
definekey ("mini_exit_minibuffer", "^M", mini);
definekey ("exit_mini", "^[^M", mini);
% turn on Abort character processing
IGNORE_USER_ABORT = 0;
runhooks ("startup_hook");
!if (strcmp(whatbuf(), scratch) or buffer_modified())
{
ERROR_BLOCK
{
setbuf (scratch);
erase_buffer ();
set_buffer_modified_flag (0);
}
() = insert_file (expand_jedlib_file("cpright.hlp"));
set_buffer_modified_flag (0);
bob();
file = Null_String;
message (Null_String);
if (Startup_With_File > 0)
{
forever
{
file = read_file_from_mini ("Enter Filename:");
if (strlen(extract_filename(file))) break;
}
}
else !if (Startup_With_File)
{
do
{
update(1);
}
while (not (input_pending(600))); % 1 minute
}
EXECUTE_ERROR_BLOCK;
if (strlen (file)) () = find_file(file);
}
}
%}}}
#ifdef VMS
%{{{ resume_hook()
%% This resume hook is need for VMS when returning from spawn.
%% In fact, it is NEEDED for certain JED functions on VMS so declare it.
define resume_hook()
{
variable file = getenv("JED_FILE_NAME");
if (file != NULL)
!if (find_file(file)) error("File not found!");
}
%}}}
#endif VMS
%{{{ find_file_hook(file)
% called AFTER a file is read in to a buffer. FILENAME is on the stack.
define find_file_hook(file)
{
variable dir, a, f, m;
(dir, f) = parse_filename(file);
#ifndef VMS
if (file_status(dir) != 2)
{
verror ("Directory %s is invalid", dir);
}
#endif
if (No_Backups) set_buffer_no_backup ();
a = make_autosave_filename(dir, f);
if (file_time_compare(a, file) > 0)
{
m = sprintf ("Autosave file is newer. Use ESC-X recover_file. (%s)", f);
flush(m);
() = input_pending(50);
message(m);
}
runhooks ("user_find_file_hook");
}
%}}}
%{{{ Completions
%
% completions -- everything here must be predefined
% I just push the strings onto the stack and loop 'add_completion' over them
%
$0 = _stkdepth();
_add_completion ("toggle_undo", "calendar", "trim_buffer", "abbrev_mode",
"define_abbreviation", "save_abbrevs",
"occur", "append_region", "write_region",
"replace_across_buffer_files",
"recover_file", "compile", "sort", "untab", "fortran_mode",
"save_buffers",
"isearch_forward", "isearch_backward", "shell",
"edit_tab_stops", "c_mode", "toggle_crmode",
"text_mode", "no_mode", "goto_line_cmd", "goto_column_cmd",
"describe_mode",
"evalbuffer", "open_rect", "kill_rect", "insert_rect",
"copy_rect", "blank_rect",
"dired", "re_search_forward", "re_search_backward",
"query_replace_match", "bufed",
"describe_bindings", "search_backward", "search_forward",
"replace_cmd", "find_binary_file", "latex_mode", "sh_mode",
#ifndef MSDOS OS2
"mail",
#endif
#ifdef UNIX OS2
"ispell",
#endif
_stkdepth - $0); % matches _add_completion
%}}}
%{{{ save_buffer()
%!% Prototype: Void save_buffer ();
%!% Save current buffer.
define save_buffer()
{
variable flags, dir, file;
(file, , , flags) = getbuf_info();
!if (flags & 1) return (message("Buffer not modified."));
if (strlen(file))
{
() = write_buffer(buffer_filename ());
}
else call ("save_buffers");
} add_completion("save_buffer");
%}}}
%{{{ insert_buffer()
define insert_buffer()
{
read_with_completion("Insert Buffer:", Null_String, Null_String, 'b');
push_spot();
ERROR_BLOCK {pop_spot();}
insbuf(());
EXECUTE_ERROR_BLOCK;
} add_completion("insert_buffer");
%}}}
%{{{ get_y_or_n (str)
%!% Prototype: Integer get_y_or_n (prompt_str);
%!% This function may be used to get a `y' or `n' response from the user
%!% using @prompt_str@ to construct the prompt. It returns @1@ if the user
%!% responds with @y@, or @0@ if the response is @n@.
%!% See also: @get_yes_no@, @read_mini@, @message@, @flush@, @getkey@
define get_y_or_n (str)
{
variable ch;
EXIT_BLOCK
{
clear_message ();
}
flush (str + "? ([y]/n)");
ch = tolower (getkey ());
if ((ch == 'y') or (ch == '\r')) return 1;
if (ch == 'n') return 0;
beep ();
return get_yes_no (str);
}
%}}}
%{{{ Word movement and processing functions
%%
%% word movement definitions. Since these vary according to editors,
%% they are S-Lang routines.
%%
define skip_word ()
{
while (skip_non_word_chars(), eolp())
{
if (1 != right(1)) break;
}
skip_word_chars();
}
define bskip_word()
{
while (bskip_non_word_chars(), bolp())
{
!if (left(1)) break;
}
bskip_word_chars();
}
define delete_word()
{
push_mark(); skip_word(); del_region();
}
define bdelete_word ()
{
push_mark(); bskip_word(); del_region();
}
define xform_word () % parameter on stack
{
while (skip_non_word_chars(), eolp())
{
if (1 != right(1)) break;
}
push_mark(); skip_word();
xform_region(());
}
define capitalize_word()
{
xform_word('c');
}
define upcase_word()
{
xform_word('u');
}
define downcase_word()
{
xform_word('d');
}
%}}}
%{{{ smart_set_mark_cmd ()
%!% Prototype: Void push_visible_mark ();
%!% This function is performs the same task as @push_mark@ except that the
%!% region between this mark and the cursor position will be highlighted.
%!% Such a mark is said to be a visible mark.
%!% Related Functions: @push_mark@, @pop_mark@, @set_mark_cmd@
define push_visible_mark ()
{
push_mark ();
call ("set_mark_cmd");
}
%!% Prototype: Void set_mark_cmd ();
%!% If a mark is already set, and that mark is a visible mark, then this
%!% function will remove that mark. It will then push a visible mark onto
%!% the mark stack.
%!% Related Functions: @push_visible_mark@, @pop_mark@, @smart_set_mark_cmd@
define set_mark_cmd ()
{
if (is_visible_mark ())
pop_mark_0 ();
push_visible_mark ();
}
%!% Prototype: Void smart_set_mark_cmd ();
%!% If the top mark is a visible mark, this function will remove that mark;
%!% otherwise it will push a visible mark onto the mark stack. Use of
%!% this function has the effect of toggling a highlighted region.
%!% Related Functions: @set_mark_cmd@, @push_mark@, @push_visible_mark@
define smart_set_mark_cmd ()
{
if (is_visible_mark ())
{
pop_mark_0 ();
return;
}
set_mark_cmd ();
}
%}}}
%{{{ buffer_format_in_columns()
%!% Prototype Void buffer_format_in_columns();
%!% takes a buffer consisting of a sigle column of items and converts the
%!% buffer to a multi-column format.
define buffer_format_in_columns()
{
push_spot_bob ();
forever
{
_for (0,4,1)
{
goto_column(() * 14 + 1);
if (eolp())
{
if (eobp())
{
pop_spot();
return;
}
insert_single_space;
del();
}
}
!if (down_1 ()) break;
% bol (); % this is a side effect of going down
}
pop_spot();
}
%}}}
%{{{ delete_line()
define delete_line()
{
bol(); push_mark_eol (); go_right_1 (); del_region();
}
%}}}
%{{{ set_fill_column ()
define set_fill_column ()
{
push_spot();
eol();
WRAP = what_column ();
pop_spot();
vmessage ("WRAP column at %d.", WRAP);
}
%}}}
%{{{ rename_buffer(name)
define rename_buffer(name)
{
variable flags = getbuf_info(); pop(); setbuf_info(name, flags);
}
%}}}
%{{{ deln (n)
%!% Prototype: Void deln (Integer n);
%!% delete the next 'n' characters.
define deln (n)
{
push_mark (); go_right(n); del_region ();
}
%}}}
%{{{ insert_spaces (n)
define insert_spaces (n)
{
loop (n) insert_single_space ();
}
%}}}
%{{{ blooking_at (str)
define blooking_at (str)
{
variable n = strlen (str);
EXIT_BLOCK
{
pop_spot ();
}
push_spot ();
if (n != left(n)) return 0;
return looking_at (str);
}
%}}}
%{{{ exchange_point_and_mark ()
define exchange_point_and_mark ()
{
call ("exchange");
}
%}}}
%{{{ str_split (str, n)
% This ought to be a slang intrinsic!!!
define str_split (str, n)
{
substr (str, 1, n - 1);
substr (str, n, strlen (str));
}
%}}}
#ifndef VMS
%{{{ expand_file_hook (file)
define expand_file_hook (file)
{
variable changed = 0;
variable envvar;
variable pos, len, name, dir;
variable file0, file1, file2;
file2 = file;
file = Null_String;
% Check for environment variable of form $(variable)
while (andelse
{strlen (file2)}
{string_match (file2, "\\$[^/$]+", 1)})
{
changed++;
(pos, len) = string_match_nth (0);
pos++;
(file0, file1) = str_split (file2, pos);
(file1, file2) = str_split (file1, len + 1);
envvar = getenv (substr (file1, 2, len - 1));
if (envvar == NULL) envvar = "";
file += file0 + envvar;
}
file += file2;
#ifdef UNIX
% Now look for things like: /~name/...
pos = string_match (file, "^~", 1);
!if (pos)
pos = -string_match (file, "/~", 1);
if (pos)
{
if (pos < 0)
{
pos = -pos;
pos++;
}
pos++;
file = substr (file, pos, strlen (file));
pos = is_substr (file, "/");
if (pos)
{
(name, file) = str_split (file, pos);
}
else
{
name = file;
file = Null_String;
}
!if (strlen (name))
return 0;
if (file[0] == '/') (, file) = str_split (file, 2);
(dir,,,,) = get_passwd_info (name);
file = dircat (dir, file);
changed++;
}
#endif
if (changed)
{
file;
}
changed;
}
set_expansion_hook ("expand_file_hook");
%}}}
#endif VMS
% This fixes some bug in OS2 dealing with 'dir' issued non-interactively.
#ifdef OS2
if (NULL != getenv("DIRCMD")) putenv("DIRCMD=/ogn");
#endif
() = evalfile ("os.sl");
%---------------------------------------------------------------------------
variable Default_Jedrc_Startup_File = "jed.rc";
% This is the command line hook function that is called from main
define command_line_hook () %{{{
{
variable n, i, file, depth, next_file, tmp;
n = MAIN_ARGC; --n; i = 1;
if (BATCH) { --n; ++i; } % batch - 1st arg is not used
% if first argument is -n then do NOT load init file
if (n) (command_line_arg(i) != "-n"); else 1;
if (())
{
#ifdef VMS
if (NULL != getenv("JED_HOME")) "JED_HOME:"; else "SYS$LOGIN:";
#else
file = getenv ("JED_HOME");
if (file == NULL)
{
file = getenv("HOME");
if (file == NULL) file = "";
}
file;
#endif
#ifdef UNIX
".jedrc";
#else
"jed.rc";
#endif
file = dircat((), ());
if (file_status (file) != 1)
{
file = Default_Jedrc_Startup_File;
if (file_status (file) != 1)
file = "jed.rc";
}
depth = _stkdepth ();
() = evalfile (file);
depth = _stkdepth () - depth;
if (depth)
{
flush ("Excess junk left on stack by " + file);
usleep (1000);
_pop_n (depth);
}
}
else
{
--n; ++i;
}
!if (n) return;
%
% Is JED to emulate most?
%
if ("-most" == command_line_arg(i))
{
run_most (i + 1);
return;
}
if ("-info" == command_line_arg(i))
{
info_reader (i + 1);
return;
}
while (n > 0)
{
#ifdef MSDOS % lowercase name
file = strlow (command_line_arg(i));
#else
file = command_line_arg(i);
#endif
--n; ++i;
if (n)
{
#ifdef MSDOS % use lowercase name
next_file = strlow (command_line_arg(i));
#else
next_file = command_line_arg(i);
#endif
}
switch (file)
{case "-f" and n : eval(next_file);}
{case "-g" and n : goto_line(integer(next_file));}
{case "-s" and n :
() = fsearch(next_file);
save_search_string(next_file);
}
{case "-l" and n : () = evalfile(next_file); }
{case "-i" and n : () = insert_file(next_file);}
{case "-2" : splitwindow(); ++n; --i;}
{case "-tmp":
set_buffer_no_backup ();
set_buffer_no_autosave ();
++n; --i;
}
#iftrue
{case "-hook" and n: % run user hook
() = evalfile (next_file);
if (is_defined (next_file))
{
i++; % skip next_file
i; % leave argc on the stack
eval (next_file); % hook name == file name (but no .sl)
return;
}
}
#endif
{
tmp = str_replace_all (substr (file, 3, -1), "-", "_");
(not (strncmp (file, "--", 2))
and is_defined (tmp))
:
eval (tmp);
++n; --i;
}
{
depth = _stkdepth;
% The integer call below could fail...
ERROR_BLOCK
{
_pop_n (_stkdepth - depth);
_clear_error ();
0;
}
(andelse
{ n and (file[0] == '+')}
{integer (file) >= 0})
:
() = find_file (next_file);
goto_line (integer (file));
}
{
flush ("Reading " + file);
() = find_file(file); ++n; --i;
}
--n; ++i;
}
}
%}}}
%---------------------------------------------------------------------------
%
% This code fragment looks for the existence of "defaults.sl" and loads
% it. This file IS NOT distributed with JED.
%
if (1 == file_status ("/etc/jed-defaults.sl"))
() = evalfile("/etc/jed-defaults.sl");
else if (strlen(expand_jedlib_file("defaults.sl")))
() = evalfile("defaults");
|