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
|
\input texinfo
@c =============================================================
@c = $B85(B $BK](B $BLu(B: $BEDCfAo!wEl5~=w;RBg3X(B
@c = $B2CI.=$@5(B: $BBgLZFXM:!wBgDM(B.$BC^GHBg3X(B = 1998/11/25
@c = 20.4$B2~D{(B: $BBgLZFXM:!wBgDM(B.$BC^GHBg3X(B = 1999/09/12
@c = 20.5$B2~D{(B: $BBgLZFXM:!wBgDM(B.$BC^GHBg3X(B = 1999/12/13
@c = $B$?$@$7!"(BGPL$B$K4X$7$F$O0zCOH~7C;R!J(Bmieko@gnu.org$B!K$N4IM}$7$F(B
@c = $B$$$kF|K\8lLu!J(BFSF$B$N;X<($K=>$C$FJ[8n;N$N%l%S%e!<$r7P$?$b$N!K(B
@c = $B$rMQ$$$?!#(B
@c =============================================================
@setchapternewpage odd
@c @settitle GNU Emacs Manual
@settitle GNU Emacs$B%^%K%e%"%k(B
@setfilename ../info/emacs
@synindex pg cp
@ifinfo
@c @c The edition number appears in several places in this file
@c This is the thirteenth edition of the @cite{GNU Emacs Manual},
@c updated for Emacs version 20.5.
Emacs 20.5$BHGBP1~$K2~D{$7$?(B@cite{GNU Emacs Manual} 13$BHG$G$9!#(B
@c Please REMEMBER to update edition number in *three* places in this file.
@dircategory Editors
@direntry
* Emacs: (emacs). The extensible self-documenting text editor.
@end direntry
Published by the Free Software Foundation
59 Temple Place, Suite 330
Boston, MA 02111-1307 USA
Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999
Free Software Foundation, Inc.
Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
are preserved on all copies.
@ignore
Permission is granted to process this file through Tex and print the
results, provided the printed document carries copying permission
notice identical to this one except for the removal of this paragraph
(this paragraph not being relevant to the printed manual).
@end ignore
Permission is granted to copy and distribute modified versions of this
manual under the conditions for verbatim copying, provided also that the
sections entitled ``The GNU Manifesto'', ``Distribution'' and ``GNU
General Public License'' are included exactly as in the original, and
provided that the entire resulting derived work is distributed under the
terms of a permission notice identical to this one.
Permission is granted to copy and distribute translations of this manual
into another language, under the above conditions for modified versions,
except that the sections entitled ``The GNU Manifesto'',
``Distribution'' and ``GNU General Public License'' may be included in a
translation approved by the Free Software Foundation instead of in the
original English.
@end ifinfo
@c
@c comment out this line if you do NOT want to have indication that
@c an index entry appears in the texinfo file near this line of text.
@c this line should definitely be commented out for printing a master
@c and for making the version to go on the floppy disk.
@c
@c @include /gd/gnu/doc/margins-comment-format.texi
@c in general, keep the following line commented out, unless doing a
@c copy of this manual that will be published. the manual should go
@c onto the distribution in the full, 8.5 x 11" size.
@smallbook
@iftex
@kbdinputstyle code
@c @shorttitlepage GNU Emacs Manual
@shorttitlepage GNU Emacs$B%^%K%e%"%k(B
@end iftex
@titlepage
@sp 6
@c @center @titlefont{GNU Emacs Manual}
@center @titlefont{GNU Emacs$B%^%K%e%"%k(B}
@sp 4
@c @center Thirteenth Edition, Updated for Emacs Version 20.5
@center $BBh(B13$BHG!"(B Emacs$B%P!<%8%g%s(B20.5$BBP1~2~D{HG(B
@sp 5
@center Richard Stallman
@page
@vskip 0pt plus 1filll
Copyright @copyright{} 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999
Free Software Foundation, Inc.
@sp 2
@c = $B86Cx$O(B20.1$B$GI=<($5$l$F$k$1$I!D(B
Thirteenth Edition @*
Updated for Emacs Version 20.5, @*
February 1999
ISBN 1-882114-06-X
@sp 1
Published by the Free Software Foundation @*
59 Temple Place, Suite 330 @*
Boston, MA 02111-1307 USA
@sp 1
Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
are preserved on all copies.
Permission is granted to copy and distribute modified versions of this
manual under the conditions for verbatim copying, provided also that the
sections entitled ``The GNU Manifesto'', ``Distribution'' and ``GNU
General Public License'' are included exactly as in the original, and
provided that the entire resulting derived work is distributed under the
terms of a permission notice identical to this one.
Permission is granted to copy and distribute translations of this manual
into another language, under the above conditions for modified versions,
except that the sections entitled ``The GNU Manifesto'',
``Distribution'' and ``GNU General Public License'' may be included in a
translation approved by the Free Software Foundation instead of in the
original English.
@c = $B86Cx$NI=;f$O$=$&$@$1$I!D(B
@sp 2
@c Cover art by Etienne Suvasa.
@end titlepage
@page
@ifinfo
@node Top, Distrib, (dir), (dir)
@top The Emacs Editor
@c Emacs is the extensible, customizable, self-documenting real-time
@c display editor. This Info file describes how to edit with Emacs and
@c some of how to customize it; it corresponds to GNU Emacs version 20.5.
@c For information on extending Emacs, see @ref{,Emacs Lisp,, elisp, The
@c Emacs Lisp Reference Manual}.
Emacs$B$O!"3HD%2DG=$G!"%+%9%?%^%$%:2DG=$J!"(B
$B%;%k%U%I%-%e%a%s%HJ}<0$N%j%"%k%?%$%`2hLL%(%G%#%?$G$9!#(B
$B$3$N(Binfo$B%U%!%$%k$G$O!"(BEmacs$B$G$NJT=8J}K!$d(B
Emacs$B$N%+%9%?%^%$%:J}K!$N0lIt$K$D$$$F@bL@$7$^$9!#(B
GNU Emacs 20.5$BHG$KBP1~$7$^$9!#(B
Emacs$B$N3HD%$K4X$7$F$O!"(B
@ref{,Emacs Lisp,, elisp, The Emacs Lisp Reference Manual}$B$r;2>H$7$F$/$@$5$$!#(B
@end ifinfo
@ignore
These subcategories have been deleted for simplicity
and to avoid conflicts.
Completion
Backup Files
Auto-Saving: Protection Against Disasters
Snapshots
Text Mode
Outline Mode
@TeX{} Mode
Formatted Text
Fortran Mode
Fortran Indentation
Shell Command History
The ones for Dired and Rmail have had the items turned into :: items
to avoid conflicts.
Also Running Shell Commands from Emacs
and Sending Mail and Registers and Minibuffer.
@end ignore
@menu
* Distrib:: How to get the latest Emacs distribution.
* Copying:: The GNU General Public License gives you permission
to redistribute GNU Emacs on certain terms;
it also explains that there is no warranty.
* Intro:: An introduction to Emacs concepts.
* Glossary:: The glossary.
* Antinews:: Information about Emacs version 19.
* MS-DOS:: Using Emacs on MS-DOS (otherwise known as "MS-DOG").
* Manifesto:: What's GNU? Gnu's Not Unix!
* Acknowledgments:: Major contributors to GNU Emacs.
@c Indexes (nodes containing large menus)
$B:w0z(B
* Key Index:: An item for each standard Emacs key sequence.
* Command Index:: An item for each command name.
* Variable Index:: An item for each documented variable.
* Concept Index:: An item for each concept.
@c Important General Concepts
$B=EMW$JA4HLE*$J35G0(B
* Screen:: How to interpret what you see on the screen.
* User Input:: Kinds of input events (characters, buttons,
function keys).
* Keys:: Key sequences: what you type to request one
editing action.
* Commands:: Named functions run by key sequences to do editing.
* Text Characters:: Character set for text (the contents of buffers
and strings).
* Entering Emacs:: Starting Emacs from the shell.
* Exiting:: Stopping or killing Emacs.
* Command Arguments:: Hairy startup options.
@c Fundamental Editing Commands
$B4pK\E*$JJT=8%3%^%s%I(B
* Basic:: The most basic editing commands.
* Minibuffer:: Entering arguments that are prompted for.
* M-x:: Invoking commands by their names.
* Help:: Commands for asking Emacs about its commands.
@c Important Text-Changing Commands
$B=EMW$J%F%-%9%HJQ99%3%^%s%I(B
* Mark:: The mark: how to delimit a ``region'' of text.
* Killing:: Killing text.
* Yanking:: Recovering killed text. Moving text.
* Accumulating Text:: Other ways of copying text.
* Rectangles:: Operating on the text inside a rectangle on the screen.
* Registers:: Saving a text string or a location in the buffer.
* Display:: Controlling what text is displayed.
* Search:: Finding or replacing occurrences of a string.
* Fixit:: Commands especially useful for fixing typos.
@c Major Structures of Emacs
Emacs$B$N<gMW$J9=B$(B
* Files:: All about handling files.
* Buffers:: Multiple buffers; editing several files at once.
* Windows:: Viewing two pieces of text at once.
* Frames:: Running the same Emacs session in multiple X windows.
* International:: Using non-ASCII character sets (the MULE features).
@c Advanced Features
$BCf5i8~$1$N5!G=(B
* Major Modes:: Text mode vs. Lisp mode vs. C mode ...
* Indentation:: Editing the white space at the beginnings of lines.
* Text:: Commands and modes for editing English.
* Programs:: Commands and modes for editing programs.
* Building:: Compiling, running and debugging programs.
* Abbrevs:: How to define text abbreviations to reduce
the number of characters you must type.
* Picture:: Editing pictures made up of characters
using the quarter-plane screen model.
* Sending Mail:: Sending mail in Emacs.
* Rmail:: Reading mail in Emacs.
* Dired:: You can ``edit'' a directory to manage files in it.
* Calendar/Diary:: The calendar and diary facilities.
* Gnus:: How to read netnews with Emacs.
* Shell:: Executing shell commands from Emacs.
* Emacs Server:: Using Emacs as an editing server for @code{mail}, etc.
* Hardcopy:: Printing buffers or regions.
* Postscript:: Printing buffers or regions as Postscript.
* Postscript Variables::
Customizing the Postscript printing commands.
* Sorting:: Sorting lines, paragraphs or pages within Emacs.
* Narrowing:: Restricting display and editing to a portion
of the buffer.
* Two-Column:: Splitting apart columns to edit them
in side-by-side windows.
* Editing Binary Files::
Using Hexl mode to edit binary files.
* Saving Emacs Sessions::
Saving Emacs state from one session to the next.
* Recursive Edit:: A command can allow you to do editing
"within the command". This is called a
`recursive editing level'.
* Emulation:: Emulating some other editors with Emacs.
* Dissociated Press:: Dissociating text for fun.
* Amusements:: Various games and hacks.
* Customization:: Modifying the behavior of Emacs.
@c Recovery from Problems
$B%H%i%V%k$+$i$NI|5l(B
* Quitting:: Quitting and aborting.
* Lossage:: What to do if Emacs is hung or malfunctioning.
* Bugs:: How and when to report a bug.
* Contributing:: How to contribute improvements to Emacs.
* Service:: How to get help for your own Emacs needs.
@c Here are some other nodes which are really inferiors of the ones
@c already listed, mentioned here so you can get to them in one step:
$B0J2<$O!">e$K$"$2$?%a%K%e!<$N2<0L%a%K%e!<$G$9!#(B
1$B%9%F%C%W$G0\F0$G$-$k$h$&$K<($7$F$*$-$^$9!#(B
@c --- The Detailed Node Listing ---
$B!]!]!](B $B>\:Y%N!<%I0lMw(B $B!]!]!](B
@c The Organization of the Screen
$B%9%/%j!<%s$N9=@.(B
* Point:: The place in the text where editing commands operate.
* Echo Area:: Short messages appear at the bottom of the screen.
* Mode Line:: Interpreting the mode line.
* Menu Bar:: How to use the menu bar.
@c Basic Editing Commands
$B4pK\JT=8%3%^%s%I(B
* Inserting Text:: Inserting text by simply typing it.
* Moving Point:: How to move the cursor to the place where you want to
change something.
* Erasing:: Deleting and killing text.
* Undo:: Undoing recent changes in the text.
* Files: Basic Files. Visiting, creating, and saving files.
* Help: Basic Help. Asking what a character does.
* Blank Lines:: Commands to make or delete blank lines.
* Continuation Lines:: Lines too wide for the screen.
* Position Info:: What page, line, row, or column is point on?
* Arguments:: Numeric arguments for repeating a command.
@c The Minibuffer
$B%_%K%P%C%U%!(B
* Minibuffer File:: Entering file names with the minibuffer.
* Minibuffer Edit:: How to edit in the minibuffer.
* Completion:: An abbreviation facility for minibuffer input.
* Minibuffer History:: Reusing recent minibuffer arguments.
* Repetition:: Re-executing commands that used the minibuffer.
@c Help
$B%X%k%W(B
* Help Summary:: Brief list of all Help commands.
* Key Help:: Asking what a key does in Emacs.
* Name Help:: Asking about a command, variable or function name.
* Apropos:: Asking what pertains to a given topic.
* Library Keywords:: Finding Lisp libraries by keywords (topics).
* Language Help:: Help relating to international language support.
* Misc Help:: Other help commands.
@c The Mark and the Region
$B%^!<%/$H%j!<%8%g%s(B
* Setting Mark:: Commands to set the mark.
* Transient Mark:: How to make Emacs highlight the region--
when there is one.
* Using Region:: Summary of ways to operate on contents of the region.
* Marking Objects:: Commands to put region around textual units.
* Mark Ring:: Previous mark positions saved so you can go back there.
* Global Mark Ring:: Previous mark positions in various buffers.
@c Deletion and Killing
$B:o=|$H%-%k(B
* Deletion:: Commands for deleting small amounts of text and
blank areas.
* Killing by Lines:: How to kill entire lines of text at one time.
* Other Kill Commands:: Commands to kill large regions of text and
syntactic units such as words and sentences.
@c Yanking
$B%d%s%/(B
* Kill Ring:: Where killed text is stored. Basic yanking.
* Appending Kills:: Several kills in a row all yank together.
* Earlier Kills:: Yanking something killed some time ago.
@c Registers
$B%l%8%9%?(B
* RegPos:: Saving positions in registers.
* RegText:: Saving text in registers.
* RegRect:: Saving rectangles in registers.
* RegConfig:: Saving window configurations in registers.
* RegFiles:: File names in registers.
* Bookmarks:: Bookmarks are like registers, but persistent.
@c Controlling the Display
$BI=<(J}K!$N@)8f(B
* Scrolling:: Moving text up and down in a window.
* Horizontal Scrolling:: Moving text left and right in a window.
* Follow Mode:: Follow mode lets two windows scroll as one.
* Selective Display:: Hiding lines with lots of indentation.
* Optional Mode Line:: Optional mode line display features.
* Text Display:: How text is normally displayed.
* Display Vars:: Information on variables for customizing display.
@c Searching and Replacement
$BC5:w$HCV49(B
* Incremental Search:: Search happens as you type the string.
* Nonincremental Search:: Specify entire string and then search.
* Word Search:: Search for sequence of words.
* Regexp Search:: Search for match for a regexp.
* Regexps:: Syntax of regular expressions.
* Search Case:: To ignore case while searching, or not.
* Replace:: Search, and replace some or all matches.
* Other Repeating Search:: Operating on all matches for some regexp.
@c Replacement Commands
$BCV49%3%^%s%I(B
* Unconditional Replace:: Replacing all matches for a string.
* Regexp Replace:: Replacing all matches for a regexp.
* Replacement and Case:: How replacements preserve case of letters.
* Query Replace:: How to use querying.
@c Commands for Fixing Typos
$BDV$j8m$jD{@5MQ$N%3%^%s%I(B
* Kill Errors:: Commands to kill a batch of recently entered text.
* Transpose:: Exchanging two characters, words, lines, lists...
* Fixing Case:: Correcting case of last word entered.
* Spelling:: Apply spelling checker to a word or a whole buffer.
@c File Handling
$B%U%!%$%k$N07$$J}(B
* File Names:: How to type and edit file-name arguments.
* Visiting:: Visiting a file prepares Emacs to edit the file.
* Saving:: Saving makes your changes permanent.
* Reverting:: Reverting cancels all the changes not saved.
* Auto Save:: Auto Save periodically protects against loss of data.
* File Aliases:: Handling multiple names for one file.
* Version Control:: Version control systems (RCS, CVS and SCCS).
* Directories:: Creating, deleting, and listing file directories.
* Comparing Files:: Finding where two files differ.
* Misc File Ops:: Other things you can do on files.
* Compressed Files:: Accessing compressed files.
* Remote Files:: Accessing files on other sites.
* Quoted File Names:: Quoting special characters in file names.
@c Saving Files
$B%U%!%$%k$NJ]B8(B
* Backup:: How Emacs saves the old version of your file.
* Interlocking:: How Emacs protects against simultaneous editing
of one file by two users.
@c Version Control
$BHG4IM}(B
* Introduction to VC:: How version control works in general.
* VC Mode Line:: How the mode line shows version control status.
* Basic VC Editing:: How to edit a file under version control.
* Old Versions:: Examining and comparing old versions.
* Secondary VC Commands:: The commands used a little less frequently.
* Branches:: Multiple lines of development.
* Snapshots:: Sets of file versions treated as a unit.
* Miscellaneous VC:: Various other commands and features of VC.
* Customizing VC:: Variables that change VC's behavior.
@c Using Multiple Buffers
$BJ#?t$N%P%C%U%!$N;H$$J}(B
* Select Buffer:: Creating a new buffer or reselecting an old one.
* List Buffers:: Getting a list of buffers that exist.
* Misc Buffer:: Renaming; changing read-onlyness; copying text.
* Kill Buffer:: Killing buffers you no longer need.
* Several Buffers:: How to go through the list of all buffers
and operate variously on several of them.
* Indirect Buffers:: An indirect buffer shares the text of another buffer.
@c Multiple Windows
$BJ#?t$N%&%#%s%I%&(B
* Basic Window:: Introduction to Emacs windows.
* Split Window:: New windows are made by splitting existing windows.
* Other Window:: Moving to another window or doing something to it.
* Pop Up Window:: Finding a file or buffer in another window.
* Force Same Window:: Forcing certain buffers to appear in the selected
window rather than in another window.
* Change Window:: Deleting windows and changing their sizes.
@c Frames and X Windows
$B%U%l!<%`$H(BX$B%&%#%s%I%&%7%9%F%`(B
* Mouse Commands:: Moving, cutting, and pasting, with the mouse.
* Secondary Selection:: Cutting without altering point and mark.
* Mouse References:: Using the mouse to select an item from a list.
* Menu Mouse Clicks:: Mouse clicks that bring up menus.
* Mode Line Mouse:: Mouse clicks on the mode line.
* Creating Frames:: Creating additional Emacs frames with various contents.
* Multiple Displays:: How one Emacs job can talk to several displays.
* Special Buffer Frames:: You can make certain buffers have their own frames.
* Frame Parameters:: Changing the colors and other modes of frames.
* Scroll Bars:: How to enable and disable scroll bars; how to use them.
* Menu Bars:: Enabling and disabling the menu bar.
* Faces:: How to change the display style using faces.
* Font Lock:: Minor mode for syntactic highlighting using faces.
* Support Modes:: Font Lock support modes make Font Lock faster.
* Misc X:: Iconifying and deleting frames. Region highlighting.
* Non-Window Terminals:: Multiple frames on terminals that show only one.
@c Font Lock Support Modes
$B%U%)%s%H%m%C%/%b!<%I(B
* Fast Lock Mode:: Saving font information in files.
* Lazy Lock Mode:: Fontifying only text that is actually displayed.
* Fast or Lazy:: Which support mode is best for you?
@c International Character Set Support
$B9q:]2=J8;z=89g(B
* International Intro:: Basic concepts of multibyte characters.
* Enabling Multibyte:: Controlling whether to use multibyte characters.
* Language Environments:: Setting things up for the language you use.
* Input Methods:: Entering text characters not on your keyboard.
* Select Input Method:: Specifying your choice of input methods.
* Coding Systems:: Character set conversion when you read and
write files, and so on.
* Recognize Coding:: How Emacs figures out which conversion to use.
* Specify Coding:: Various ways to choose which conversion to use.
* Fontsets:: Fontsets are collections of fonts
that cover the whole spectrum of characters.
* Defining Fontsets:: Defining a new fontset.
* Single-Byte European Support::
You can pick one European character set
to use without multibyte characters.
@c Major Modes
$B%a%8%c!<%b!<%I(B
* Choosing Modes:: How major modes are specified or chosen.
@c Indentation
$B;z2<$2(B
* Indentation Commands:: Various commands and techniques for indentation.
* Tab Stops:: You can set arbitrary "tab stops" and then
indent to the next tab stop when you want to.
* Just Spaces:: You can request indentation using just spaces.
@c Commands for Human Languages
$B<+A38@8l8~$1%3%^%s%I(B
* Words:: Moving over and killing words.
* Sentences:: Moving over and killing sentences.
* Paragraphs:: Moving over paragraphs.
* Pages:: Moving over pages.
* Filling:: Filling or justifying text.
* Case:: Changing the case of text.
* Text Mode:: The major modes for editing text files.
* Outline Mode:: Editing outlines.
* TeX Mode:: Editing input to the formatter TeX.
* Nroff Mode:: Editing input to the formatter nroff.
* Formatted Text:: Editing formatted text directly in WYSIWYG fashion.
@c Filling Text
$B%F%-%9%H$r5M$a9~$`(B
* Auto Fill:: Auto Fill mode breaks long lines automatically.
* Fill Commands:: Commands to refill paragraphs and center lines.
* Fill Prefix:: Filling paragraphs that are indented
or in a comment, etc.
* Adaptive Fill:: How Emacs can determine the fill prefix automatically.
@c Editing Programs
$B%W%m%0%i%`$NJT=8(B
* Program Modes:: Major modes for editing programs.
* Lists:: Expressions with balanced parentheses.
* List Commands:: The commands for working with list and sexps.
* Defuns:: Each program is made up of separate functions.
There are editing commands to operate on them.
* Program Indent:: Adjusting indentation to show the nesting.
* Matching:: Insertion of a close-delimiter flashes matching open.
* Comments:: Inserting, killing, and aligning comments.
* Balanced Editing:: Inserting two matching parentheses at once, etc.
* Symbol Completion:: Completion on symbol names of your program or language.
* Documentation:: Getting documentation of functions you plan to call.
* Change Log:: Maintaining a change history for your program.
* Tags:: Go directly to any function in your program in one
command. Tags remembers which file it is in.
* Emerge:: A convenient way of merging two versions of a program.
* C Modes:: Special commands of C, C++, Objective-C and Java modes.
* Fortran:: Fortran mode and its special features.
* Asm Mode:: Asm mode and its special features.
@c Indentation for Programs
$B%W%m%0%i%`$N;z2<$2(B
* Basic Indent:: Indenting a single line.
* Multi-line Indent:: Commands to reindent many lines at once.
* Lisp Indent:: Specifying how each Lisp function should be indented.
* C Indent:: Choosing an indentation style for C code.
@c Tags Tables
$B%?%0%F!<%V%k(B
* Tag Syntax:: Tag syntax for various types of code and text files.
* Create Tags Table:: Creating a tags table with @code{etags}.
* Select Tags Table:: How to visit a tags table.
* Find Tag:: Commands to find the definition of a specific tag.
* Tags Search:: Using a tags table for searching and replacing.
* List Tags:: Listing and finding tags defined in a file.
@c Merging Files with Emerge
emerge$B$K$h$k%U%!%$%k$NJ;9g(B
* Overview of Emerge:: How to start Emerge. Basic concepts.
* Submodes of Emerge:: Fast mode vs. Edit mode.
Skip Prefers mode and Auto Advance mode.
* State of Difference:: You do the merge by specifying state A or B
for each difference.
* Merge Commands:: Commands for selecting a difference,
changing states of differences, etc.
* Exiting Emerge:: What to do when you've finished the merge.
* Combining in Emerge:: How to keep both alternatives for a difference.
* Fine Points of Emerge:: Misc.
@c Compiling and Testing Programs
$B%W%m%0%i%`$N%3%s%Q%$%k$H%F%9%H(B
* Compilation:: Compiling programs in languages other
than Lisp (C, Pascal, etc.).
* Compilation Mode:: The mode for visiting compiler errors.
* Compilation Shell:: Customizing your shell properly
for use in the compilation buffer.
* Debuggers:: Running symbolic debuggers for non-Lisp programs.
* Executing Lisp:: Various modes for editing Lisp programs,
with different facilities for running
the Lisp programs.
* Lisp Libraries:: Creating Lisp programs to run in Emacs.
* Lisp Interaction:: Executing Lisp in an Emacs buffer.
* Lisp Eval:: Executing a single Lisp expression in Emacs.
* External Lisp:: Communicating through Emacs with a separate Lisp.
@c Running Debuggers Under Emacs
Emacs$B$G%G%P%C%,$r5/F0$9$k(B
* Starting GUD:: How to start a debugger subprocess.
* Debugger Operation:: Connection between the debugger and source buffers.
* Commands of GUD:: Key bindings for common commands.
* GUD Customization:: Defining your own commands for GUD.
@c Abbrevs
$BN,8l(B
* Abbrev Concepts:: Fundamentals of defined abbrevs.
* Defining Abbrevs:: Defining an abbrev, so it will expand when typed.
* Expanding Abbrevs:: Controlling expansion: prefixes, canceling expansion.
* Editing Abbrevs:: Viewing or editing the entire list of defined abbrevs.
* Saving Abbrevs:: Saving the entire list of abbrevs for another session.
* Dynamic Abbrevs:: Abbreviations for words already in the buffer.
@c Editing Pictures
$B3($NJT=8(B
* Basic Picture:: Basic concepts and simple commands of Picture Mode.
* Insert in Picture:: Controlling direction of cursor motion
after "self-inserting" characters.
* Tabs in Picture:: Various features for tab stops and indentation.
* Rectangles in Picture:: Clearing and superimposing rectangles.
@c Sending Mail
$B%a%$%k$NAw?.(B
* Mail Format:: Format of the mail being composed.
* Mail Headers:: Details of permitted mail header fields.
* Mail Aliases:: Abbreviating and grouping mail addresses.
* Mail Mode:: Special commands for editing mail being composed.
* Distracting NSA:: How to distract the NSA's attention.
* Mail Methods:: Using alternative mail-composition methods.
@c Reading Mail with Rmail
rmail$B$G%a%$%k$rFI$`(B
* Rmail Basics:: Basic concepts of Rmail, and simple use.
* Rmail Scrolling:: Scrolling through a message.
* Rmail Motion:: Moving to another message.
* Rmail Deletion:: Deleting and expunging messages.
* Rmail Inbox:: How mail gets into the Rmail file.
* Rmail Files:: Using multiple Rmail files.
* Rmail Output:: Copying message out to files.
* Rmail Labels:: Classifying messages by labeling them.
* Rmail Attributes:: Certain standard labels, called attributes.
* Rmail Reply:: Sending replies to messages you are viewing.
* Rmail Summary:: Summaries show brief info on many messages.
* Rmail Sorting:: Sorting messages in Rmail.
* Rmail Display:: How Rmail displays a message; customization.
* Rmail Editing:: Editing message text and headers in Rmail.
* Rmail Digest:: Extracting the messages from a digest message.
* Out of Rmail:: Converting an Rmail file to mailbox format.
* Rmail Rot13:: Reading messages encoded in the rot13 code.
* Movemail:: More details of fetching new mail.
@c Dired, the Directory Editor
$B%G%#%l%/%H%j%(%G%#%?(Bdired
* Dired Enter:: How to invoke Dired.
* Dired Commands:: Commands in the Dired buffer.
* Dired Deletion:: Deleting files with Dired.
* Flagging Many Files:: Flagging files based on their names.
* Dired Visiting:: Other file operations through Dired.
* Marks vs Flags:: Flagging for deletion vs marking.
* Operating on Files:: How to copy, rename, print, compress, etc.
either one file or several files.
* Shell Commands in Dired:: Running a shell command on the marked files.
* Transforming File Names:: Using patterns to rename multiple files.
* Comparison in Dired:: Running `diff' by way of Dired.
* Subdirectories in Dired:: Adding subdirectories to the Dired buffer.
* Subdirectory Motion:: Moving across subdirectories, and up and down.
* Hiding Subdirectories:: Making subdirectories visible or invisible.
* Dired Updating:: Discarding lines for files of no interest.
* Dired and Find:: Using `find' to choose the files for Dired.
@c The Calendar and the Diary
$BNq$HF|;o(B
* Calendar Motion:: Moving through the calendar; selecting a date.
* Scroll Calendar:: Bringing earlier or later months onto the screen.
* Counting Days:: How many days are there between two dates?
* General Calendar:: Exiting or recomputing the calendar.
* LaTeX Calendar:: Print a calendar using LaTeX.
* Holidays:: Displaying dates of holidays.
* Sunrise/Sunset:: Displaying local times of sunrise and sunset.
* Lunar Phases:: Displaying phases of the moon.
* Other Calendars:: Converting dates to other calendar systems.
* Diary:: Displaying events from your diary.
* Appointments:: Reminders when it's time to do something.
* Daylight Savings:: How to specify when daylight savings time is active.
@c Movement in the Calendar
$B%+%l%s%@!<Fb$N0\F0(B
* Calendar Unit Motion:: Moving by days, weeks, months, and years.
* Move to Beginning or End:: Moving to start/end of weeks, months, and years.
* Specified Dates:: Moving to the current date or another
specific date.
@c Conversion To and From Other Calendars
$B$5$^$6$^$JNq$N$"$$$@$NJQ49(B
* Calendar Systems:: The calendars Emacs understands
(aside from Gregorian).
* To Other Calendar:: Converting the selected date to various calendars.
* From Other Calendar:: Moving to a date specified in another calendar.
* Mayan Calendar:: Moving to a date specified in a Mayan calendar.
@c The Diary
$BF|;o(B
* Diary Commands:: Viewing diary entries and associated calendar dates.
* Format of Diary File:: Entering events in your diary.
* Date Formats:: Various ways you can specify dates.
* Adding to Diary:: Commands to create diary entries.
* Special Diary Entries:: Anniversaries, blocks of dates, cyclic entries, etc.
@sc{Gnus}
* Buffers of Gnus:: The group, summary, and article buffers.
* Gnus Startup:: What you should know about starting Gnus.
* Summary of Gnus:: A short description of the basic Gnus commands.
@c Running Shell Commands from Emacs
Emacs$B$+$i%7%'%k%3%^%s%I$r5/F0$9$k(B
* Single Shell:: How to run one shell command and return.
* Interactive Shell:: Permanent shell taking input via Emacs.
* Shell Mode:: Special Emacs commands used with permanent shell.
* Shell History:: Repeating previous commands in a shell buffer.
* Shell Options:: Options for customizing Shell mode.
* Remote Host:: Connecting to another computer.
@c Customization
$B%+%9%?%^%$%:(B
* Minor Modes:: Each minor mode is one feature you can turn on
independently of any others.
* Variables:: Many Emacs commands examine Emacs variables
to decide what to do; by setting variables,
you can control their functioning.
* Keyboard Macros:: A keyboard macro records a sequence of
keystrokes to be replayed with a single command.
* Key Bindings:: The keymaps say what command each key runs.
By changing them, you can "redefine keys".
* Keyboard Translations::
If your keyboard passes an undesired code
for a key, you can tell Emacs to
substitute another code.
* Syntax:: The syntax table controls how words and
expressions are parsed.
* Init File:: How to write common customizations in the
@file{.emacs} file.
@c Variables
$BJQ?t(B
* Examining:: Examining or setting one variable's value.
* Easy Customization::
Convenient and easy customization of variables.
* Hooks:: Hook variables let you specify programs for parts
of Emacs to run on particular occasions.
* Locals:: Per-buffer values of variables.
* File Variables:: How files can specify variable values.
@c Keyboard Macros
$B%-!<%\!<%I%^%/%m(B
* Basic Kbd Macro:: Defining and running keyboard macros.
* Save Kbd Macro:: Giving keyboard macros names; saving them in files.
* Kbd Macro Query:: Making keyboard macros do different things each time.
@c Customizing Key Bindings
$B%-!<%P%$%s%I$N%+%9%?%^%$%:(B
* Keymaps:: Generalities. The global keymap.
* Prefix Keymaps:: Keymaps for prefix keys.
* Local Keymaps:: Major and minor modes have their own keymaps.
* Minibuffer Maps:: The minibuffer uses its own local keymaps.
* Rebinding:: How to redefine one key's meaning conveniently.
* Init Rebinding:: Rebinding keys with your init file, @file{.emacs}.
* Function Keys:: Rebinding terminal function keys.
* Named ASCII Chars:: Distinguishing @key{TAB} from @kbd{C-i}, and so on.
* Mouse Buttons:: Rebinding mouse buttons in Emacs.
* Disabling:: Disabling a command means confirmation is required
before it can be executed. This is done to protect
beginners from surprises.
@c The Init File, @file{~/.emacs}
$B=i4|2=%U%!%$%k(B@file{~/.emacs}
* Init Syntax:: Syntax of constants in Emacs Lisp.
* Init Examples:: How to do some things with an init file.
* Terminal Init:: Each terminal type can have an init file.
* Find Init:: How Emacs finds the init file.
@c Dealing with Emacs Trouble
Emacs$B$N%H%i%V%k$KBP$9$kBP=h(B
* DEL Gets Help:: What to do if @key{DEL} doesn't delete.
* Stuck Recursive:: `[...]' in mode line around the parentheses.
* Screen Garbled:: Garbage on the screen.
* Text Garbled:: Garbage in the text.
* Unasked-for Search:: Spontaneous entry to incremental search.
* Memory Full:: How to cope when you run out of memory.
* Emergency Escape:: Emergency escape---
What to do if Emacs stops responding.
* Total Frustration:: When you are at your wits' end.
@c Reporting Bugs
$B%P%0$NJs9p(B
* Criteria: Bug Criteria. Have you really found a bug?
* Understanding Bug Reporting:: How to report a bug effectively.
* Checklist:: Steps to follow for a good bug report.
* Sending Patches:: How to send a patch for GNU Emacs.
@c Command Line Options and Arguments
$B%3%^%s%I9T%*%W%7%g%s$H0z?t(B
* Action Arguments:: Arguments to visit files, load libraries,
and call functions.
* Initial Options:: Arguments that take effect while starting Emacs.
* Command Example:: Examples of using command line arguments.
* Resume Arguments:: Specifying arguments when you resume a running Emacs.
* Environment:: Environment variables that Emacs uses.
* Display X:: Changing the default display and using remote login.
* Font X:: Choosing a font for text, under X.
* Colors X:: Choosing colors, under X.
* Window Size X:: Start-up window size, under X.
* Borders X:: Internal and external borders, under X.
* Title X:: Specifying the initial frame's title.
* Icons X:: Choosing what sort of icon to use, under X.
* Resources X:: Advanced use of classes and resources, under X.
* Lucid Resources:: X resources for Lucid menus.
* Motif Resources:: X resources for Motif menus.
@c Environment Variables
$B4D6-JQ?t(B
* General Variables:: Environment variables that all versions of Emacs use.
* Misc Variables:: Certain system specific variables.
@c MS-DOS and Windows 95/98/NT
MS-DOS$B$H(BWindows 95/98/NT
* MS-DOS Input:: Keyboard and mouse usage on MS-DOS.
* MS-DOS Display:: Fonts, frames and display size on MS-DOS.
* MS-DOS File Names:: File-name conventions on MS-DOS.
* Text and Binary:: Text files on MS-DOS use CRLF to separate lines.
* MS-DOS Printing:: How to specify the printer on MS-DOS.
* MS-DOS Processes:: Running subprocesses on MS-DOS.
* Windows Processes:: Running subprocesses on Windows.
* Windows System Menu:: Controlling what the ALT key does.
@end menu
@iftex
@c = $BLu<T$^$($,$-(B
@include jp-pre.texi
@c @unnumbered Preface
@unnumbered $B$^$($,$-(B
@c This manual documents the use and simple customization of the Emacs
@c editor. The reader is not expected to be a programmer; simple
@c customizations do not require programming skill. But the user who is not
@c interested in customizing can ignore the scattered customization hints.
$BK\=q$G$O!"(BEmacs$B%(%G%#%?$N;H$$J}$H4JC1$J%+%9%?%^%$%:$K$D$$$F2r@b$7$^$9!#(B
$BFI<T$,%W%m%0%i%^$G$"$k$H$OA[Dj$7$F$$$^$;$s!#(B
$B4JC1$J%+%9%?%^%$%:$K$O!"%W%m%0%i%_%s%0$N<jOS$OI,MW$"$j$^$;$s!#(B
$B$7$+$7!"%+%9%?%^%$%:$K6=L#$N$J$$J}$O!"(B
$B3F=j$K;6:_$9$k%+%9%?%^%$%:$N%R%s%H$rL5;k$7$F$/$@$5$$!#(B
@c This is primarily a reference manual, but can also be used as a
@c primer. For complete beginners, it is a good idea to start with the
@c on-line, learn-by-doing tutorial, before reading the manual. To run the
@c tutorial, start Emacs and type @kbd{C-h t}. This way you can learn
@c Emacs by using Emacs on a specially designed file which describes
@c commands, tells you when to try them, and then explains the results you
@c see.
$BK\=q$N<gL\E*$O%j%U%!%l%s%9%^%K%e%"%k$G$9$,!"(B
$BF~Lg=q$H$7$F$bMxMQ$G$-$^$9!#(B
$BK\Ev$N=i?4<T$K$O!"K\=q$rFI$_;O$a$k$^$($K!"<B:]$KF0$+$7$J$,$i3X$Y$k(B
$B%*%s%i%$%s$N%A%e!<%H%j%"%k$r$*4+$a$7$^$9!#(B
$B%A%e!<%H%j%"%k$r<B9T$9$k$K$O!"(B
Emacs$B$r5/F0$7$F(B@kbd{C-h t}$B$HBG$A$^$9!#(B
$B$3$&$9$k$H!"%3%^%s%I$N@bL@!";n$7J}$H$=$N<B9T7k2L$,$I$&$J$k$+$r(B
$B5-=R$7$?@lMQ$N%U%!%$%k$r$H$*$7$F(BEmacs$B$r;H$$$J$,$i(BEmacs$B$r3X$Y$^$9!#(B
@c On first reading, just skim chapters 1 and 2, which describe the
@c notational conventions of the manual and the general appearance of the
@c Emacs display screen. Note which questions are answered in these
@c chapters, so you can refer back later. After reading chapter 4, you
@c should practice the commands there. The next few chapters describe
@c fundamental techniques and concepts that are used constantly. You need
@c to understand them thoroughly, experimenting with them if necessary.
$B=i$a$FFI$`>l9g$K$O!"$^$:!"(B1$B>O$H(B2$B>O$r$6$C$HFI$s$G$/$@$5$$!#(B
$BK\=q$GMQ$$$kI=5-K!$H(BEmacs$B2hLL$N0lHLE*$JBN:[$r@bL@$7$^$9!#(B
$B$3$l$i$N>O$N$I$3$G2?$,@bL@$5$l$F$$$k$+?4$KN1$a$F!"(B
$B$"$H$G;2>H$G$-$k$h$&$K$7$F$/$@$5$$!#(B
4$B>O$rFI$_=*$($?$i!"$=$l$^$G$N%3%^%s%I$rN}=,$7$F$/$@$5$$!#(B
$B$=$N$"$H$N2?>O$+$G$O!">oMQ$9$k4pK\E*$J5;K!$d35G0$r@bL@$7$^$9!#(B
$BI,MW$J$i$P;n$7$F$_$F!"$=$l$i$r40A4$KM}2r$7$F$*$$$F$/$@$5$$!#(B
@c Chapters 14 through 19 describe intermediate-level features that are
@c useful for all kinds of editing. Chapter 20 and following chapters
@c describe features that you may or may not want to use; read those
@c chapters when you need them.
14$B>O$+$i(B19$B>O$G$O!"$I$s$JJT=8:n6H$K$bM-MQ$JCf5i$N5!G=$r@bL@$7$^$9!#(B
20$B>O0J9_$K@bL@$7$F$"$k5!G=$O!";H$&>l9g$b$"$l$P!";H$o$J$$>l9g$b$"$k$G$7$g$&!#(B
$BI,MW$K$J$C$?$H$-$K$=$l$>$l$N>O$rFI$s$G$/$@$5$$!#(B
@c Read the Trouble chapter if Emacs does not seem to be working
@c properly. It explains how to cope with some common problems
@c (@pxref{Lossage}), as well as when and how to report Emacs bugs
@c (@pxref{Bugs}).
Emacs$B$,@5>o$KF0$$$F$J$$$h$&$K;W$($?$i!"(B
$B>c32BP:v$N>O$rFI$s$G$/$@$5$$!#(B
$B$h$/$"$kLdBj$K$I$&BP=h$9$k$+@bL@$7(B
$B!J(B@pxref{Lossage}$B!K!"(B
Emacs$B$N%P%0$r$$$D$I$N$h$&$KJs9p$9$k$+$b@bL@$7$^$9(B
$B!J(B@pxref{Bugs}$B!K!#(B
@c To find the documentation on a particular command, look in the index.
@c Keys (character commands) and command names have separate indexes. There
@c is also a glossary, with a cross reference for each term.
$BFCDj$N%3%^%s%I$N@bL@$rC5$9$K$O:w0z$r8+$F$/$@$5$$!#(B
$B%-!<!JJ8;z%3%^%s%I!K$H%3%^%s%IL>$OJL!9$N:w0z$K$J$C$F$$$^$9!#(B
$B$^$?!"Aj8_;2>HIU$-$NMQ8l=8$b$"$j$^$9!#(B
@c This manual is available as a printed book and also as an Info file.
@c The Info file is for on-line perusal with the Info program, which will
@c be the principal way of viewing documentation on-line in the GNU system.
@c Both the Info file and the Info program itself are distributed along
@c with GNU Emacs. The Info file and the printed book contain
@c substantially the same text and are generated from the same source
@c files, which are also distributed along with GNU Emacs.
$BK\=q$O!"0u:~J*$H$7$F$b!"$"$k$$$O!"(Binfo$B%U%!%$%k$H$7$F$bF~<j$G$-$^$9!#(B
info$B%U%!%$%k$O!"(Binfo$B%W%m%0%i%`$G%*%s%i%$%s1\Mw$9$k$?$a$N$b$N$G$9!#(B
info$B%W%m%0%i%`$O!"(BGNU$B%7%9%F%`$K$*$$$F%I%-%e%a%s%H$r(B
$B%*%s%i%$%s$G8+$kI8=`E*$JJ}K!$G$9!#(B
info$B%U%!%$%k$b(Binfo$B%W%m%0%i%`$b!"(BGNU Emacs$B$H0l=o$KG[I[$5$l$F$$$^$9!#(B
info$B%U%!%$%k$H0u:~J*$O<B<AE*$K$OF1$8FbMF$G!"(B
GNU Emacs$B$H0l=o$KG[I[$5$l$F$$$kF10l$N%=!<%9%U%!%$%k$+$i@8@.$7$?$b$N$G$9!#(B
@c GNU Emacs is a member of the Emacs editor family. There are many Emacs
@c editors, all sharing common principles of organization. For information on
@c the underlying philosophy of Emacs and the lessons learned from its
@c development, write for a copy of AI memo 519a, ``Emacs, the Extensible,
@c Customizable Self-Documenting Display Editor,'' to Publications Department,
@c Artificial Intelligence Lab, 545 Tech Square, Cambridge, MA 02139, USA@. At
@c last report they charge $2.25 per copy. Another useful publication is LCS
@c TM-165, ``A Cookbook for an Emacs,'' by Craig Finseth, available from
@c Publications Department, Laboratory for Computer Science, 545 Tech Square,
@c Cambridge, MA 02139, USA@. The price today is $3.
GNU Emacs$B$O(BEmacs$B%(%G%#%?B2$N0l0w$G$9!#(B
$B2?<oN`$b$N(BEmacs$B%(%G%#%?$,$"$j$^$9$,!"(B
$B$=$l$i$O$9$Y$FF1$89=@.86M}$r6&M-$7$F$$$^$9!#(B
Emacs$B$N:,Dl$K$"$k9M$(J}$d!"$=$N3+H/$+$iF@$?CN8+$r3X$V$K$O!"(B
Publications Department$B!"(B
Artificial Intelligence Lab$B!"(B545 Tech Square$B!"(BCambridge$B!"(BMA 02139$B!"(BUSA
$B$+$i!"(BAI memo 519a$B!"(B
$B!X(BEmacs, the Extensible, Customizable Self-Documenting Display Editor$B!Y(B
$B$rF~<j$7$F$/$@$5$$!#(B
$B:G?7HG$O(B1$BIt(B2.25$B%I%k$G$9!#(B
$B$^$?!"(B
Publications Department$B!"(BLaboratory for Computer Science$B!"(B545 Tech Square$B!"(B
Cambridge$B!"(BMA 02139$B!"(BUSA$B$+$iF~<j$G$-$k(BCraig Finseth$B$N(B
LCS TM-165$B!"!X(BA Cookbook for an Emacs$B!Y$b$h$$J88%$G$9!#(B
$B8=:_$N2A3J$O(B3$B%I%k$G$9!#(B
@c This edition of the manual is intended for use with GNU Emacs installed
@c on GNU and Unix systems. GNU Emacs can also be used on VMS, MS-DOS
@c (also called MS-DOG), Windows NT, and Windows 95 systems. Those systems use
@c different file name syntax; in addition, VMS and MS-DOS do not support
@c all GNU Emacs features. We don't try to describe VMS usage in this
@c manual. @xref{MS-DOS}, for information about using Emacs on MS-DOS.
$BK\=q$N$3$NHG$O!"(BGNU$B$*$h$S(BUNIX$B%7%9%F%`$K%$%s%9%H!<%k$7$?(BGNU Emacs$B$KBP1~$7$^$9!#(B
GNU Emacs$B$O!"(BVMS$B!"!J(BMS-DOG$B$H$b8F$P$l$k!K(BMS-DOS$B!"(BWindows NT$B!"(B
Windows 95$B$G$b;H$($^$9!#(B
$B$3$l$i$N%7%9%F%`$G$O!"%U%!%$%kL>$NI=5-K!$,0[$J$j$^$9!#(B
$B$5$i$K!"(BVMS$B$d(BMS-DOS$B$G$O!"(BGNU Emacs$B$NA45!G=$r;H$($k$o$1$G$O$"$j$^$;$s!#(B
$BK\=q$G$O(BVMS$B$G$NMxMQJ}K!$O@bL@$7$^$;$s!#(B
MS-DOS$B$G(BEmacs$B$r;H$&:]$N>pJs$O!"(B@xref{MS-DOS}$B!#(B
@end iftex
@node Distrib, Copying, Top, Top
@c @unnumbered Distribution
@unnumbered $BG[I[(B
@c GNU Emacs is @dfn{free software}; this means that everyone is free to
@c use it and free to redistribute it on certain conditions. GNU Emacs is
@c not in the public domain; it is copyrighted and there are restrictions
@c on its distribution, but these restrictions are designed to permit
@c everything that a good cooperating citizen would want to do. What is
@c not allowed is to try to prevent others from further sharing any version
@c of GNU Emacs that they might get from you. The precise conditions are
@c found in the GNU General Public License that comes with Emacs and also
@c appears following this section.
GNU Emacs$B$O(B@dfn{$B%U%j!<%=%U%H%&%'%"(B}$B$G$9!#(B
$BC/$G$b<+M3$KMxMQ$G$-!">r7oIU$-$G<+M3$K:FG[I[$G$-$k$3$H$r0UL#$7$^$9!#(B
GNU Emacs$B$O%Q%V%j%C%/%I%a%$%s!J(Bpublic domain$B!K$G$O$"$j$^$;$s!#(B
$BCx:n8"$,@_Dj$7$F$"$j!"$=$NG[I[$K$O@)8B$,2]$;$i$l$F$$$^$9!#(B
$B$7$+$7!"$3$l$i$N@)8B$O!"A1NI$J6(D4E*$J;TL1$,9T$&$G$"$m$&$3$H$r(B
$B$9$Y$F5v$9$h$&$K0U?^$7$?$b$N$G$9!#(B
$B5v$5$l$J$$$N$O!"(B
$BG[I[@h$KBP$7$FG$0U$N%P!<%8%g%s$N(BGNU Emacs$B$N:FG[I[$r6X;_$9$k9T0Y$G$9!#(B
$B@53N$J>r7o$O!"(BGNU Emacs$B$H0l=o$KG[I[$5$l$F$$$F(B
$B0J2<$N@a$K$b7G:\$7$?(BGNU$B0lHL8xM-;HMQ5vBz=q(B
@footnote{$B!ZLuCm![F|K\8lLu$O$"$/$^$G!X;29M!Y$G$"$k!#(B
$B@5<0$J5vBz=q$O1QJ8$N(BGNU General Public License$B$G$"$k$3$H$K(B
$BCm0U$7$F$[$7$$!#(B}$B$K$"$j$^$9!#(B
@c One way to get a copy of GNU Emacs is from someone else who has it. You
@c need not ask for our permission to do so, or tell any one else; just
@c copy it. If you have access to the Internet, you can get the latest
@c distribution version of GNU Emacs by anonymous FTP; see the file
@c @file{etc/FTP} in the Emacs distribution for more information.
Gnu Emacs$B$rF~<j$9$k(B1$B$D$NJ}K!$O!";}$C$F$$$k?M$+$iLc$&$3$H$G$9!#(B
$B2f!9$+$i5v2D$rF@$kI,MW$O$J$$$G$9$7!"C/$+$KO"Mm$9$kI,MW$b$"$j$^$;$s!#(B
$BC1$K%3%T!<$9$l$P$h$$$N$G$9!#(B
Internet$B$rMxMQ$G$-$k>l9g$K$O!"(B
$BF?L>!J(Banonymous$B!K(BFTP$B$G(BGNU Emacs$B$N:G?7G[I[HG$rF~<j$G$-$^$9!#(B
$B>\$7$/$O!"(BEmacs$B$NG[I[$NCf$N%U%!%$%k(B@file{etc/FTP}$B$r8+$F$/$@$5$$!#(B
@c You may also receive GNU Emacs when you buy a computer. Computer
@c manufacturers are free to distribute copies on the same terms that apply to
@c everyone else. These terms require them to give you the full sources,
@c including whatever changes they may have made, and to permit you to
@c redistribute the GNU Emacs received from them under the usual terms of the
@c General Public License. In other words, the program must be free for you
@c when you get it, not just free for the manufacturer.
$B%3%s%T%e!<%?$rGc$&$H(BGNU Emacs$B$,IU$$$F$/$k$+$b$7$l$^$;$s!#(B
$B%3%s%T%e!<%?@=B$6H<T$b!"B>$N?M$KE,MQ$5$l$F$$$k$N$HF1$8>r9`$G!"(B
$B<+M3$K%3%T!<$rG[I[$G$-$^$9!#(B
$B$3$l$i$N>r9`$K$h$l$P!"(B
$B@=B$6H<T$O6H<TFH<+$NJQ99$b4^$a$F40A4$J%=!<%9$rDs6!$9$k$h$&$K5a$a$i$l$F$*$j!"(B
$B$7$+$b!"(BGNU$B0lHL8xM-;HMQ5vBz=q$N>r9`$K4p$E$/$=$N(BGNU Emacs$B$N:FG[I[$r(B
$B9XF~<T$K5v2D$9$k$h$&$K5a$a$i$l$F$$$^$9!#(B
$B$$$$$+$($l$P!"@=B$6H<T$,%W%m%0%i%`$r<+M3$K$G$-$k$@$1$G$J$/!"(B
$B9XF~<T$bGc$C$?%W%m%0%i%`$r<+M3$K$G$-$kI,MW$,$"$k$N$G$9!#(B
@c You can also order copies of GNU Emacs from the Free Software Foundation
@c on CD-ROM@. This is a convenient and reliable way to get a copy; it is
@c also a good way to help fund our work. (The Foundation has always
@c received most of its funds in this way.) An order form is included in
@c the file @file{etc/ORDERS} in the Emacs distribution, and on our web
@c site in @url{http://www.gnu.org/order/order.html}. For further
@c information, write to
Free Software Foundation$B$K(BGNU Emacs$B$N(BCD-ROM$B$rCmJ8$7$F$b$+$^$$$^$;$s!#(B
$B$3$l$OJXMx$G3N<B$JF~<jJ}K!$G$9$7!"2f!9$N;E;v$N;q6b1g=u$K$b$J$j$^$9!#(B
$B!J(BFoundation$B$N;q6b$N$[$H$s$I$O!"$3$NJ}K!$KMj$C$F$$$k!#!K(B
Emacs$B$NG[I[$NCf$N%U%!%$%k(B@file{etc/ORDERS}$B$d!"(B
Web$B%5%$%H(B@url{http://www.gnu.org/order/order.html}$B$KCmJ8I<$,$"$j$^$9!#(B
$B$5$i$J$k>pJs$rF@$k$K$O!"2<5-$X$*4j$$$7$^$9!#(B
@display
Free Software Foundation
59 Temple Place, Suite 330
Boston, MA 02111-1307 USA
USA
@end display
@c The income from distribution fees goes to support the foundation's
@c purpose: the development of new free software, and improvements to our
@c existing programs including GNU Emacs.
$BG[I[Be6b$+$iF@$?<}F~$O!"2f!9$NL\E*!"(B
$B$9$J$o$A!"?7$?$J%U%j!<%=%U%H%&%'%"$N3+H/$H(BGNU Emacs$B$r4^$a$?(B
$B4{B8%W%m%0%i%`$N2~NI$N$?$a$K;H$o$l$^$9!#(B
@c If you find GNU Emacs useful, please @strong{send a donation} to the
@c Free Software Foundation to support our work. Donations to the Free
@c Software Foundation are tax deductible in the US. If you use GNU Emacs
@c at your workplace, please suggest that the company make a donation. If
@c company policy is unsympathetic to the idea of donating to charity, you
@c might instead suggest ordering a CD-ROM from the Foundation
@c occasionally, or subscribing to periodic updates.
GNU Emacs$B$,M-MQ$@$H$o$+$C$?$J$i$P!"2f!9$N;E;v$r;Y1g$9$k$?$a$K(B
Free Software Foundation$B$K$<$R(B@strong{$B4sIU$rAw$C$F(B}$B$/$@$5$$!#(B
$B9g=09q$G$O!"(BFree Software Foundation$B$X$N4sIU$O@G95=|$NBP>]$K$J$j$^$9!#(B
GNU Emacs$B$r?&>l$GMxMQ$7$F$$$k$J$i$P!"4sIU$9$k$h$&$K2q<R$KDs0F$7$F$/$@$5$$!#(B
$B2q<R$NJ}?K$,;|A13hF0$X$N4sIU$KNdC8$G$"$k$J$i$P!"(B
$B$=$N$+$o$j$H$7$F!"(BFree Software Foundation$B$KE,59(BCD-ROM$B$rCmJ8$7$?$j!"(B
$BDj4|9XFI$9$k$h$&$KDs0F$7$F$/$@$5$$!#(B
@iftex
@c Contributors to GNU Emacs include Per Abrahamsen, Jay K. Adams, Joe
$B0J2<$O!"(BGNU Emacs$B$K9W8%$5$l$?J}!9$G$9!#(BPer Abrahamsen, Jay K. Adams, Joe
Arceneaux, Boaz Ben-Zvi, Jim Blandy, Terrence Brannon, Frank Bresz,
Peter Breton, Kevin Broadey, Vincent Broman, David M. Brown, Bill
Carpenter, Hans Chalupsky, Bob Chassell, James Clark, Mike Clarkson,
Glynn Clements, Andrew Csillag, Doug Cutting, Michael DeCorte, Gary
Delp, Matthieu Devin, Eri Ding, Carsten Dominik, Scott Draves, Viktor
Dukhovni, John Eaton, Rolf Ebert, Stephen Eglen, Torbj@"orn Einarsson,
Tsugumoto Enami, Hans Henrik Eriksen, Michael Ernst, Ata Etemadi,
Frederick Farnback, Fred Fish, Karl Fogel, Gary Foster, Noah Friedman,
Keith Gabryelski, Kevin Gallagher, Kevin Gallo, Howard Gayle, Stephen
Gildea, David Gillespie, Bob Glickstein, Boris Goldowsky, Michelangelo
Grigni, Michael Gschwind, Henry Guillaume, Doug Gwyn, Ken'ichi Handa,
Chris Hanson, K. Shane Hartman, John Heidemann, Markus Heritsch, Karl
Heuer, Manabu Higashida, Anders Holst, Kurt Hornik, Tom Houlder, Lars
Ingebrigtsen, Andrew Innes, Michael K. Johnson, Kyle Jones, Tomoji
Kagatani, Brewster Kahle, David Kaufman, Henry Kautz, Howard Kaye,
Michael Kifer, Richard King, Larry K. Kolodney, Robert Krawitz,
Sebastian Kremer, Geoff Kuenning, David K@aa gedal, Daniel LaLiberte,
Aaron Larson, James R. Larus, Frederic Lepied, Lars Lindberg, Eric
Ludlam, Neil M. Mager, Ken Manheimer, Bill Mann, Brian Marick, Simon
Marshall, Bengt Martensson, Charlie Martin, Thomas May, Roland McGrath,
David Megginson, Wayne Mesard, Richard Mlynarik, Keith Moore, Erik
Naggum, Thomas Neumann, Mike Newton, Jurgen Nickelsen, Jeff Norden,
Andrew Norman, Jeff Peck, Damon Anton Permezel, Tom Perrine, Jens
Petersen, Daniel Pfeiffer, Fred Pierresteguy, Christian Plaunt,
Francesco A. Potorti, Michael D. Prange, Ashwin Ram, Eric S. Raymond,
Paul Reilly, Edward M. Reingold, Rob Riepel, Roland B. Roberts, John
Robinson, Danny Roozendaal, William Rosenblatt, Guillermo J. Rozas, Ivar
Rummelhoff, Wolfgang Rupprecht, James B. Salem, Masahiko Sato, William
Schelter, Ralph Schleicher, Gregor Schmid, Michael Schmidt, Ronald
S. Schnell, Philippe Schnoebelen, Stephen Schoef, Randal Schwartz,
Manuel Serrano, Stanislav Shalunov, Mark Shapiro, Richard Sharman, Olin
Shivers, Espen Skoglund, Rick Sladkey, Lynn Slater, Chris Smith, David
Smith, Paul D. Smith, William Sommerfeld, Michael Staats, Sam Steingold,
Ake Stenhoff, Peter Stephenson, Jonathan Stigelman, Steve Strassman,
Jens T. Berger Thielemann, Spencer Thomas, Jim Thompson, Masanobu Umeda,
Neil W. Van Dyke, Ulrik Vieth, Geoffrey Voelker, Johan Vromans, Barry
Warsaw, Morten Welinder, Joseph Brian Wells, Rodney Whitby, Ed
Wilkinson, Mike Williams, Steven A. Wood, Dale R. Worley, Felix
S. T. Wu, Tom Wurgler, Eli Zaretskii, Jamie Zawinski, Ian T. Zimmermann,
Reto Zimmermann, and Neal Ziring.
@end iftex
@c =============================================================
@c = <using $B0zCO$5$s$,4IM}$9$k(BGPL$B$NF|K\8lLu(B>
@c =============================================================
@node Copying, Intro, Distrib, Top
@c @unnumbered GNU GENERAL PUBLIC LICENSE
@c @center Version 2, June 1991
@unnumbered GNU$B0lHL8xM-;HMQ5vBz=q(B
@center 1991$BG/(B6$B7n(B $B%P!<%8%g%s(B2.0
@display
Copyright @copyright{} 1989, 1991 Free Software Foundation, Inc.
@c 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
675 Mass Ave, Cambridge, MA 02139, USA @footnote{$B!ZCm0U![(B
$B8=:_!"$3$N%P!<%8%g%s(B2$B$NH/9T<T(B(FSF)$B=;=j$O!"@5<0$K?7$7$$=;=j$N(B @*
$B!!(B59 Temple Place, Suite 330, Boston, MA 02111-1307, USA @*
$B$KJQ$o$C$F$$$k!#(B}
@ifinfo
$B!ZCm0U![(B $B8=:_!"$3$N%P!<%8%g%s(B2$B$NH/9T<T(B(FSF)$B=;=j$O!"@5<0$K?7$7$$=;=j$N(B
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA $B$KJQ$o$C$F$$$k!#(B
@end ifinfo
@c Everyone is permitted to copy and distribute verbatim copies
@c of this license document, but changing it is not allowed.
$B2??M$b!"0J2<$NFbMF$rJQ99$7$J$$$G$=$N$^$^J#<L$9$k>l9g$K8B$j!"(B
$BK\;HMQ5vBz=q$rJ#@=$7$?$jHRI[$9$k$3$H$,$G$-$^$9!#(B
@end display
@c @unnumberedsec Preamble
@unnumberedsec $B$O$8$a$K(B
@c The licenses for most software are designed to take away your
@c freedom to share and change it. By contrast, the GNU General Public
@c License is intended to guarantee your freedom to share and change free
@c software---to make sure the software is free for all its users. This
@c General Public License applies to most of the Free Software
@c Foundation's software and to any other program whose authors commit to
@c using it. (Some other Free Software Foundation software is covered by
@c the GNU Library General Public License instead.) You can apply it to
@c your programs, too.
$B$[$H$s$I$N%=%U%H%&%'%"$N;HMQ5vBz$O!"%=%U%H%&%'%"$r6&M-$7!"(B
$BJQ99$9$k%f!<%6$N<+M3$rC%$&$3$H$r0U?^$7$F$$$^$9!#(B
$B$=$l$KBP$7$F!"2f!9$N(BGNU$B0lHL8xM-;HMQ5vBz$O!"(B
$B%U%j!<!&%=%U%H%&%'%"$r6&M-$7$?$jJQ99$9$k<+M3$r%f!<%6$KJ]>Z$9$k$?$a$N$b$N!"(B
$BB($A%U%j!<!&%=%U%H%&%'%"$,$=$N%f!<%6A4$F$K$H$C$F(B
$B%U%j!<$G$"$k$3$H$rJ]>Z$9$k$?$a$N$b$N$G$9!#(B
$BK\;HMQ5vBz$O!"(BFree Software Foundation$B$N$[$H$s$IA4$F$N%=%U%H%&%'%"$K(B
$BE,MQ$5$l$k$@$1$G$J$/!"(B
$B%W%m%0%i%`$N:n@.<T$,K\;HMQ5vBz$K0M$k$H$7$?>l9g$N$=$N%W%m%0%i%`$K$b(B
$BE,MQ$9$k$3$H$,$G$-$^$9!#(B
$B!J$=$NB>$N(B Free Software Foundation $B$N%=%U%H%&%'%"$N$$$/$D$+$O!"(B
$BK\5vBz=q$G$O$J$/!"(BGNU$B%i%$%V%i%j0lHL8xM-;HMQ5vBz$GJ]8n$5$l$^$9!#!K(B
$B$"$J$?$O<+J,$N%W%m%0%i%`$K$b$3$l$rE,MQ$G$-$^$9!#(B
@c When we speak of free software, we are referring to freedom, not
@c price. Our General Public Licenses are designed to make sure that you
@c have the freedom to distribute copies of free software (and charge for
@c this service if you wish), that you receive source code or can get it
@c if you want it, that you can change the software or use pieces of it
@c in new free programs; and that you know you can do these things.
$B2f!9$,%U%j!<!&%=%U%H%&%'%"$K$D$$$F8@$&>l9g$O(B
$B<+M3$N$3$H$K8@5Z$7$F$$$k$N$G$"$C$F!"2A3J$N$3$H$G$O$"$j$^$;$s!#(B
$B2f!9$N0lHL8xM-;HMQ5vBz$N3F>r9`$O!"<!$N;vJA$r3N<B$K<B8=$9$k$3$H$r(B
$BL\E*$H$7$FN)0F$5$l$F$$$^$9!#(B
@itemize @bullet
@item
$B%U%j!<!&%=%U%H%&%'%"$NJ#@=J*$r<+M3$KHRI[$G$-$k$3$H(B
$B!J$=$7$F!"K>$`$J$i$"$J$?$N$3$N%5!<%S%9$KBP$7$FBP2A$r@A5a$G$-$k$3$H!K!#(B
@item
$B%=!<%9!&%3!<%I$r<B:]$K<u$1<h$k$+!"$"$k$$$O!"(B
$B4uK>$7$5$($9$l$P$=$l$rF~<j$9$k$3$H$,2DG=$G$"$k$3$H!#(B
@item
$BF~<j$7$?%=%U%H%&%'%"$rJQ99$7$?$j!"(B
$B?7$7$$%U%j!<!&%W%m%0%i%`$N0lIt$H$7$F;HMQ$G$-$k$3$H!#(B
@item
$B0J>e$N3FFbMF$r9T$J$&$3$H$,$G$-$k$H$$$&$3$H$r%f!<%6<+?H$,CN$C$F$$$k$3$H!#(B
@end itemize
@c To protect your rights, we need to make restrictions that forbid
@c anyone to deny you these rights or to ask you to surrender the rights.
@c These restrictions translate to certain responsibilities for you if you
@c distribute copies of the software, or if you modify it.
$B$3$N$h$&$J%f!<%6$N8"Mx$r<i$k$?$a$K!"2f!9$O!"(B
$B2??M$b$3$l$i$N8"Mx$rH]Dj$7$?$j!"$"$k$$$OJ|4~$9$k$h$&$K(B
$B%f!<%6$K5a$a$k$3$H$O$G$-$J$$$H$$$&@)8B>r9`$r@_$1$kI,MW$,$"$j$^$9!#(B
$B$3$l$i$N@)8B>r9`$O!"%f!<%6$,!"%U%j!<!&%=%U%H%&%'%"$NJ#@=J*$r(B
$BHRI[$7$?$jJQ99$7$h$&$H$9$k>l9g$K$O!"$=$N%f!<%6<+?H$,<i$k$Y$-5AL3$H$b$J$j$^$9!#(B
@c For example, if you distribute copies of such a program, whether
@c gratis or for a fee, you must give the recipients all the rights that
@c you have. You must make sure that they, too, receive or can get the
@c source code. And you must show them these terms so they know their
@c rights.
$BNc$($P!"$"$J$?$,%U%j!<!&%=%U%H%&%'%"$NJ#@=J*$rHRI[$9$k>l9g!"(B
$BM-=~$+L5=~$+$K$+$+$o$i$:!"(B
$B$"$J$?$O<+J,$N;}$C$F$$$k8"Mx$rA4$FAj<j$KM?$($J$1$l$P$J$j$^$;$s!#(B
$B$"$J$?$O!"Aj<j$b$^$?%=!<%9!&%3!<%I$r<u$1<h$C$?$jF~<j$G$-$k$H$$$&$3$H$r(B
$BG'$a$J$1$l$P$J$j$^$;$s!#(B
$B$5$i$K$"$J$?$O!"H`$i$,<+J,$?$A$N8"Mx$rCN$k$h$&$K!"(B
$B$3$l$i$N>r9`$rCN$i$7$a$J$1$l$P$J$j$^$;$s!#(B
@c We protect your rights with two steps: (1) copyright the software, and
@c (2) offer you this license which gives you legal permission to copy,
@c distribute and/or modify the software.
$B!!2f!9$O<!$N#2$D$NJ}K!$G%f!<%6$N8"Mx$r<i$j$^$9!#(B
$B!J#1!K%=%U%H%&%'%"$KCx:n8"$r<gD%$7!"(B
$B!J#2!KK\;HMQ5vBz$N>r9`$N2<$G(B
$B%=%U%H%&%'%"$rJ#@=!&HRI[!&JQ99$9$k8"Mx$r%f!<%6$KM?$($^$9!#(B
@c Also, for each author's protection and ours, we want to make certain
@c that everyone understands that there is no warranty for this free
@c software. If the software is modified by someone else and passed on, we
@c want its recipients to know that what they have is not the original, so
@c that any problems introduced by others will not reflect on the original
@c authors' reputations.
$B$^$?!"3F:n@.<T$d2f!9<+?H$r<i$k$?$a$K!"(B
$BK\%U%j!<!&%=%U%H%&%'%"$,L5J]>Z$G$"$k$3$H$r(B
$BA4$F$N?M!9$,N;2r$7$F$$$kI,MW$,$"$j$^$9!#(B
$B$5$i$K!"B>$NC/$+$K$h$C$FJQ99$5$l$?%=%U%H%&%'%"$,HRI[$5$l$?>l9g!"(B
$B<uNN<T$O$=$N%=%U%H%&%'%"$,%*%j%8%J%k!&%P!<%8%g%s$G$O$J$$$H$$$&$3$H$r(B
$BCN$i$5$l$kI,MW$,$"$j$^$9!#(B
$B$=$l$O!"B>?M$N4XM?$K$h$C$F863+H/<T$KBP$9$kI>2A$,(B
$B1F6A$5$l$J$$$h$&$K$9$k$?$a$G$9!#(B
@c Finally, any free program is threatened constantly by software
@c patents. We wish to avoid the danger that redistributors of a free
@c program will individually obtain patent licenses, in effect making the
@c program proprietary. To prevent this, we have made it clear that any
@c patent must be licensed for everyone's free use or not licensed at all.
$B:G8e$K!"$I$N%U%j!<!&%W%m%0%i%`$b%=%U%H%&%'%"FC5v$K@d$($:6<$+$5$l$F$$$^$9!#(B
$B2f!9$O!"%U%j!<!&%W%m%0%i%`$N:FHRI[<T$,8D?ME*$KFC5v8"$r<hF@$7!"(B
$B;v<B>e$=$N%W%m%0%i%`$r<+J,$N:b;:$K$7$F$7$^$&$H$$$&4m81$r(B
$BHr$1$?$$$H4j$C$F$$$^$9!#(B
$B$3$l$rKI$0$?$a$K2f!9$O!"$$$:$l$NFC5v$b!"(B
$BC/$G$b<+M3$K;HMQ$G$-$k$h$&$K;HMQ5vBz$5$l$k$Y$-$+!"(B
$B$"$k$$$O2??M$KBP$7$F$bA4$/;HMQ$5$;$J$$$+$N!"(B
$B$$$:$l$+$K$9$Y$-$G$"$k$3$H$rL@$i$+$K$7$F$-$^$7$?!#(B
@c The precise terms and conditions for copying, distribution and
@c modification follow.
$BJ#<L!&HRI[!&JQ99$KBP$9$k@53N$J>r9`$H>r7o$r<!$K<($7$^$9!#(B
@iftex
@c @unnumberedsec TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
@unnumberedsec GNU$B0lHL8xM-;HMQ5vBz$N2<$G$NJ#@=!"HRI[!"JQ99$K4X$9$k>r9`$H>r7o(B
@end iftex
@ifinfo
@c @center TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
@center GNU$B0lHL8xM-;HMQ5vBz$N2<$G$NJ#@=!"HRI[!"JQ99$K4X$9$k>r9`$H>r7o(B
@end ifinfo
@enumerate 1
@item
@c This License applies to any program or other work which contains
@c a notice placed by the copyright holder saying it may be distributed
@c under the terms of this General Public License. The ``Program'', below,
@c refers to any such program or work, and a ``work based on the Program''
@c means either the Program or any derivative work under copyright law:
@c that is to say, a work containing the Program or a portion of it,
@c either verbatim or with modifications and/or translated into another
@c language. (Hereinafter, translation is included without limitation in
@c the term ``modification''.) Each licensee is addressed as ``you''.
$BK\;HMQ5vBz$O!"K\0lHL8xM-;HMQ5vBz$N3F>r9`$K=>$C$FHRI[$5$l$k$H$$$&(B
$BCx:n8"<T$+$i$N9pCNJ8$,I=<($5$l$F$$$k%W%m%0%i%`$d$=$NB>$N:n@.J*$KE,MQ$5$l$^$9!#(B
$B0J2<$K$*$$$F!V%W%m%0%i%`!W$H$O!"$=$N$h$&$J%W%m%0%i%`$d:n@.J*$r;X$9$b$N$H$7!"(B
$B$^$?!"!V%W%m%0%i%`@8@.J*!W$H$O!">e=R$7$?!V%W%m%0%i%`!W<+?H!"$^$?$O!"(B
$BCx:n8"K!2<$K$*$1$kA4$F$NGI@8J*!($9$J$o$A!"$=$N!V%W%m%0%i%`!W$NA4ItKt$O0lIt$r!"(B
$B$=$N$^$^Kt$OJQ99$7$F!"3n$D!?Kt$OB>$N8@8l$KJQ49$7$F!"(B
$BFbIt$KAH$_9~$s$@:n@.J*$r0UL#$7$^$9!#(B
$B!J0J2<!"8@8lJQ49$O!VJQ99!W$H$$$&MQ8l$NCf$KL5>r7o$K4^$^$l$k$b$N$H$7$^$9!#!K(B
$BK\;HMQ5vBz$K$h$C$F5vBz$r<u$1$k<T$r!V$"$J$?!W$H8F$S$^$9!#!!(B
@c Activities other than copying, distribution and modification are not
@c covered by this License; they are outside its scope. The act of
@c running the Program is not restricted, and the output from the Program
@c is covered only if its contents constitute a work based on the
@c Program (independent of having been made by running the Program).
@c Whether that is true depends on what the Program does.
$BJ#@=!"HRI[!"JQ990J30$N9T0Y$OK\;HMQ5vBz$NBP>]$H$7$^$;$s!#(B
$B$=$l$i$OK\;HMQ5vBz$NHO0O30$G$9!#(B
$B!V%W%m%0%i%`!W$r<B9T$5$;$k9T0Y$K4X$7$F@)Ls$O$"$j$^$;$s!#(B
$B!V%W%m%0%i%`!W$N=PNO$O!"(B
$B!J!V%W%m%0%i%`!W$r<B9T$5$;$F:n@.$5$;$?$+$I$&$+$H$OL54X78$K!K(B
$B$=$NFbMF$,!V%W%m%0%i%`@8@.J*!W$G$"$k>l9g$K8B$jK\;HMQ5vBz$NBP>]$H$J$j$^$9!#(B
$B$3$l$,Ev$F$O$^$k$+$I$&$+$O!"!V%W%m%0%i%`!W$,2?$r$9$k$b$N$+$K0M$j$^$9!#(B
@item
@c You may copy and distribute verbatim copies of the Program's
@c source code as you receive it, in any medium, provided that you
@c conspicuously and appropriately publish on each copy an appropriate
@c copyright notice and disclaimer of warranty; keep intact all the
@c notices that refer to this License and to the absence of any warranty;
@c and give any other recipients of the Program a copy of this License
@c along with the Program.
$B$"$J$?$O!"$I$N$h$&$JG^BN>e$XJ#@=$7$h$&$H$9$k>l9g$G$"$C$F$b!"(B
$BF~<j$7$?!V%W%m%0%i%`!W$N%=!<%9!&%3!<%I$r(B
$B$=$N$^$^$NFbMF$GJ#<L$7$?>e$GE,@5$JCx:n8"I=<($HJ]>Z$NJ|4~$rL@3N!"(B
$B3n$DE,@5$KIU5-$9$k>l9g$K8B$j!"J#@=Kt$OHRI[$9$k$3$H$,$G$-$^$9!#(B
$B$=$N>l9g!"K\;HMQ5vBz5Z$SL5J]>Z$K4X$9$k5-:\ItJ,$O!"(B
$BA4$F85$N$^$^$N7A$GI=<($7$F$/$@$5$$!#(B
$B$^$?!"!V%W%m%0%i%`!W$NHRI[@h$KBP$7$F$O!"(B
$B!V%W%m%0%i%`!W$H6&$KK\;HMQ5vBz=q$N<L$7$rEO$7$F$/$@$5$$!#(B
@c You may charge a fee for the physical act of transferring a copy, and
@c you may at your option offer warranty protection in exchange for a fee.
$BJ#@=J*$N0z$-EO$7$KMW$9$k<BHq$O@A5a$9$k$3$H$,$G$-$^$9!#(B
$B$^$?!"$"$J$?FH<+$NJ]>Z$r9T$J$&>l9g$O$=$l$rM-=~$H$9$k$3$H$,$G$-$^$9!#(B
@item
@c You may modify your copy or copies of the Program or any portion
@c of it, thus forming a work based on the Program, and copy and
@c distribute such modifications or work under the terms of Section 1
@c above, provided that you also meet all of these conditions:
$B<!$N3F>r7o$rA4$FK~$?$7$F$$$k8B$j!"$"$J$?$O!"(B
$B!V%W%m%0%i%`!WKt$O$=$N0lItJ,$rJQ99$7$F!V%W%m%0%i%`@8@.J*!W$H$9$k$3$H$,$G$-!"(B
$B$5$i$K!"JQ99HG$d1&:n@.J*$r>e5-Bh#29`$K=>$C$FJ#@=Kt$OHRI[$9$k$3$H$b$G$-$^$9!#(B
@enumerate a
@item
@c You must cause the modified files to carry prominent notices
@c stating that you changed the files and the date of any change.
$B%U%!%$%k$rJQ99$7$?;]$H$=$NJQ99F|$H$r!"JQ99$7$?%U%!%$%k>e$KL@3N$KI=<($9$k$3$H!#(B
@item
@c You must cause any work that you distribute or publish, that in
@c whole or in part contains or is derived from the Program or any
@c part thereof, to be licensed as a whole at no charge to all third
@c parties under the terms of this License.
$BJQ99$7$?$+H]$+$rLd$o$:!"K^$=!V%W%m%0%i%`!W(B
$BKt$O$=$N0lItJ,$rFbIt$KAH$_9~$s$G$$$k$+(B
$BKt$O$=$l$+$iGI@8$7$?@8@.J*$rHRI[$9$k>l9g$K$O!"(B
$B$=$NA4BN$rK\;HMQ5vBz$N>r9`$K=>$C$FBh;0<T$XL5=~$G;HMQ5vBz$9$k$3$H!#(B
@item
@c If the modified program normally reads commands interactively
@c when run, you must cause it, when started running for such
@c interactive use in the most ordinary way, to print or display an
@c announcement including an appropriate copyright notice and a
@c notice that there is no warranty (or else, saying that you provide
@c a warranty) and that users may redistribute the program under
@c these conditions, and telling the user how to view a copy of this
@c License. (Exception: if the Program itself is interactive but
@c does not normally print such an announcement, your work based on
@c the Program is not required to print an announcement.)
$BJQ99$7$?%W%m%0%i%`$,<B9T;~$KDL>o$NBPOCE*$JJ}K!$G(B
$B%3%^%s%I$rFI$`$h$&$K$J$C$F$$$k$H$9$l$P!"(B
$B:G$bIaDL$NJ}K!$GBPOCE*$K$=$N%W%m%0%i%`$r<B9T$9$k;~$K!"(B
$B<!$NFbMF$r<($9J88@$,%W%j%s%?$X0u;z$5$l$k$+!"0?$$$O2hLL$KI=<($5$l$k$3$H!#(B
@itemize @bullet
@item
$BE,@Z$JCx:n8"I=<(!#(B
@item
$BL5J]>Z$G$"$k$3$H!J$"$J$?$,FH<+$KJ]>Z$9$k>l9g$O!"$=$N;]!K!#(B
@item
$BHRI[$r<u$1$k<T$b!"(B
$BK\;HMQ5vBz$HF10l$N>r9`$K=>$C$F!V%W%m%0%i%`!W$r:FHRI[$G$-$k$3$H!#(B
@item
$BHRI[$r<u$1$k<T$,K\;HMQ5vBz=q$N<L$7$r;2>H$9$kJ}K!!#(B
$B!JNc30$H$7$F!"!V%W%m%0%i%`!W<+BN$OBPOCE*$G$"$C$F$b5/F0;~$NJ88@$r(B
$BDL>o$O0u;z$7$J$$$N$J$i$P!"(B
$B$"$J$?$N!V%W%m%0%i%`@8@.J*!W$O$3$N$h$&$JJ88@$r0u;z$9$kI,MW$O$"$j$^$;$s!#!K(B
@end itemize
@end enumerate
@c These requirements apply to the modified work as a whole. If
@c identifiable sections of that work are not derived from the Program,
@c and can be reasonably considered independent and separate works in
@c themselves, then this License, and its terms, do not apply to those
@c sections when you distribute them as separate works. But when you
@c distribute the same sections as part of a whole which is a work based
@c on the Program, the distribution of the whole must be on the terms of
@c this License, whose permissions for other licensees extend to the
@c entire whole, and thus to each and every part regardless of who wrote it.
$B$3$l$i$NMW7o$OJQ99$5$l$?:n@.J*$K$bA4$FE,MQ$5$l$^$9!#(B
$B$=$NJQ99HG$N0?$kItJ,$,!V%W%m%0%i%`!W$NGI@8J*$G$O$J$/!"(B
$B$7$+$b$=$l<+BNFHN)$G0[$J$k:n@.J*$@$H9gM}E*$K9M$($i$l$k>l9g!"(B
$B$"$J$?$,$=$l$i$rJL$N:n@.J*$H$7$FHRI[$7$?;~$O!"(B
$BK\;HMQ5vBz$H$=$N>r9`$O$=$l$i$NItJ,$K$OE,MQ$5$l$^$;$s!#(B
$B$7$+$7!"$=$l$i$r!V%W%m%0%i%`@8@.J*!W$N0lIt$H$7$FHRI[$9$k>l9g$O!"(B
$BA4BN$,K\;HMQ5vBz$N>r9`$K=>$C$FHRI[$5$l$J$1$l$P$J$i$:!"(B
$B;HMQ5vBz$r<u$1$kB>$NA4$F$N<T$KBP$9$k5vBz$b(B
$B%W%m%0%i%`A4BN$K$o$?$C$FM?$($i$l$J$1$l$P$J$i$:!"(B
$B7k2L$H$7$F!"C/$,=q$$$?$+$K$+$+$o$i$:!"(B
$BA4$F$NItJ,$KK\;HMQ5vBz$,E,MQ$5$l$J$1$l$P$J$j$^$;$s!#(B
@c Thus, it is not the intent of this section to claim rights or contest
@c your rights to work written entirely by you; rather, the intent is to
@c exercise the right to control the distribution of derivative or
@c collective works based on the Program.
$B$3$N$h$&$K!"K\>r9`$N0U?^$9$k$H$3$m$O!"(B
$B40A4$K$"$J$?$K$h$C$F=q$+$l$?:n@.J*$K$D$$$F!"8"Mx$rMW5a$7$?$j!"(B
$B$"$J$?$H8"Mx4X78$rAh$&$3$H$G$O$"$j$^$;$s!#(B
$B$`$7$m$=$NL\E*$O!":n@.J*$,!V%W%m%0%i%`@8@.J*!W(B
$B$G$"$k>l9g$K$=$NGI@8J*$d=89gJ*$NHRI[$r5,@)$9$k$3$H$K$"$j$^$9!#(B
@c In addition, mere aggregation of another work not based on the Program
@c with the Program (or with a work based on the Program) on a volume of
@c a storage or distribution medium does not bring the other work under
@c the scope of this License.
$B$5$i$K!"!V%W%m%0%i%`!W!JKt$O!V%W%m%0%i%`@8@.J*!W!K$H(B
$B!V%W%m%0%i%`@8@.J*!W$H$O$J$i$J$$B>$N%W%m%0%i%`$H$r!"(B
$BC1$KJ]4I$dHRI[$N$?$a$KF10l$NG^BN>e$K$^$H$a$F5-O?$7$?$H$7$F$b!"(B
$BK\;HMQ5vBz$OB>$N%W%m%0%i%`$K$OE,MQ$5$l$^$;$s!#(B
@item
@c You may copy and distribute the Program (or a work based on it,
@c under Section 2) in object code or executable form under the terms of
@c Sections 1 and 2 above provided that you also do one of the following:
$B$"$J$?$O!"0J2<$N$&$A$$$:$l$+#1$D$rK~$?$98B$j!"(B
$B>e5-Bh#29`5Z$SBh#39`$K=>$C$F!V%W%m%0%i%`!W(B
$B!JKt$O!">e5-Bh#39`$G8@5Z$7$F$$$k!V%W%m%0%i%`@8@.J*!W!K$r(B
$B%*%V%8%'%/%H!&%3!<%IKt$O<B9T2DG=$J7A<0$GJ#@=5Z$SHRI[$9$k$3$H$,$G$-$^$9!#(B
@enumerate a
@item
@c Accompany it with the complete corresponding machine-readable
@c source code, which must be distributed under the terms of Sections
@c 1 and 2 above on a medium customarily used for software interchange; or,
$BBP1~$9$k5!3#FI$_<h$j2DG=$J%=!<%9!&%3!<%I0l<0$r0l=o$K0z$-EO$9$3$H!#(B
$B$=$N>l9g!"$=$N%=!<%9!&%3!<%I$N0z$-EO$7$O>e5-Bh#29`5Z$SBh#39`$K=>$C$F!"(B
$BDL>o%=%U%H%&%'%"$N8r49$KMQ$$$i$l$kG^BN$G9T$J$o$l$k$3$H!#(B
@item
@c Accompany it with a written offer, valid for at least three
@c years, to give any third party, for a charge no more than your
@c cost of physically performing source distribution, a complete
@c machine-readable copy of the corresponding source code, to be
@c distributed under the terms of Sections 1 and 2 above on a medium
@c customarily used for software interchange; or,
$B>/$J$/$H$b#3G/4V$NM-8z4|4V$rDj$a!"(B
$B3n$D$=$N4|4VFb$G$"$l$PBP1~$9$k5!3#FI$_<h$j2DG=$J%=!<%9!&%3!<%I0l<0$NJ#@=$r!"(B
$B%=!<%9HRI[$K4X$o$k<BHq0J>e$NBP2A$rMW5a$;$:$KDs6!$9$k;]!"(B
$B5Z$S$=$N>l9g$K$O>e5-Bh#29`5Z$SBh#39`$K=>$C$F!"(B
$BDL>o%=%U%H%&%'%"$N8r49$KMQ$$$i$l$kG^BN$GDs6!$5$l$k;]$r5-:\$7$?=qLL$r!"(B
$BBh;0<T$K0l=o$K0z$-EO$9$3$H!#(B
@item
@c Accompany it with the information you received as to the offer
@c to distribute corresponding source code. (This alternative is
@c allowed only for noncommercial distribution and only if you
@c received the program in object code or executable form with such
@c an offer, in accord with Subsection b above.)
$BBP1~$9$k%=!<%9!&%3!<%IHRI[$N?=$7=P$K:]$7$F!"(B
$B$"$J$?$,F@$?>pJs$r0l=o$K0z$-EO$9$3$H!#(B
$B!J$3$NA*Br;h$O!"1DMx$rL\E*$H$7$J$$HRI[$G$"$C$F!"(B
$B3n$D$"$J$?$,>e5-$N!J#b!K9`$K4p$E$$$F!"(B
$B%*%V%8%'%/%H!&%3!<%I0?$$$O<B9T2DG=7A<0$N(B
$B%W%m%0%i%`$7$+F~<j$7$F$$$J$$>l9g$K8B$jE,MQ$5$l$kA*Br9`L\$G$9!#!K(B
@end enumerate
@c The source code for a work means the preferred form of the work for
@c making modifications to it. For an executable work, complete source
@c code means all the source code for all modules it contains, plus any
@c associated interface definition files, plus the scripts used to
@c control compilation and installation of the executable. However, as a
@c special exception, the source code distributed need not include
@c anything that is normally distributed (in either source or binary
@c form) with the major components (compiler, kernel, and so on) of the
@c operating system on which the executable runs, unless that component
@c itself accompanies the executable.
$B$J$*!"%=!<%9!&%3!<%I$H$O!"JQ99:n6H$KE,$7$?5-=R7A<0$r;X$7$^$9!#(B
$B$^$?!"<B9T2DG=7A<0$N%U%!%$%k$KBP1~$9$k%=!<%9!&%3!<%I0l<0$H$O!"(B
$B$=$l$K4^$^$l$kA4%b%8%e!<%k$KBP1~$9$kA4$F$N%=!<%9!&%3!<%I!"(B
$B5Z$S$"$i$f$k4XO"$N%$%s%?%U%'!<%9Dj5A%U%!%$%k!"(B
$B5Z$S<B9T$r2DG=$K$9$k%3%s%Q%$%k$H%$%s%9%H!<%k$N@)8f$K4X$9$k5-=R$r;X$7$^$9!#(B
$BFCJL$JNc30$H$7$F!"<B9T2DG=$J%U%!%$%k$,F0:n$9$k%*%Z%l!<%F%#%s%0!&%7%9%F%`$N(B
$B<gMW$J9=@.MWAG!J%3%s%Q%$%i!"%+!<%M%k$J$I!K$H6&$K(B
$B!J%=!<%9!&%3!<%IKt$O%P%$%J%j$N$I$A$i$+$G!KHRI[$5$l$F$$$k$b$N$K$D$$$F$O!"(B
$B$=$N9=@.MWAG<+BN$,<B9T7A<0$KIU?o$7$F$$$J$$>l9g$K8B$j!"(B
$BHRI[$5$l$k%=!<%9!&%3!<%I$K4^$a$kI,MW$O$"$j$^$;$s!#(B
@c If distribution of executable or object code is made by offering
@c access to copy from a designated place, then offering equivalent
@c access to copy the source code from the same place counts as
@c distribution of the source code, even though third parties are not
@c compelled to copy the source along with the object code.
$B<B9T2DG=7A<0$^$?$O%*%V%8%'%/%H!&%3!<%I$NHRI[$,!"(B
$B;X<($5$l$?>l=j$+$i$NJ#@=$N$?$a$N%"%/%;%98"$NIjM?$G$"$k>l9g!"(B
$BF1$8>l=j$+$i$N%=!<%9!&%3!<%I$NJ#@=$N$?$a$NF1Ey$J%"%/%;%98"$rIjM?$9$l$P!"(B
$B$?$H$(Bh;0<T$K%*%V%8%'%/%H!&%3!<%I$H6&$K%=!<%9$NJ#@=$r6/$$$J$/$H$b!"(B
$B%=!<%9!&%3!<%I$rHRI[$7$?$b$N$H$_$J$7$^$9!#(B
@item
@c You may not copy, modify, sublicense, or distribute the Program
@c except as expressly provided under this License. Any attempt
@c otherwise to copy, modify, sublicense or distribute the Program is
@c void, and will automatically terminate your rights under this License.
@c However, parties who have received copies, or rights, from you under
@c this License will not have their licenses terminated so long as such
@c parties remain in full compliance.
$BK\;HMQ5vBz$,L@<(E*$K5vBz$7$F$$$k>l9g$r=|$-!"$"$J$?$O!"(B
$B!V%W%m%0%i%`!W$rJ#@=!"JQ99!"%5%V%i%$%;%s%9!"HRI[$9$k$3$H$,$G$-$^$;$s!#(B
$BK\;HMQ5vBz$K=>$o$:$K!V%W%m%0%i%`!W$rJ#@=!"JQ99!"%5%V%i%$%;%s%9!"(B
$BHRI[$7$h$&$H$9$k9T0Y$O!"$=$l<+BN$,L58z$G$"$j!"3n$D!"(B
$BK\;HMQ5vBz$,$"$J$?$K5vBz$7$F$$$k!V%W%m%0%i%`!W$N8"Mx$r<+F0E*$K>CLG$5$;$^$9!#(B
$B$=$N>l9g!"K\;HMQ5vBz$K=>$C$F$"$J$?$+$iJ#@=J*$d$=$N8"Mx$rF@$F$$$kBh;0<T$O!"(B
$BK\;HMQ5vBz$K40A4$K=>$C$F$$$k>l9g$K8B$j!"(B
$B0zB3$-M-8z$J;HMQ8"8B$r;}$D$b$N$H$7$^$9!#(B
@item
@c You are not required to accept this License, since you have not
@c signed it. However, nothing else grants you permission to modify or
@c distribute the Program or its derivative works. These actions are
@c prohibited by law if you do not accept this License. Therefore, by
@c modifying or distributing the Program (or any work based on the
@c Program), you indicate your acceptance of this License to do so, and
@c all its terms and conditions for copying, distributing or modifying
@c the Program or works based on it.
$B$"$J$?$O$^$@F10U$N0u$H$7$F=pL>$7$F$$$J$$$N$G!"(B
$BK\;HMQ5vBz$r<u$1F~$l$kI,MW$O$"$j$^$;$s!#(B
$B$7$+$7!"$"$J$?$K!V%W%m%0%i%`!WKt$O$=$NGI@8J*$rJQ99Kt$O:FHRI[$9$k5v2D$r(B
$BM?$($k$b$N$OK\;HMQ5vBz0J30$K$O$"$j$^$;$s!#(B
$B$3$l$i$N9T0Y$O!"$"$J$?$,$b$7K\;HMQ5vBz$r<u$1F~$l$J$$$N$G$"$l$P!"(B
$BK!N'$K$h$C$F6X$8$i$l$^$9!#(B
$B=>$C$F!"$"$J$?$,!V%W%m%0%i%`!W!JKt$O!V%W%m%0%i%`@8@.J*!W!K$NJQ99Kt$OHRI[$r(B
$B9T$($P!"$=$l<+BN$G$"$J$?$OK\;HMQ5vBz$r<u$1F~$l!"3n$D!"(B
$B!V%W%m%0%i%`!WKt$O$=$N!V%W%m%0%i%`@8@.J*!W$NJ#@=!"HRI[!"JQ99$K(B
$B4X$9$k$3$l$i$N>r9`$H>r7o$NA4$F$r<u$1F~$l$?$3$H$r<($7$^$9!#(B
@item
@c Each time you redistribute the Program (or any work based on the
@c Program), the recipient automatically receives a license from the
@c original licensor to copy, distribute or modify the Program subject to
@c these terms and conditions. You may not impose any further
@c restrictions on the recipients' exercise of the rights granted herein.
@c You are not responsible for enforcing compliance by third parties to
@c this License.
$B$"$J$?$,!V%W%m%0%i%`!W!JKt$O$=$N!V%W%m%0%i%`@8@.J*!W!K$r:FHRI[$9$k$H<+F0E*$K!"(B
$B$=$N<uNN<T$O!"85$N;HMQ5vBz<T$+$i!"K\;HMQ5vBz$N>r9`$K=>$C$F!V%W%m%0%i%`!W$r(B
$BJ#@=!"HRI[!"JQ99$9$k$3$H$rFbMF$H$9$k;HMQ5vBz$r<u$1$?$b$N$H$7$^$9!#(B
$B$"$J$?$O!"<uNN<T$K5vBz$5$l$?8"Mx$N9T;H$K$D$$$F!"(B
$B$5$i$K@)Ls$r2C$($k$3$H$O$G$-$^$;$s!#(B
$B$"$J$?$K$O!"Bh;0<T$KK\;HMQ5vBz$N<u$1F~$l$r6/$$$k@UG$$O$"$j$^$;$s!#(B
@item
@c If, as a consequence of a court judgment or allegation of patent
@c infringement or for any other reason (not limited to patent issues),
@c conditions are imposed on you (whether by court order, agreement or
@c otherwise) that contradict the conditions of this License, they do not
@c excuse you from the conditions of this License. If you cannot
@c distribute so as to satisfy simultaneously your obligations under this
@c License and any other pertinent obligations, then as a consequence you
@c may not distribute the Program at all. For example, if a patent
@c license would not permit royalty-free redistribution of the Program by
@c all those who receive copies directly or indirectly through you, then
@c the only way you could satisfy both it and this License would be to
@c refrain entirely from distribution of the Program.
$B:[H==j$NH=7h!"Kt$OFC5v?/32$N?=$7N)$F!"Kt$O!JFC5vLdBj$K8B$i$J$$!K(B
$B2?$i$+$NM}M3$N7k2L$H$7$F!"$"$J$?$K2]$;$i$l$?>r7o$,K\;HMQ5vBz$H(B
$BAjF~$l$J$$$b$N$G$"$C$?$H$7$F$b!J:[H==j$NL?Na!"7@Ls!"$=$NB>$K$h$k$b$N$G$"$l!K!"(B
$BK\;HMQ5vBz$N>r7o$,LH=|$5$l$k$b$N$G$O$"$j$^$;$s!#(B
$BK\;HMQ5vBz$K$h$k@UL3$H!"$=$NB>$N2?$i$+$N4XO"@UL3$rF1;~$KK~$?$9BVMM$G(B
$BHRI[$9$k$3$H$,$G$-$J$$$J$i$P!"(B
$B$"$J$?$O!V%W%m%0%i%`!W$rA4$/HRI[$7$F$O$$$1$^$;$s!#(B
$BNc$($P!"FC5v8"$NFbMF$,!"$"$J$?$+$iD>@\Kt$O4V@\$KJ#@=$r<u$1<h$C$?A4$F$N?M$K(B
$B;HMQNA$N$J$$%W%m%0%i%`$N:FHRI[$r5v$5$J$$$b$N$G$"$l$P!"(B
$B$"$J$?$,$+$+$kFC5v>e$NMW@A$HK\;HMQ5vBz$NN>J}$rK~B-$5$;$kJ}K!$O!"(B
$B!V%W%m%0%i%`!W$NHRI[$r40A4$KCGG0$9$k$3$H$@$1$G$9!#(B
@c If any portion of this section is held invalid or unenforceable under
@c any particular circumstance, the balance of the section is intended to
@c apply and the section as a whole is intended to apply in other
@c circumstances.
$BK\>r9`$N0?$kItJ,$,2?$i$+$NFCJL$J>u672<$GL58z$^$?$OE,MQIT2DG=$K$J$C$?>l9g!"(B
$BK\>r9`$N$=$NB>$N;D$j$NItJ,$,E,MQ$5$l$k$h$&$K0U?^$5$l$F$*$j!"$^$?!"(B
$BK\>r9`$OA4BN$H$7$F$=$NB>$N>u67$KEv$F$O$^$k$h$&$K0U?^$5$l$F$$$^$9!#(B
@c It is not the purpose of this section to induce you to infringe any
@c patents or other property right claims or to contest validity of any
@c such claims; this section has the sole purpose of protecting the
@c integrity of the free software distribution system, which is
@c implemented by public license practices. Many people have made
@c generous contributions to the wide range of software distributed
@c through that system in reliance on consistent application of that
@c system; it is up to the author/donor to decide if he or she is willing
@c to distribute software through any other system and a licensee cannot
@c impose that choice.
$BK\>r9`$NL\E*$O!"FC5v$d$=$NB>$N:b;:8"$r?/32$7$?$j!"(B
$B$=$N$h$&$J8"Mx$K4p$E$/<gD%$NBEEv@-$rAh$&$h$&$K$"$J$?$K(B
$B4+$a$k$3$H$G$O$"$j$^$;$s!#(B
$BK\>r9`$NM#0l$NL\E*$O!"%U%j!<!&%=%U%H%&%'%"$NHRI[%7%9%F%`$N40A4@-$r<i$k$3$H$G!"(B
$B$=$l$O8xM-;HMQ5vBz$N<BA)$K$h$C$FMz9T$5$l$^$9!#(B
$BB?$/$N?M!9$,!"$3$N%7%9%F%`$N0l4S$7$?E,MQ$r?.Mj$7$F!"(B
$B$3$N%7%9%F%`$rDL$8$FHRI[$5$l$F$$$kI}9-$$HO0O$N%=%U%H%&%'%"$K@K$7$_$J$$9W8%$r(B
$B$7$F$/$l$^$7$?!#(B
$B:n@.<T$d4sB#<T$,B>$N2?$i$+$N%7%9%F%`$rDL$8$F%=%U%H%&%'%"$r(B
$BHRI[$7$?$$$H7h$a$k$3$H$OH`$i$N<+M30U;V$G$"$j!"(B
$B;HMQ5vBz$r<u$1$k<T$O$=$NA*Br$r6/$$$k$3$H$O$G$-$^$;$s!#(B
@c This section is intended to make thoroughly clear what is believed to
@c be a consequence of the rest of this License.
$BK\>r9`$O!"K\;HMQ5vBz$NB>$N>r9`$N0UL#FbMF$,2?$G$"$k$+$r(B
$B40A4$KL@$i$+$K$9$k$3$H$r0U?^$7$F$$$^$9!#(B
@item
@c If the distribution and/or use of the Program is restricted in
@c certain countries either by patents or by copyrighted interfaces, the
@c original copyright holder who places the Program under this License
@c may add an explicit geographical distribution limitation excluding
@c those countries, so that distribution is permitted only in or among
@c countries not thus excluded. In such case, this License incorporates
@c the limitation as if written in the body of this License.
$B!V%W%m%0%i%`!W$NHRI[!&;HMQ$,!"$"$k9q$K$*$$$FFC5vKt$OCx:n8"$G(B
$BJ]8n$5$l$?%$%s%?%U%'!<%9$N$I$A$i$+$G@)8B$5$l$k>l9g!"(B
$B!V%W%m%0%i%`!W$rK\;HMQ5vBz2<$K$*$$$?86Cx:n8"J];}<T$O!"(B
$B$=$N9q$r=|30$9$k;]$NL@<(E*$JHRI[CO0h@)8B$r2C$(!"(B
$B$=$l0J30$N!J=|30$5$l$J$$!K9q$K8BDj$7$FHRI[$,(B
$B5v$5$l$k$h$&$K$9$k$3$H$,$G$-$^$9!#(B
$B$=$N$h$&$J>l9g!"$=$N@)8B$rK\;HMQ5vBz$NK\J8$K(B
$B$"$?$+$b=q$+$l$F$$$k$+$N$h$&$KK\;HMQ5vBz$NCf$KAH$_F~$l$i$l$k$b$N$H$7$^$9!#(B
@item
@c The Free Software Foundation may publish revised and/or new versions
@c of the General Public License from time to time. Such new versions will
@c be similar in spirit to the present version, but may differ in detail to
@c address new problems or concerns.
Free Software Foundation $B$O?o;~!"K\0lHL8xM-;HMQ5vBz$N2~D{HG!"(B
$BKt$O?7HG$r8xI=$9$k$3$H$,$"$j$^$9!#(B
$B$=$N$h$&$J?7$7$$%P!<%8%g%s$O!"(B
$B8=9T$N%P!<%8%g%s$H4pK\E*$KJQ$o$k$H$3$m$O$"$j$^$;$s$,!"(B
$B?7$7$$LdBj$d7|0F;v9`$KBP1~$9$k$?$a$K:YIt$G$O0[$J$k$+$b$7$l$^$;$s!#(B
@c Each version is given a distinguishing version number. If the Program
@c specifies a version number of this License which applies to it and ``any
@c later version'', you have the option of following the terms and conditions
@c either of that version or of any later version published by the Free
@c Software Foundation. If the Program does not specify a version number of
@c this License, you may choose any version ever published by the Free Software
@c Foundation.
$B3F%P!<%8%g%s$O!"%P!<%8%g%sHV9f$K$h$C$F6hJL$7$^$9!#(B
$B!V%W%m%0%i%`!WCf$KK\;HMQ5vBz$N%P!<%8%g%sHV9f$N;XDj$,$"$k>l9g$O!"(B
$B$=$N;XDj$5$l$?%P!<%8%g%s$+!"Kt$O$=$N8e$K(BFree Software Foundation$B$+$i(B
$B8xI=$5$l$F$$$k$$$:$l$+$N%P!<%8%g%s$+$i#1$D$rA*Br$7$F!"(B
$B$=$N>r9`$H>r7o$K=>$C$F$/$@$5$$!#(B
$B!V%W%m%0%i%`!WCf$KK\;HMQ5vBz$N%P!<%8%g%sHV9f$N;XDj$,$J$$>l9g$O!"(B
Free Software Foundation $B$,8xI=$7$?$I$N%P!<%8%g%s$G$bA*Br$9$k$3$H$,$G$-$^$9!#(B
@item
@c If you wish to incorporate parts of the Program into other free
@c programs whose distribution conditions are different, write to the author
@c to ask for permission. For software which is copyrighted by the Free
@c Software Foundation, write to the Free Software Foundation; we sometimes
@c make exceptions for this. Our decision will be guided by the two goals
@c of preserving the free status of all derivatives of our free software and
@c of promoting the sharing and reuse of software generally.
$B!V%W%m%0%i%`!W$N0lIt$rHRI[>r7o$N0[$J$kB>$N%U%j!<!&%W%m%0%i%`$K(B
$BAH$_9~$_$?$$>l9g$O!"$=$N3+H/<T$K=qLL$G5v2D$r5a$a$F$/$@$5$$!#(B
Free Software Foundation $B$,Cx:n8"$r;}$C$F$$$k%=%U%H%&%'%"$K$D$$$F$O!"(B
Free Software Foundation $B$X=qLL$rDs=P$7$F$/$@$5$$!#(B
$B$3$N$h$&$J>l9g$KBP1~$9$k$?$a$K2f!9$ONc30E*=hM}$r$9$k$3$H$b$"$j$^$9$,!"(B
$B$=$NH=CG4p=`$H$J$k$N$O!"<!$N#2$D$NL\I8$N<B8=$K9gCW$9$k$+H]$+$H$$$&E@$G$9!#(B
$BB($A!"#1$D$O2f!9$N%U%j!<!&%=%U%H%&%'%"$NA4$F$NGI@8J*$r(B
$B%U%j!<$J>uBV$KJ]$D$3$H$G$"$j!"$b$$D$O%=%U%H%&%'%"$N6&M-$H:FMxMQ$H$r(B
$B9-$/B%?J$5$;$k$3$H$G$9!#(B
@iftex
@c @heading NO WARRANTY
@heading $BL5J]>Z(B
@end iftex
@ifinfo
@c @center NO WARRANTY
@center $BL5J]>Z(B
@end ifinfo
@item
@c BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
@c FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW@. EXCEPT WHEN
@c OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
@c PROVIDE THE PROGRAM ``AS IS'' WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
@c OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
@c MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE@. THE ENTIRE RISK AS
@c TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU@. SHOULD THE
@c PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
@c REPAIR OR CORRECTION.
$B!V%W%m%0%i%`!W$OL5=~$G;HMQ5vBz$5$l$^$9$N$G!"E,MQK!Na$NHO0OFb$G!"(B
$B!V%W%m%0%i%`!W$NJ]>Z$O0l@Z$"$j$^$;$s!#(B
$BCx:n8"<T$d$=$NB>$NBh;0<T$OA4$/L5J]>Z$G!V$=$N$^$^!W$N>uBV$G!"3n$D!"(B
$BL@<($+0EL[$G$"$k$+$rLd$o$:0l@Z$NJ]>Z$r$D$1$J$$$GDs6!$9$k$b$N$H$7$^$9!#(B
$B$3$3$G$$$&J]>Z$H$O!";T>l@-$dFCDjL\E*E,9g@-$K$D$$$F$N0EL[$NJ]>Z$b4^$^$l$^$9$,!"(B
$B$=$l$K8BDj$5$l$k$b$N$G$O$"$j$^$;$s!#(B
$B!V%W%m%0%i%`!W$NIJ<A$d@-G=$K4X$9$kA4$F$N%j%9%/$O$"$J$?$,Ii$&$b$N$H$7$^$9!#(B
$B!V%W%m%0%i%`!W$K7g4Y$,$"$k$H$o$+$C$?>l9g!"(B
$B$=$l$KH<$&0l@Z$NGI@8HqMQ$d=$M}!&D{@5$KMW$9$kHqMQ$OA4$F$"$J$?$NIiC4$H$7$^$9!#(B
@item
@c IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
@c WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
@c REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
@c INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
@c OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
@c TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
@c YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
@c PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
@c POSSIBILITY OF SUCH DAMAGES.
$BE,MQK!Na$NDj$a!"Kt$O=qLL$K$h$k9g0U$,$"$k>l9g$r=|$-!"(B
$BCx:n8"<T$d>e5-5vBz$r<u$1$F!V%W%m%0%i%`!W$NJQ99!&:FHRI[$r0Y$7F@$kBh;0<T$O!"(B
$B!V%W%m%0%i%`!W$r;HMQ$7$?$3$H!"(B
$B$^$?$O;HMQ$G$-$J$$$3$H$K5/0x$9$k0l@Z$NB;32$K$D$$$F2?$i$N@UG$$bIi$$$^$;$s!#(B
$BCx:n8"<T$dA05-$NBh;0<T$,!"$=$N$h$&$JB;32$NH/@8$9$k2DG=@-$K$D$$$F(B
$BCN$i$5$l$F$$$?>l9g$G$bF1MM$G$9!#(B
$B$J$*!"$3$3$G$$$&B;32$K$ODL>oB;32!"FCJLB;32!"6vH/B;32!"4V@\B;32$,4^$^$l$^$9(B
$B!J%G!<%?$N>C<:!"Kt$O$=$N@53N$5$NAS<:!"$"$J$?$dBh;0<T$,Ho$C$?B;<:!"(B
$BB>$N%W%m%0%i%`$H$N%$%s%?%U%'!<%9$NITE,9g2=!"Ey$b4^$^$l$^$9$,!"(B
$B$3$l$K8BDj$5$l$k$b$N$G$O$"$j$^$;$s!K!#(B
@end enumerate
@iftex
@c @heading END OF TERMS AND CONDITIONS
@heading $B0J>e(B
@end iftex
@ifinfo
@c @center END OF TERMS AND CONDITIONS
@center $B0J>e(B
@end ifinfo
@c = $B0J2<$OF|K\8lLu$K4X$7$?ItJ,(B
@heading $BCm0U(B
$B1QJ8J8=q!J(BGNU General Public License$B!K$r@5<0J8=q$H$9$k!#(B
$B$3$NOBJ8J8=q$OJ[8n;N$N0U8+$r:N$jF~$l$F!"(B
$B$G$-$k$@$1@53N$K1QJ8J8=q$rK]Lu$7$?$b$N$G$"$k$,!"(B
$BK!N'E*$KM-8z$J7@Ls=q$G$O$J$$!#(B
@unnumberedsec $BOBJ8J8=q<+BN$N:FG[I[$K4X$7$F(B
$B$$$+$J$kG^BN$G$b<!$N>r7o$,$9$Y$FK~$?$5$l$F$$$k>l9g$K8B$j!"(B
$BK\OBJ8J8=q$r$=$N$^$^J#<L$7G[I[$9$k$3$H$r5v2D$9$k!#(B
$B$^$?!"$"$J$?$OBh;0<T$KBP$7$FK\5v2D9pCN$HF10l$N5v2D$rM?$($k>l9g$K8B$j!"(B
$B:FG[I[$9$k$3$H$,5v2D$5$l$F$$$^$9!#(B
@itemize @bullet
@item
$B<uNN!"G[I[$5$l$?%3%T!<$KCx:n8"I=<($*$h$SK\5vBz9pCN$,(B
$BA0$b$C$F:\$;$i$l$F$$$k$3$H!#!!(B
@item
$B%3%T!<$N<uNN<T$,$5$i$K:FG[I[$9$k>l9g!"(B
$B$=$NG[I[<T$,K\9pCN$HF1$85v2D$rM?$($F$$$k$3$H!#(B
@item
$BOBJ8J8=q$NK\J8$r2~JQ$7$J$$$3$H!#(B
@end itemize
@page
@c @unnumberedsec How to Apply These Terms to Your New Programs
@unnumberedsec $B$"$J$?$N?7$7$$%W%m%0%i%`$K$3$l$i$N>r9`$rE,MQ$9$kJ}K!(B
@c If you develop a new program, and you want it to be of the greatest
@c possible use to the public, the best way to achieve this is to make it
@c free software which everyone can redistribute and change under these terms.
$B$"$J$?$,?7$7$/%W%m%0%i%`$r:n@.$7!"$=$l$r8xMQ$K6!$7$?$$>l9g$O!"(B
$B%W%m%0%i%`$r%U%j!<!&%=%U%H%&%'%"$K$7$F!"(B
$BA4$F$N?M!9$,0J>e$N3F>r9`$K=>$C$F$3$l$r:FHRI[$dJQ99$r$9$k$3$H$,(B
$B$G$-$k$h$&$K$9$k$N$,:GNI$NJ}K!$G$9!#(B
@c To do so, attach the following notices to the program. It is safest
@c to attach them to the start of each source file to most effectively
@c convey the exclusion of warranty; and each file should have at least
@c the ``copyright'' line and a pointer to where the full notice is found.
$B$=$&$9$k$?$a$K$O!"%W%m%0%i%`$K0J2<$NI=<($r$7$F$/$@$5$$!#(B
$B$=$N>l9g!"L5J]>Z$G$"$k$H$$$&$3$H$r:G$b8z2LE*$KEA$($k$?$a$K!"(B
$B%=!<%9!&%U%!%$%k$NKAF,$K$=$NA4J8$rI=<($9$l$P:G$b0BA4$G$9$,!"(B
$B$=$NB>$NJ}K!$GI=<($9$k>l9g$G$b!"!VCx:n8"I=<(!W$HA4J8$rFI$_=P$90Y$N(B
$B%"%I%l%9$X$N%]%$%s%?$@$1$O%U%!%$%k>e$KI=<($7$F$*$$$F$/$@$5$$!#(B
@smallexample
@c @var{one line to give the program's name and an idea of what it does.}
@c Copyright (C) 19@var{yy} @var{name of author}
@var{$B%W%m%0%i%`L>$H$I$s$JF0:n$r$9$k$b$N$+$K$D$$$F$N4JC1$J@bL@$N9T(B}
$B#C#o#p#y#r#i#g#h#t!J#C!K!!#1#9!{!{G/!"(B@var{$BCx:n8"<TL>(B}
@c This program is free software; you can redistribute it and/or
@c modify it under the terms of the GNU General Public License
@c as published by the Free Software Foundation; either version 2
@c of the License, or (at your option) any later version.
$BK\%W%m%0%i%`$O%U%j!<!&%=%U%H%&%'%"$G$9!#(B
$B$"$J$?$O!"(BFree Software Foundation$B$,8xI=$7$?(BGNU $B0lHL8xM-;HMQ5vBz$N(B
$B!V%P!<%8%g%s#2!W0?$$$O$=$l0J9_$N3F%P!<%8%g%s$NCf$+$i$$$:$l$+$rA*Br$7!"(B
$B$=$N%P!<%8%g%s$,Dj$a$k>r9`$K=>$C$FK\%W%m%0%i%`$r(B
$B:FHRI[$^$?$OJQ99$9$k$3$H$,$G$-$^$9!#(B
@c This program is distributed in the hope that it will be useful,
@c but WITHOUT ANY WARRANTY; without even the implied warranty of
@c MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE@. See the
@c GNU General Public License for more details.
$BK\%W%m%0%i%`$OM-MQ$H$O;W$$$^$9$,!"HRI[$K$"$?$C$F$O!"(B
$B;T>l@-5Z$SFCDjL\E*E,9g@-$K$D$$$F$N0EL[$NJ]>Z$r4^$a$F!"(B
$B$$$+$J$kJ]>Z$b9T$J$$$^$;$s!#(B
$B>\:Y$K$D$$$F$O(BGNU $B0lHL8xM-;HMQ5vBz=q$r$*FI$_$/$@$5$$!#(B
@c You should have received a copy of the GNU General Public License along
@c with this program; if not, write to the Free Software Foundation, Inc.,
@c 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
$B$"$J$?$O!"K\%W%m%0%i%`$H0l=o$K(BGNU$B0lHL8xM-;HMQ5vBz$N<L$7$r(B
$B<u$1<h$C$F$$$k$O$:$G$9!#(B
$B$=$&$G$J$$>l9g$O!"(B@*
$B!!(BFree Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
@footnote{$B!ZCm0U![8=:_!"$3$N%P!<%8%g%s(B2$B$NH/9T<T(B(FSF)$B=;=j$O!"(B
$B@5<0$K?7$7$$=;=j$N(B
59 Temple Place, Suite 330, Boston, MA 02111-1307, USA $B$KJQ$o$C$F$$$k!#(B}
@ifinfo
$B!ZCm0U![(B $B8=:_!"$3$N%P!<%8%g%s(B2$B$NH/9T<T(B(FSF)$B=;=j$O!"@5<0$K?7$7$$=;=j$N(B
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA $B$KJQ$o$C$F$$$k!#(B
@end ifinfo
$B$X<j;f$r=q$$$F$/$@$5$$!#(B
@end smallexample
@c Also add information on how to contact you by electronic and paper mail.
$B$^$?!"%f!<%6$,EE;R%a%$%k$d=q?.$G$"$J$?$HO"Mm$r$H$kJ}K!$K$D$$$F$N>pJs$b(B
$B=q$-E:$($F$/$@$5$$!#(B
@c If the program is interactive, make it output a short notice like this
@c when it starts in an interactive mode:
$B%W%m%0%i%`$,BPOCE*$KF0:n$9$k>l9g$O!"(B
$BBPOC%b!<%I$G5/F0$7$?;~$K<!$N$h$&$JC;$$9pCNJ8$,I=<($5$l$k$h$&$K$7$F$/$@$5$$!#(B
@smallexample
@c Gnomovision version 69, Copyright (C) 19@var{yy} @var{name of author}
@c Gnomovision comes with ABSOLUTELY NO WARRANTY; for details
@c type `show w'. This is free software, and you are welcome
@c to redistribute it under certain conditions; type `show c'
@c for details.
$B#G#n#o#m#o#v#i#s#i#o#n!!%P!<%8%g%s#6#9!"#C#o#p#y#r#i#g#h#t!J#C!K#1#9!{!{G/(B @var{$BCx:n8"<TL>(B}
Gnomovision $B$O40A4$KL5J]>Z$G$9!#>\:Y$O(B show w $B$H%?%$%W$7$F$/$@$5$$!#(B
$B$3$l$O%U%j!<!&%=%U%H%&%'%"$J$N$G!"FCDj$N>r7o$N2<$G$3$l$r:FHRI[$9$k(B
$B$3$H$,$G$-$^$9!#>\:Y$O(B show c $B$H%?%$%W$7$F$/$@$5$$!#(B
@end smallexample
@c The hypothetical commands @samp{show w} and @samp{show c} should show
@c the appropriate parts of the General Public License. Of course, the
@c commands you use may be called something other than @samp{show w} and
@c @samp{show c}; they could even be mouse-clicks or menu items---whatever
@c suits your program.
$B>e5-$N(B@samp{show w}$B$d(B@samp{show c}$B$O3F!9!"(B
$BK\0lHL8xM-;HMQ5vBz$N4XO"$9$kItJ,$rI=<($9$k%3%^%s%I$r;X$7$^$9!#(B
$B$b$A$m$s!"$"$J$?$,;H$&$3$l$i$N%3%^%s%I$O(B@samp{show w}$B$d(B@samp{show c}$B$H$$$C$?(B
$B8F$SL>$G$J$/$F$b9=$$$^$;$s!#(B
$B$5$i$K!"$=$l$i$N%3%^%s%I$O$"$J$?$N%W%m%0%i%`$K9g$o$;$k0Y$K!"(B
$B%^%&%9$G%/%j%C%/$7$?$j%a%K%e!<7A<0$K$9$k$3$H$b$G$-$^$9!#(B
@c You should also get your employer (if you work as a programmer) or your
@c school, if any, to sign a ``copyright disclaimer'' for the program, if
@c necessary. Here is a sample; alter the names:
$B$^$?!"I,MW$HG'$a$?>l9g$K$O!"$"$J$?$N8[$$<g(B
$B!J$"$J$?$,%W%m%0%i%^$H$7$FF/$$$F$$$k>l9g!K$d:_@R$9$k3X9;$+$i!"(B
$B$=$N%W%m%0%i%`$KBP$9$k!VCx:n8"J|4~!W$rG'$a$?=pL>F~$j$N=qLL$rF~<j$7$F$/$@$5$$!#(B
$B$3$3$K$=$NJ8Nc$r:\$;$^$9!#L>A0$OJQ$($F$/$@$5$$!#(B
@smallexample
@group
@c Yoyodyne, Inc., hereby disclaims all copyright
@c interest in the program `Gnomovision'
@c (which makes passes at compilers) written
@c by James Hacker.
Yoyodyne, Inc. $B$O!"(BJames Hacker $B$,3+H/$7$?%W%m%0%i%`(B`Gnomovision'
$B!J%3%s%Q%$%i$K$D$J$2$k%W%m%0%i%`!K$K$D$$$F$NCx:n8"K!>e$NA4$F$N8"Mx$rJ|4~$9$k!#(B
@c @var{signature of Ty Coon}, 1 April 1989
@c Ty Coon, President of Vice
@var{$B#T#y!!#C#o#o#n!!$N=pL>(B}$B!$!!#1!!#A#p#r#i#l!!#1#9#8#9(B
$B#T#y!!#C#o#o#n!$!!I{<RD9(B
@end group
@end smallexample
@c This General Public License does not permit incorporating your program into
@c proprietary programs. If your program is a subroutine library, you may
@c consider it more useful to permit linking proprietary applications with the
@c library. If this is what you want to do, use the GNU Library General
@c Public License instead of this License.
$BK\0lHL8xM-;HMQ5vBz$O!"$"$J$?$N%W%m%0%i%`$r:b;:8"$NBP>]$H$J$C$F$$$k(B
$BB>$N%W%m%0%i%`$KAH$_9~$`$3$H$OG'$a$F$$$^$;$s!#(B
$B$"$J$?$N%W%m%0%i%`$,%5%V%k!<%A%s!&%i%$%V%i%j$G$"$C$F!"(B
$B$"$J$?$,$=$N%i%$%V%i%j$r:b;:8"$NBP>]$H$J$C$F$$$kB>$N%"%W%j%1!<%7%g%s$H(B
$B%j%s%/$5$;$k$3$H$K$h$C$F!"$5$i$KM-MQ$J$b$N$K$7$h$&$H$9$k>l9g$K$O!"(B
$BK\;HMQ5vBz=q$NBe$o$j$K!"(BGNU$B%i%$%V%i%j0lHL8xM-;HMQ5vBz=q$K=>$C$F$/$@$5$$!#(B
@c =============================================================
@c = $B0J>e$N(BGPL$B$NF|K\8lLu$K4X$7$F$NLd$$9g$o$;$O!"0J2<$N%"%I%l%9$K(B
@c = $B$*4j$$$$$?$7$^$9!#(B
@c = mieko@gnu.org $B$b$7$/$O(B hikichi@gnu.org
@c =============================================================
@node Intro, Glossary, Copying, Top
@c @unnumbered Introduction
@unnumbered $B$O$8$a$K(B
@c You are reading about GNU Emacs, the GNU incarnation of the advanced,
@c self-documenting, customizable, extensible real-time display editor Emacs.
@c (The `G' in `GNU' is not silent.)
$B$"$J$?$O!"@h?JE*$G!"%;%k%U%I%-%e%a%s%HJ}<0$G!"%+%9%?%^%$%:2DG=$G!"(B
$B3HD%2DG=$J!"(BGNU$BHG$N8"2=$G$"$k%j%"%k%?%$%`2hLL%(%G%#%?(B
Emacs$B$K$D$$$FFI$s$G$$$k$H$3$m$G$9!#(B
$B!J!V(BGNU$B!W$N!V(BG$B!W$OH/2;$7$^$9!#!K(B
@c We say that Emacs is a @dfn{display} editor because normally the text
@c being edited is visible on the screen and is updated automatically as you
@c type your commands. @xref{Screen,Display}.
Emacs$B$O(B@dfn{$B2hLL(B}$B%(%G%#%?$G$"$k$H$$$&$N$O!"(B
$BJT=8Cf$N%F%-%9%H$r2hLL>e$G8+$k$3$H$,$G$-!"(B
$B%3%^%s%I$rF~NO$9$k$H<+F0E*$K2hLL$,99?7$5$l$k$H$$$&$3$H$G$9!#(B
@xref{Screen,Display}$B!#(B
@c We call it a @dfn{real-time} editor because the display is updated very
@c frequently, usually after each character or pair of characters you
@c type. This minimizes the amount of information you must keep in your
@c head as you edit. @xref{Basic,Real-time,Basic Editing}.
@dfn{$B%j%"%k%?%$%`(B}$B%(%G%#%?$H8F$V$N$O!"(B
$BIQHK$K2hLL99?7$,9T$o$l!"DL>o!"(B1$BJ8;z$+(B2$BJ8;zBG$D$H99?7$5$l$k$+$i$G$9!#(B
$BJT=8$K$H$b$J$C$F3P$($F$*$/$Y$-$3$H$r:G>.8B$KM^$($i$l$^$9!#(B
@xref{Basic,Real-time,Basic Editing}$B!#(B
@c We call Emacs advanced because it provides facilities that go beyond
@c simple insertion and deletion: controlling subprocesses; automatic
@c indentation of programs; viewing two or more files at once; editing
@c formatted text; and dealing in terms of characters, words, lines,
@c sentences, paragraphs, and pages, as well as expressions and comments in
@c several different programming languages.
Emacs$B$O@h?JE*$G$"$k$H$$$&$N$O!"C1=c$JA^F~$H:o=|$@$1$G$J$/!"(B
$B%W%m%;%9$N@)8f!"%W%m%0%i%`$N;z2<$2$N<+F02=!"(B
$BJ#?t$N%U%!%$%k$rF1;~$KD/$a$k!"@07A:Q$_%F%-%9%H$rJT=8$9$k!"(B
$BJ8;z!"C18l!"9T!"J8!"CJMn!"%Z!<%8$r07$&$N$HF1MM$K!"(B
$B0[$J$k%W%m%0%i%_%`8@8l$N<0$d%3%a%s%H$r07$&$H$$$C$?5!G=$bDs6!$9$k$+$i$G$9!#(B
@c @dfn{Self-documenting} means that at any time you can type a special
@c character, @kbd{Control-h}, to find out what your options are. You can
@c also use it to find out what any command does, or to find all the commands
@c that pertain to a topic. @xref{Help}.
@dfn{$B%;%k%U%I%-%e%a%s%HJ}<0(B}$B$H$O!"(B
$BFCJL$JJ8;z(B@kbd{Control-h}$B$rBG$F$P!"(B
$B2?$,$G$-$k$+$$$D$G$bCN$k$3$H$,$G$-$k$H$$$&$3$H$G$9!#(B
$B$=$l$K$h$C$F!"G$0U$N%3%^%s%I$,2?$r$9$k$b$N$J$N$+D4$Y$?$j!"(B
$B$"$kOCBj$K4XO"$9$k$9$Y$F$N%3%^%s%I$rD4$Y$k$3$H$,$G$-$^$9!#(B
@xref{Help}$B!#(B
@c @dfn{Customizable} means that you can change the definitions of Emacs
@c commands in little ways. For example, if you use a programming language in
@c which comments start with @samp{<**} and end with @samp{**>}, you can tell
@c the Emacs comment manipulation commands to use those strings
@c (@pxref{Comments}). Another sort of customization is rearrangement of the
@c command set. For example, if you prefer the four basic cursor motion
@c commands (up, down, left and right) on keys in a diamond pattern on the
@c keyboard, you can rebind the keys that way. @xref{Customization}.
@dfn{$B%+%9%?%^%$%:2DG=(B}$B$H$O!"(B
Emacs$B%3%^%s%I$NDj5A$r<c43JQ99$G$-$k$H$$$&$3$H$G$9!#(B
$B$?$H$($P!"(B@samp{<**}$B$G;O$^$j(B@samp{**>}$B$G=*$o$k$h$&$J%3%a%s%H$N(B
$B%W%m%0%i%`8@8l$r;H$C$F$$$k>l9g$K$O!"(B
Emacs$B$N%3%a%s%HA`:n%3%^%s%I$K$3$l$i$NJ8;zNs$r;H$&$h$&$K;X<($G$-$^$9(B
$B!J(B@pxref{Comments}$B!K!#(B
$BJL$N<oN`$N%+%9%?%^%$%:$H$7$F$O!"%3%^%s%I%;%C%H$N:FJT@.$,$"$2$i$l$^$9!#(B
$B$?$H$($P!"%-!<%\!<%I>e$GI)7A$r7A:n$k0LCV$K$"$k%-!<$r(B
$B!J>e2<:81&$N!K(B4$B$D$N4pK\E*$J%+!<%=%k0\F0%3%^%s%I$H$7$F;H$$$?$1$l$P!"(B
$B$=$N$h$&$K%-!<$r:FDj5A$G$-$^$9!#(B
@xref{Customization}$B!#(B
@c @dfn{Extensible} means that you can go beyond simple customization and
@c write entirely new commands, programs in the Lisp language to be run by
@c Emacs's own Lisp interpreter. Emacs is an ``on-line extensible''
@c system, which means that it is divided into many functions that call
@c each other, any of which can be redefined in the middle of an editing
@c session. Almost any part of Emacs can be replaced without making a
@c separate copy of all of Emacs. Most of the editing commands of Emacs
@c are written in Lisp already; the few exceptions could have been written
@c in Lisp but are written in C for efficiency. Although only a programmer
@c can write an extension, anybody can use it afterward. If you want to
@c learn Emacs Lisp programming, we recommend the @cite{Introduction to
@c Emacs Lisp} by Robert J. Chassell, also published by the Free Software
@c Foundation.
@dfn{$B3HD%2DG=(B}$B$H$O!"C1=c$J%+%9%?%^%$%:$G$O$J$/!"(B
Emacs$B<+?H$N(BLisp$B=hM}7O$GF0:n$9$k(BLisp$B8@8l$G%W%m%0%i%`$r=q$1$k!"(B
$B$D$^$j!"$^$C$?$/?7$7$$%3%^%s%I$r=q$1$k$H$$$&$3$H$G$9!#(B
Emacs$B$O!X%*%s%i%$%s$G3HD%2DG=!Y$J%7%9%F%`$G$9!#(B
$B$D$^$j!"(BEmacs$B$O8_$$$K8F$S9g$&?tB?$/$N4X?t$KJ,3d$G$-!"(B
$BJT=8$7$F$$$k:GCf$G$5$(!"$=$l$i$N4X?t$N$I$l$G$b:FDj5A$G$-$^$9!#(B
Emacs$BA4BN$r(B1$B$D(B1$B$D%3%T!<$7$?$j$;$:$K!"(B
Emacs$B$NG$0U$NItJ,$@$1$rCV$-49$($k$3$H$,2DG=$G$9!#(B
Emacs$B$N$[$H$s$I$NJT=8%3%^%s%I$O$9$G$K(BLisp$B$G=q$$$F$"$j$^$9!#(B
$B>/?t$NNc30$b(BLisp$B$G=q$/$3$H$b2DG=$G$9$,!"8zN($N$?$a$K(BC$B$G=q$$$F$"$j$^$9!#(B
$B3HD%5!G=$r=q$1$k$N$O%W%m%0%i%^$@$1$G$9$,!"(B
$B=q$->e$2$F$7$^$($PC/$G$b$=$l$rMxMQ$G$-$^$9!#(B
Emacs Lisp$B$N%W%m%0%i%_%s%0$r3X$V$K$O!"(B
Free Software Foundation$B$,=PHG$7$?(B
Robert J. Chassell$B$N(B@cite{Programming in Emacs Lisp, An Introduction}
@footnote{$B!ZLuCm![F|K\8lLu!'(B
$B!X(BEmacs Lisp$B%W%m%0%i%_%s%0F~Lg!Y!"%"%9%-!<=PHG6I!"(BISBN 4-7561-1805-4}
$B$r4+$a$^$9!#(B
@c When run under the X Window System, Emacs provides its own menus and
@c convenient bindings to mouse buttons. But Emacs can provide many of the
@c benefits of a window system on a text-only terminal. For instance, you
@c can look at or edit several files at once, move text between files, and
@c edit files while running shell commands.
X$B%&%#%s%I%&%7%9%F%`$GF0:n$9$k(BEmacs$B$G$O!"(B
$BFH<+$N%a%K%e!<$H%^%&%9%\%?%s$K$h$kJXMx$JA`:n$rDs6!$7$^$9!#(B
$B$7$+$7!"$?$H$(J8;zC<Kv$G$"$C$F$b!"(B
Emacs$B$O%&%#%s%I%&%7%9%F%`$N287C$rM?$($F$/$l$^$9!#(B
$B$?$H$($P!"J#?t$N%U%!%$%k$rF1;~$KD/$a$?$jJT=8$7$?$j!"(B
$B%U%!%$%k4V$G%F%-%9%H$r0\F0$7$?$j!"(B
$B%7%'%k%3%^%s%I$r<B9T$7$F$$$k:GCf$G$b%U%!%$%k$rJT=8$G$-$^$9!#(B
@include screen.texi
@include commands.texi
@include entering.texi
@include basic.texi
@include mini.texi
@include m-x.texi
@include help.texi
@include mark.texi
@include killing.texi
@include regs.texi
@include display.texi
@include search.texi
@include fixit.texi
@include files.texi
@include buffers.texi
@include windows.texi
@include frames.texi
@include mule.texi
@include major.texi
@include indent.texi
@include text.texi
@include programs.texi
@include building.texi
@include abbrevs.texi
@include picture.texi
@include sending.texi
@include rmail.texi
@include dired.texi
@include calendar.texi
@include misc.texi
@include custom.texi
@include trouble.texi
@include cmdargs.texi
@include anti.texi
@include msdog.texi
@c = texinfo-format-buffer$B$G$O!"L@<(E*$K%/%j%"$7$J$$$H!"(B
@c = $B%;%C%H$H2>Dj$7$F$7$^$&$N$G!D(B
@clear justgnu
@include gnu.texi
@c = $B%"%k%U%!%Y%C%H=g$N$^$^(B
@c @include glossary.texi
@c = $B$"$$$&$($*=g$KD>$7$?$b$N(B
@include glossary-jp.texi
@ifinfo
@include ack.texi
@end ifinfo
@node Key Index, Command Index, Glossary, Top
@c @unnumbered Key (Character) Index
@unnumbered $B%-!<!JJ8;z!K:w0z(B
@printindex ky
@node Command Index, Variable Index, Key Index, Top
@c @unnumbered Command and Function Index
@unnumbered $B%3%^%s%I(B/$B4X?t:w0z(B
@printindex fn
@node Variable Index, Concept Index, Command Index, Top
@c @unnumbered Variable Index
@unnumbered $BJQ?t:w0z(B
@printindex vr
@node Concept Index, Acknowledgments, Variable Index, Top
@c @unnumbered Concept Index
@unnumbered $B35G0:w0z(B
@printindex cp
@summarycontents
@contents
@bye
|