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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Copyright (C) 2017 Daniel Birket.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License,
Version 1.3 or any later version published by the Free Software
Foundation; with no Invariant Sections, with no Front-Cover Texts, and
with no Back-Cover Texts. A copy of the license is included in the
section entitled GNU Free Documentation License.
This is the graphviz-dot-mode Manual, edition 0.3.10.a, by
Daniel Birket, updated July 10, 2017, which describes how to install and
use the Emacs package graphviz-dot-mode, version 0.3.10,
released 25 May 2015, which was written by and Copyright
(C) 2002-2015 Pieter Pareit, et al. (See
http://ppareit.github.io/graphviz-dot-mode/)
This HTML
document was composed using Emacs v25.2.1 (Richard
M. Stallman, et al. See https://www.gnu.org/software/emacs/)
and compiled from .texi source with GNU Texinfo v6.4 (Richard
M. Stallman, et al. See https://www.gnu.org/software/texinfo/)
Graphviz is by AT&T Labs Research. (See http://graphviz.org) -->
<!-- Created by GNU Texinfo 6.4, http://www.gnu.org/software/texinfo/ -->
<head>
<title>graphviz-dot-mode Manual</title>
<meta name="description" content="This manual describes how to install and use graphviz-dot-mode, an Emacs package for working with Graphviz DOT-format files.">
<meta name="keywords" content="graphviz-dot-mode Manual">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="texi2any">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="#Top" rel="start" title="Top">
<link href="#Functions-_0026-Variables" rel="index" title="Functions & Variables">
<link href="#SEC_Contents" rel="contents" title="Table of Contents">
<link href="dir.html#Top" rel="up" title="(dir)">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.indentedblock {margin-right: 0em}
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smalllisp {margin-left: 3.2em}
kbd {font-style: oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nolinebreak {white-space: nowrap}
span.roman {font-family: initial; font-weight: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.no-bullet {list-style: none}
-->
</style>
</head>
<body lang="en">
<h1 class="settitle" align="center"><code>graphviz-dot-mode</code> Manual</h1>
<a name="SEC_Contents"></a>
<h2 class="contents-heading">Table of Contents</h2>
<div class="contents">
<ul class="no-bullet">
<li><a name="toc-Introduction-1" href="#Introduction">1 Introduction</a></li>
<li><a name="toc-Installing-1" href="#Installing">2 Installing</a>
<ul class="no-bullet">
<li><a name="toc-Recommended-Installation-1" href="#Recommended-Installation">2.1 Recommended Installation</a></li>
<li><a name="toc-Installing-by-Hand-1" href="#Installing-by-Hand">2.2 Installing by Hand</a></li>
<li><a name="toc-Installing-this-Info-Manual-1" href="#Installing-this-Info-Manual">2.3 Installing this Info Manual</a></li>
</ul></li>
<li><a name="toc-Using-graphviz_002ddot_002dmode-1" href="#Using-graphviz_002ddot_002dmode">3 Using <code>graphviz-dot-mode</code></a>
<ul class="no-bullet">
<li><a name="toc-Compiling-_0026-Viewing-1" href="#Compiling-_0026-Viewing">3.1 Compiling & Viewing</a></li>
<li><a name="toc-Editing-1" href="#Editing">3.2 Editing</a>
<ul class="no-bullet">
<li><a name="toc-Indenting-1" href="#Indenting">3.2.1 Indenting</a></li>
<li><a name="toc-Completion-1" href="#Completion">3.2.2 Completion</a></li>
<li><a name="toc-Commenting-1" href="#Commenting">3.2.3 Commenting</a></li>
</ul></li>
</ul></li>
<li><a name="toc-Customizing-1" href="#Customizing">4 Customizing</a>
<ul class="no-bullet">
<li><a name="toc-Compile-_0026-View-Variables-1" href="#Compile-_0026-View-Variables">4.1 Compile & View Variables</a></li>
<li><a name="toc-Editing-Variables-1" href="#Editing-Variables">4.2 Editing Variables</a>
<ul class="no-bullet">
<li><a name="toc-Indenting-Variables-1" href="#Indenting-Variables">4.2.1 Indenting Variables</a></li>
<li><a name="toc-Completion-Variables-1" href="#Completion-Variables">4.2.2 Completion Variables</a></li>
</ul></li>
<li><a name="toc-Keyword-Variables-1" href="#Keyword-Variables">4.3 Keyword Variables</a></li>
<li><a name="toc-Mode-Hook-1" href="#Mode-Hook">4.4 Mode Hook</a></li>
</ul></li>
<li><a name="toc-Credits-1" href="#Credits">5 Credits</a></li>
<li><a name="toc-GNU-General-Public-License-2_002e0-1" href="#GNU-General-Public-License-2_002e0"><acronym>GNU</acronym> General Public License 2.0</a></li>
<li><a name="toc-GNU-Free-Documentation-License-1" href="#GNU-Free-Documentation-License"><acronym>GNU</acronym> Free Documentation License</a></li>
<li><a name="toc-Functions-_0026-Variables-1" href="#Functions-_0026-Variables">Functions & Variables</a></li>
<li><a name="toc-Keys-and-Concepts-1" href="#Keys-and-Concepts">Keys and Concepts</a></li>
</ul>
</div>
<a name="Top"></a>
<a name="graphviz_002ddot_002dmode-Manual"></a>
<h1 class="top"><code>graphviz-dot-mode</code> Manual</h1>
<p>This manual describes how to install and use <code>graphviz-dot-mode</code>, an Emacs package for working with <cite>Graphviz</cite> DOT-format files.
</p>
<a name="index-copying-copyright-_0028manual_0029"></a>
<p>Copyright © 2017 Daniel Birket.
</p>
<blockquote>
<p>Permission is granted to copy, distribute and/or modify this document
under the terms of the <acronym>GNU</acronym> Free Documentation License,
Version 1.3 or any later version published by the Free Software
Foundation; with no Invariant Sections, with no Front-Cover Texts, and
with no Back-Cover Texts. A copy of the license is included in the
section entitled <cite><acronym>GNU</acronym> Free Documentation License</cite>.
</p></blockquote>
<p>This is the <cite><code>graphviz-dot-mode</code> Manual</cite>, edition 0.3.10.a, by
Daniel Birket, updated July 10, 2017, which describes how to install and
use the Emacs package <code>graphviz-dot-mode</code>, version 0.3.10,
released 25 May 2015, which was written by and Copyright
© 2002-2015 Pieter Pareit, et al. (See
<a href="http://ppareit.github.io/graphviz-dot-mode/">http://ppareit.github.io/graphviz-dot-mode/</a>)
</p>
<p>This <acronym>HTML</acronym>
document was composed using <cite>Emacs v25.2.1</cite> (Richard
M. Stallman, et al. See <a href="https://www.gnu.org/software/emacs/">https://www.gnu.org/software/emacs/</a>)
and compiled from <samp>.texi</samp> source with <cite><acronym>GNU</acronym> Texinfo v6.4</cite> (Richard
M. Stallman, et al. See <a href="https://www.gnu.org/software/texinfo/">https://www.gnu.org/software/texinfo/</a>)
<cite>Graphviz</cite> is by <acronym>AT&T</acronym> Labs Research. (See <a href="http://graphviz.org">http://graphviz.org</a>)
</p>
<p>This manual is based upon the comments and doc strings in the
<code>graphviz-dot-mode.el</code> source code, which begins with:
</p>
<a name="index-copyright-_0028software_0029"></a>
<div class="lisp">
<pre class="lisp">;;; graphviz-dot-mode.el --- Mode for the dot-language used by graphviz (att).
;; Copyright (C) 2002 - 2015 Pieter Pareit <pieter.pareit@gmail.com>
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2 of
;; the License, or (at your option) any later version.
;; This program is distributed in the hope that it will be
;; useful, but WITHOUT ANY WARRANTY; without even the implied
;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
;; PURPOSE. See the GNU General Public License for more details.
…
;; Authors: Pieter Pareit <pieter.pareit@gmail.com>
;; Rubens Ramos <rubensr AT users.sourceforge.net>
;; Eric Anderson http://www.ece.cmu.edu/~andersoe/
;; Maintainer: Pieter Pareit <pieter.pareit@gmail.com>
;; Homepage: https://ppareit.github.io/graphviz-dot-mode/
;; Created: 28 Oct 2002
;; Last modified: 25 May 2015
;; Version: 0.3.10
;; Keywords: mode dot dot-language dotlanguage graphviz graphs att
</pre></div>
<hr>
<a name="Introduction"></a>
<a name="Introduction-1"></a>
<h2 class="chapter">1 Introduction</h2>
<a name="index-introduction"></a>
<p>This manual describes how to install and use <code>graphviz-dot-mode</code>, an Emacs package for working with <cite>Graphviz</cite> DOT-format files.
The features of this package help you to create <samp>.dot</samp> or
<samp>.gv</samp> files containing syntax compatible with the separate
<cite>Graphviz</cite> package and use <cite>Graphviz</cite> to convert these files
to diagrams.
</p>
<a name="index-Graphviz"></a>
<a name="index-graph"></a>
<a name="index-node"></a>
<a name="index-edge"></a>
<p><cite>Graphviz</cite> is a set of open source graph visualization tools
created by <acronym>AT&T</acronym> Labs Research. A <em>graph</em> is a way of
representing information as a network of connected <em>nodes</em> (shapes) and
<em>edges</em> (lines). <cite>Graphviz</cite> is documented at
<a href="http://graphviz.org">http://graphviz.org</a>.
</p>
<a name="index-Emacs"></a>
<p>The powerful text editor, Emacs, was created in 1976 by Richard
Stallman. It is highly customizable and has 40 years of other
extensions. <cite><acronym>GNU</acronym> Emacs</cite> is documented at
<a href="https://www.gnu.org/software/emacs/">https://www.gnu.org/software/emacs/</a>. <cite>XEmacs</cite> is
documented at <a href="http://www.xemacs.org">http://www.xemacs.org</a>.
</p>
<hr>
<a name="Installing"></a>
<a name="Installing-1"></a>
<h2 class="chapter">2 Installing</h2>
<a name="index-installing"></a>
<p>This chapter describes how to install <code>graphviz-dot-mode</code>.
</p>
<hr>
<a name="Recommended-Installation"></a>
<a name="Recommended-Installation-1"></a>
<h3 class="section">2.1 Recommended Installation</h3>
<a name="index-recommended-installation"></a>
<a name="index-installation_002c-the-easy-way"></a>
<a name="index-package_002eel_002c-installing-with"></a>
<a name="index-MELPA-Stable_002c-installing-from"></a>
<p>The recommended way to install the package <code>graphviz-dot-mode</code> is to
use <code>package.el</code> and <kbd>M-x package-install</kbd>.
</p>
<a name="index-package_002darchives"></a>
<a name="index-package_002dinitialize"></a>
<p>To install <code>graphviz-dot-mode</code>, first add the MELPA Stable archive to the
list of archives used by <code>package.el</code> (if it is not already there)
by adding the following lines to your <samp>.emacs</samp> or other Emacs
startup file. Then restart Emacs.
</p>
<div class="lisp">
<pre class="lisp">(require 'package)
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/"))
(package-initialize)
</pre></div>
<p>(For more detailed and comprehensive instructions about using MELPA,
please see <a href="https://melpa.org/#/getting-started">https://melpa.org/#/getting-started</a>.)
</p>
<a name="index-package_002dinstall"></a>
<p>After restarting Emacs, type the following to install <code>graphviz-dot-mode</code>.
</p>
<p><kbd>M-x package-install <span class="key">RET</span> graphviz-dot-mode <span class="key">RET</span></kbd>.
</p>
<p>When installed this way using the package manager, <code>graphviz-dot-mode</code>
will be activated automatically for file names ending in either <samp>.dot</samp>
or <samp>.gv</samp>.
</p>
<hr>
<a name="Installing-by-Hand"></a>
<a name="Installing-by-Hand-1"></a>
<h3 class="section">2.2 Installing by Hand</h3>
<a name="index-installing-by-hand"></a>
<a name="index-installation_002c-the-hard-way"></a>
<p>You can manually download and install <code>graphviz-dot-mode</code>, but it is best
to use the recommended method above if you don’t already know how to
manually install an Emacs program.
</p>
<p>You may download <samp>graphviz-dot-mode.el</samp> from<br><a href="http://ppareit.github.io/graphviz-dot-mode/">http://ppareit.github.io/graphviz-dot-mode/</a> and
follow the instructions that you find there.
</p>
<hr>
<a name="Installing-this-Info-Manual"></a>
<a name="Installing-this-Info-Manual-1"></a>
<h3 class="section">2.3 Installing this Info Manual</h3>
<a name="index-Installing-this-Info-Manual"></a>
<p>This section describes how to install this manual so that it may be
used from within Emacs using its <code>info</code> reader.
</p><ol>
<li> Obtain the file containing the info-format version of this manual, <samp>graphviz-dot-mode.info.gz</samp> (See <a href="https://github.com/daniel-birket/graphviz-dot-mode">https://github.com/daniel-birket/graphviz-dot-mode</a>.)
</li><li> In Emacs, use <kbd>C-h v Info-directory-list<span class="key">RET</span></kbd> to display the contents of the <code>Info-directory-list</code> variable. (This may be the same as the <code>INFOPATH</code> environment variable.)
</li><li> Copy the <samp>graphviz-dot-mode.info.gz</samp> file to one of the directories in the <code>Info-directory-list</code> variable.
</li><li> Use <code>install-info</code> to add an entry for the new <samp>graphviz-dot-mode.info.gz</samp> file into the <samp>dir</samp> file in the info directory where you copied the file.
</li><li> In Emacs, use <kbd>C-h i d m graphviz-dot-mode <span class="key">RET</span></kbd> to display this help file.
</li></ol>
<p>The <samp>Makefile</samp> in the <samp>texinfo</samp> subdirectory of the GitHub archive at <a href="https://github.com/daniel-birket/graphviz-dot-mode">https://github.com/daniel-birket/graphviz-dot-mode</a> includes an option to install the info file with <code>make install</code>. You must first modify the variables in the top of the Makefile to use the correct directories and files for your system.
</p>
<p>You must install <cite><acronym>GNU</acronym> Texinfo v6.4</cite> to use <code>install-info</code> or the <samp>Makefile</samp>.
</p><hr>
<a name="Using-graphviz_002ddot_002dmode"></a>
<a name="Using-graphviz_002ddot_002dmode-1"></a>
<h2 class="chapter">3 Using <code>graphviz-dot-mode</code></h2>
<a name="index-using"></a>
<p>This chapter describes how to use <code>graphviz-dot-mode</code>.
</p>
<hr>
<a name="Compiling-_0026-Viewing"></a>
<a name="Compiling-_0026-Viewing-1"></a>
<h3 class="section">3.1 Compiling & Viewing</h3>
<a name="index-compiling"></a>
<a name="index-viewing"></a>
<p>This section describes how to use compile and view
functions. See <a href="#Compile-_0026-View-Variables">Compile & View Variables</a>.
</p>
<dl compact="compact">
<dt><kbd>C-c c</kbd> (<code>compile</code>)</dt>
<dd><a name="index-C_002dc-c"></a>
<a name="index-compile"></a>
<p>This command compiles the current dot file visited by the <cite>Emacs</cite>
buffer. The output file is in the same directory and has the extension
determined by the variable <code>graphviz-dot-preview-extension</code>.
</p>
</dd>
<dt><kbd>C-x `</kbd> (<code>next-error</code>)</dt>
<dd><a name="index-C_002dx-_0060"></a>
<a name="index-next_002derror"></a>
<p>This command will jump to the location in the source file of the next
error from the most recent compile. Use <kbd>C-c c</kbd> to compile first.
</p>
</dd>
<dt><kbd>C-c p</kbd> (<code>graphviz-dot-preview</code>)</dt>
<dd><a name="index-C_002dc-p"></a>
<a name="index-graphviz_002ddot_002dpreview"></a>
<a name="index-preview"></a>
<a name="index-image_002dfile_002dname_002dextensions"></a>
<a name="index-image_002dformats_002dalist"></a>
<p>This command compiles and then (if it compiled successfully) shows the
output of the current dot file visited by the <cite>Emacs</cite> buffer,
provided that <cite><acronym>GNU</acronym> Emacs</cite> or <cite>XEmacs</cite> is running
on a graphical display capable of displaying the graphic file output
by <code>dot</code>.
</p>
<p>See <code>image-file-name-extensions</code> in <cite><acronym>GNU</acronym> Emacs</cite> or
<code>image-formats-alist</code> in <cite>XEmacs</cite> to customize the graphic
files that can be displayed.
</p>
</dd>
<dt><kbd>C-c v</kbd> (<code>graphviz-dot-view</code>)</dt>
<dd><a name="index-C_002dc-v"></a>
<a name="index-graphviz_002ddot_002dview"></a>
<a name="index-external-viewer"></a>
<a name="index-graphviz_002ddot_002dview_002dedit_002dcommand"></a>
<a name="index-graphviz_002ddot_002dsave_002dbefore_002dview"></a>
<p>This command invokes an external viewer specified by the variable
<code>graphviz-dot-view-command</code>. If
<code>graphviz-dot-view-edit-command</code> is <code>t</code>, you will be
prompted to enter a new <code>graphviz-dot-view-command</code>. If
<code>graphviz-dot-save-before-view</code> is <code>t</code>, the buffer is saved
before the external viewer command is invoked.
</p>
<p>(See <a href="http://graphviz.org/content/resources">http://graphviz.org/content/resources</a> for a
list of <cite>Graphviz</cite> viewers and editors.)
</p></dd>
</dl>
<hr>
<a name="Editing"></a>
<a name="Editing-1"></a>
<h3 class="section">3.2 Editing</h3>
<a name="index-editing"></a>
<p>This section describes how to edit with <code>graphviz-dot-mode</code>.
See <a href="#Editing-Variables">Editing Variables</a>.
</p>
<hr>
<a name="Indenting"></a>
<a name="Indenting-1"></a>
<h4 class="subsection">3.2.1 Indenting</h4>
<a name="index-indenting"></a>
<dl compact="compact">
<dt><kbd>C-M-q</kbd> (<code>graphviz-dot-indent-graph</code>)</dt>
<dd><a name="index-C_002dM_002dq"></a>
<a name="index-graphviz_002ddot_002dindent_002dgraph"></a>
<p>This command will indent the graph, diagraph, or subgraph at point and
any subgraph within it.
</p>
</dd>
<dt><kbd><span class="key">TAB</span></kbd></dt>
<dd><a name="index-TAB"></a>
<p>This key will automatically indent the line. It does not perform completion.
</p>
</dd>
<dt><kbd>M-j</kbd> (<code>comment-indent-newline</code>)</dt>
<dd><p>See <a href="#Commenting">Commenting</a>
</p>
</dd>
<dt><kbd><span class="key">RET</span></kbd> (<code>electric-graphviz-dot-terminate-line</code>)</dt>
<dd><a name="index-RET"></a>
<a name="index-electric_002dgraphviz_002ddot_002dterminate_002dline"></a>
<p>If the variable <code>graphviz-dot-auto-indent-on-newline</code> is
<code>t</code>, <kbd><span class="key">RET</span></kbd> will insert a newline and indent the next line.
</p>
</dd>
<dt><kbd>{</kbd> (<code>electric-graphviz-dot-open-brace</code>)</dt>
<dd><a name="index-_007b"></a>
<a name="index-electric_002dgraphviz_002ddot_002dopen_002dbrace"></a>
<p>If the variable <code>graphviz-dot-auto-indent-on-braces</code> is
<code>t</code>, <kbd>{</kbd> will insert a <kbd>{</kbd>, newline and indent the next line.
</p>
</dd>
<dt><kbd>}</kbd> (<code>electric-graphviz-dot-close-brace</code>)</dt>
<dd><a name="index-_007d"></a>
<a name="index-electric_002dgraphviz_002ddot_002dclose_002dbrace"></a>
<p>If the variable <code>graphviz-dot-auto-indent-on-braces</code> is
<code>t</code>, <kbd>}</kbd> will insert a <kbd>}</kbd>, newline and indent the next line.
</p>
</dd>
<dt><kbd>;</kbd> (<code>electric-graphviz-dot-semi</code>)</dt>
<dd><a name="index-_003b"></a>
<a name="index-electric_002dgraphviz_002ddot_002dsemi"></a>
<p>If the variable <code>graphviz-dot-auto-indent-on-semi</code> is
<code>t</code>, <kbd>;</kbd> will insert a <kbd>;</kbd>, newline and indent the next line.
</p></dd>
</dl>
<hr>
<a name="Completion"></a>
<a name="Completion-1"></a>
<h4 class="subsection">3.2.2 Completion</h4>
<dl compact="compact">
<dt><kbd>M-t</kbd> (<code>graphviz-dot-complete-word</code>)</dt>
<dd><a name="index-M_002dt"></a>
<a name="index-graphviz_002ddot_002dcomplete_002dword"></a>
<p>This command will complete the attribute or value keyword at point. If
more than one completion is possible, a list is displayed in the
minbuffer.
</p></dd>
</dl>
<p>See <a href="#Completion-Variables">Completion Variables</a>
</p>
<hr>
<a name="Commenting"></a>
<a name="Commenting-1"></a>
<h4 class="subsection">3.2.3 Commenting</h4>
<a name="index-commenting"></a>
<dl compact="compact">
<dt><kbd>M-;</kbd> (<code>comment-dwim</code>)</dt>
<dd><a name="index-M_002d_003b"></a>
<a name="index-comment_002ddwim"></a>
<p>This command will perform the comment command you want (Do What I
Mean). If the region is active and ‘transient-mark-mode’ is on, it
will comment the region, unless it only consists of comments, in which
case it will un-comment the region. Else, if the current line is
empty, it will insert a blank comment line,
otherwise it will append a comment to the line and indent it.
</p>
<a name="index-C_002du-M_002d_003b"></a>
<p>Use <kbd>C-u M-;</kbd> to kill the comment on the current line.
</p>
</dd>
<dt><kbd>C-x C-;</kbd> (<code>comment-line</code>)</dt>
<dd><a name="index-C_002dx-C_002d_003b"></a>
<a name="index-comment_002dline"></a>
<p>This command will comment or un-comment the current line.
</p>
</dd>
<dt><kbd>M-j</kbd> (<code>comment-indent-newline</code>)</dt>
<dd><a name="index-M_002dj"></a>
<a name="index-comment_002dindent_002dnewline"></a>
<p>This command will break line the at point and indent, continuing a
comment if within one. This indents the body of the continued comment
under the previous comment line.
</p>
</dd>
<dt><kbd>C-c C-c</kbd> (<code>comment-region</code>)</dt>
<dd><a name="index-C_002dc-C_002dc"></a>
<a name="index-comment_002dregion"></a>
<p>This command will comment-out the region.
</p>
<p>You may also use <kbd>M-;</kbd> (<code>comment-dwin</code>) to comment the region
if ’transient-mark-mode’ is on.
</p>
</dd>
<dt><kbd>C-c C-u</kbd> (<code>graphviz-dot-uncomment-region</code>)</dt>
<dd><a name="index-C_002dc-C_002du"></a>
<a name="index-graphviz_002ddot_002duncomment_002dregion"></a>
<p>This command will un-comment the region.
</p>
<p>You may also use <kbd>C-u M-;</kbd> (<code>comment-dwin</code>) to un-comment the region
if ’transient-mark-mode’ is on.
</p></dd>
</dl>
<hr>
<a name="Customizing"></a>
<a name="Customizing-1"></a>
<h2 class="chapter">4 Customizing</h2>
<a name="index-customizing"></a>
<p>This section describes the customizable variables of <code>graphviz-dot-mode</code>.
You may customize variables by typing
</p>
<dl compact="compact">
<dt><kbd>M-x graphviz-dot-customize <span class="key">RET</span></kbd></dt>
<dd><a name="index-M_002dx-graphviz_002ddot_002dcustomize-RET"></a>
<a name="index-graphviz_002ddot_002dcustomize"></a>
<p>This function invokes the Emacs customization facility to allow you to
view and change the <code>graphviz-dot-mode</code> variables below.
</p></dd>
</dl>
<hr>
<a name="Compile-_0026-View-Variables"></a>
<a name="Compile-_0026-View-Variables-1"></a>
<h3 class="section">4.1 Compile & View Variables</h3>
<a name="index-variables_002c-compile"></a>
<a name="index-variables_002c-view"></a>
<p>This section describes variables related to compiling and viewing.
See <a href="#Compiling-_0026-Viewing">Compiling & Viewing</a>
</p>
<dl compact="compact">
<dt><code>graphviz-dot-dot-program</code>
<a name="index-graphviz_002ddot_002ddot_002dprogram"></a>
</dt>
<dd><a name="index-C_002dc-c-1"></a>
<a name="index-compile-1"></a>
<p>string, default: “dot”
</p>
<p>This variable determines the command name (and path, if necessary)
used to invoke the <cite>Graphviz</cite> <code>dot</code> program. The <kbd>C-c
c</kbd> (<code>compile</code>) function invokes this command.
</p>
</dd>
<dt><code>graphviz-dot-preview-extension</code>
<a name="index-graphviz_002ddot_002dpreview_002dextension"></a>
</dt>
<dd><a name="index-compile-2"></a>
<a name="index-C_002dc-p-1"></a>
<a name="index-graphviz_002ddot_002dpreview-1"></a>
<p>string, default “png”
</p>
<p>This variable determines the file extension used for the <kbd>C-c c</kbd>
(<code>compile</code>) and <kbd>C-c p</kbd> (<code>graphviz-dot-preview</code>)
functions. The format for the compile command is
</p>
<p><code>dot -T<extension> <filename>.dot > <filename>.<extension></code>
</p>
</dd>
<dt><code>graphviz-dot-save-before-view</code>
<a name="index-graphviz_002ddot_002dsave_002dbefore_002dview-1"></a>
</dt>
<dd><a name="index-C_002dc-v-1"></a>
<a name="index-graphviz_002ddot_002dview-1"></a>
<p>boolean, default <code>t</code>
</p>
<p>This variable controls whether the buffer will be saved to the visited file
before the <kbd>C-c v</kbd> (<code>graphviz-dot-view</code>) function invokes the
external dot-file viewer command. Set this boolean variable to
<code>t</code> (true) or <code>nil</code> (false).
</p>
</dd>
<dt><code>graphviz-dot-view-command</code>
<a name="index-graphviz_002ddot_002dview_002dcommand"></a>
</dt>
<dd><a name="index-C_002dc-v-2"></a>
<a name="index-graphviz_002ddot_002dview-2"></a>
<p>string, default: “doted %s”
</p>
<p>This variable determines the command name (and path, if necessary)
used to invoke an external dot-file viewer program. The <kbd>C-c v</kbd>
(<code>graphviz-dot-view</code>) function invokes this command. The name of
the file visited by the buffer will be substituted for <code>%s</code> in
this string.
</p>
<p>(See <a href="http://graphviz.org/content/resources">http://graphviz.org/content/resources</a> for a
list of <cite>Graphviz</cite> viewers and editors.)
</p>
</dd>
<dt><code>graphviz-dot-view-edit-command</code>
<a name="index-graphviz_002ddot_002dview_002dedit_002dcommand-1"></a>
</dt>
<dd><a name="index-C_002dc-v-3"></a>
<a name="index-graphviz_002ddot_002dview-3"></a>
<a name="index-graphviz_002ddot_002dview_002dcommand-1"></a>
<p>boolean, default: <code>nil</code>
</p>
<p>This variable controls whether you will be prompted for the external dot-file
viewer command name when you use <kbd>C-c v</kbd>
<code>graphviz-dot-view</code>. Set this to <code>t</code> (true) to be prompted
to edit the viewer command variable <code>graphviz-dot-view-command</code>
every time you use <kbd>C-c v</kbd> or <code>nil</code> to avoid the prompt.
</p>
</dd>
</dl>
<hr>
<a name="Editing-Variables"></a>
<a name="Editing-Variables-1"></a>
<h3 class="section">4.2 Editing Variables</h3>
<a name="index-variables_002c-editing"></a>
<p>This section describes variables related to editing.
See <a href="#Editing">Editing</a>
</p>
<hr>
<a name="Indenting-Variables"></a>
<a name="Indenting-Variables-1"></a>
<h4 class="subsection">4.2.1 Indenting Variables</h4>
<a name="index-variables_002c-indenting"></a>
<p>This subsection describes variables related to indenting.
</p>
<dl compact="compact">
<dt><code>graphviz-dot-auto-indent-on-braces</code>
<a name="index-graphviz_002ddot_002dauto_002dindent_002don_002dbraces"></a>
</dt>
<dd><p><kbd>{</kbd>
<a name="index-electric_002dgraphviz_002ddot_002dopen_002dbrace-1"></a>
<kbd>}</kbd>
<a name="index-electric_002dgraphviz_002ddot_002dclose_002dbrace-1"></a>
boolean, default <code>nil</code>
</p>
<p>This variable controls whether the functions
<code>electric-graphviz-dot-open-brace</code> and
<code>electric-graphviz-dot-close-brace</code> are called when <kbd>{</kbd> and
<kbd>}</kbd> are typed. Set this boolean variable to <code>t</code> (true) or
<code>nil</code> (false).
</p>
</dd>
<dt><code>graphviz-dot-auto-indent-on-newline</code>
<a name="index-graphviz_002ddot_002dauto_002dindent_002don_002dnewline"></a>
</dt>
<dd><a name="index-RET-1"></a>
<a name="index-electric_002dgraphviz_002ddot_002dterminate_002dline-1"></a>
<p>boolean, default <code>t</code>
</p>
<p>This variable controls whether the function
<code>electric-graphviz-dot-terminate-line</code> is called when a line is
terminated with a newline. Set this boolean variable to <code>t</code>
(true) or <code>nil</code> (false).
</p>
</dd>
<dt><code>graphviz-dot-auto-indent-on-semi</code>
<a name="index-graphviz_002ddot_002dauto_002dindent_002don_002dsemi"></a>
</dt>
<dd><a name="index-_003b-1"></a>
<a name="index-electric_002dgraphviz_002ddot_002dsemi-1"></a>
<p>boolean, default <code>t</code>
</p>
<p>This variable controls whether the function <code>electric-graphviz-dot-semi</code>
is called when a semicolon <kbd>;</kbd> is typed. Set this boolean variable
to <code>t</code> (true) or <code>nil</code> (false).
</p>
</dd>
<dt><code>graphviz-dot-indent-width</code>
<a name="index-graphviz_002ddot_002dindent_002dwidth"></a>
</dt>
<dd><a name="index-default_002dtab_002dwidth"></a>
<p>integer, default: <code>default-tab-width</code>
</p>
<p>This variable determines the indentation used in <code>graphviz-dot-mode</code> buffers.
</p>
</dd>
</dl>
<hr>
<a name="Completion-Variables"></a>
<a name="Completion-Variables-1"></a>
<h4 class="subsection">4.2.2 Completion Variables</h4>
<a name="index-variables_002c-completion"></a>
<p>This subsection describes variables related to completion.
</p>
<dl compact="compact">
<dt><code>graphviz-dot-delete-completions</code>
<a name="index-graphviz_002ddot_002ddelete_002dcompletions"></a>
</dt>
<dd><p>boolean, default: <code>nil</code>
</p>
<p>This variable controls whether the completion buffer is automatically
deleted when a key is pressed. Set this boolean variable to <code>t</code>
(true) or <code>nil</code> (false).
</p>
</dd>
<dt><code>graphviz-dot-toggle-completions</code>
<a name="index-graphviz_002ddot_002dtoggle_002dcompletions"></a>
</dt>
<dd><a name="index-M_002dt-1"></a>
<a name="index-graphviz_002ddot_002dcomplete_002dword-1"></a>
<p>boolean, default: <code>nil</code>
</p>
<p>This variable controls whether repeated use of <kbd>M-t</kbd>
<code>graphviz-dot-complete-word</code> will toggle the display of possible
completions in the minibuffer. If this variable is set to <code>nil</code>,
when there are more than one possible completions, a buffer will display
all completions. Set this boolean variable to <code>t</code> (true) or
<code>nil</code> (false).
</p>
</dd>
</dl>
<hr>
<a name="Keyword-Variables"></a>
<a name="Keyword-Variables-1"></a>
<h3 class="section">4.3 Keyword Variables</h3>
<a name="index-variables_002c-keyword"></a>
<p>This section describes the variables containing DOT-language keywords,
which may change if <cite>Graphviz</cite> is updated. You may update these
variables after new releases of <cite>Graphviz</cite>from
<a href="http://www.graphviz.org/doc/schema/attributes.xml">http://www.graphviz.org/doc/schema/attributes.xml</a> .
</p>
<dl compact="compact">
<dt><code>graphviz-dot-attr-keywords</code>
<a name="index-graphviz_002ddot_002dattr_002dkeywords"></a>
</dt>
<dd><p>list of strings, default: (“graph” “digraph” … )
</p>
<p>This variable holds a list of keywords for attribute names in a
graph. This is used by the <kbd>M-t</kbd> auto completion function. The
actual completion tables are built when the mode is loaded, so changes
to this variable are not immediately visible.
</p>
</dd>
<dt><code>graphviz-dot-value-keywords</code>
<a name="index-graphviz_002ddot_002dvalue_002dkeywords"></a>
</dt>
<dd><p>list of strings, default: (“true” “false” … )
</p>
<p>This variable holds a list of keywords for attribute values in a
graph. This is used by the <kbd>M-t</kbd> auto completion function. The
actual completion tables are built when the mode is loaded, so changes
to this variable are not immediately visible.
</p>
</dd>
</dl>
<hr>
<a name="Mode-Hook"></a>
<a name="Mode-Hook-1"></a>
<h3 class="section">4.4 Mode Hook</h3>
<a name="index-variables_002c-mode-hook"></a>
<dl compact="compact">
<dt><code>graphviz-dot-mode-hook</code>
<a name="index-graphviz_002ddot_002dmode_002dhook"></a>
</dt>
<dd><p>list of functions, default: <code>nil</code>
</p>
<p>This variable determines which functions are called when
<code>graphviz-dot-mode</code> starts. To use it, add a line like below to your
<samp>.emacs</samp> or other startup file.
</p><div class="lisp">
<pre class="lisp">(add-hook 'graphviz-dot-mode-hook 'my-hook)
</pre></div>
</dd>
</dl>
<hr>
<a name="Credits"></a>
<a name="Credits-1"></a>
<h2 class="chapter">5 Credits</h2>
<a name="index-credits"></a>
<p><code>graphviz-dot-mode</code> was written by:
</p><ul>
<li> Pieter Pareit <a href="mailto:pieter.pareit@gmail.com">pieter.pareit@gmail.com</a>
</li><li> Rubens Ramos <a href="mailto:rubensr@users.sourceforge.net">rubensr@users.sourceforge.net</a>
</li><li> Eric Anderson <a href="http://www.ece.cmu.edu/~andersoe/">http://www.ece.cmu.edu/~andersoe/</a>
</li></ul>
<p>Other contributors are noted in the version history in the
<code>graphviz-dot-mode.el</code> file and the commit history on GitHub.
</p>
<p>The source code is maintained on GitHub at <a href="https://github.com/ppareit/graphviz-dot-mode">https://github.com/ppareit/graphviz-dot-mode</a> by Pieter
Pareit (<a href="mailto:pieter.pareit@gmail.com">pieter.pareit@gmail.com</a>). Please email software
comments, suggestions and corrections there.
</p>
<p>This manual is maintained on GitHub at <a href="https://github.com/daniel-birket/graphviz-dot-mode">https://github.com/daniel-birket/graphviz-dot-mode</a> by Daniel Birket
(<a href="mailto:danielb@birket.com">danielb@birket.com</a>). Please submit document errata to the
issue tracker there.
</p>
<hr>
<a name="GNU-General-Public-License-2_002e0"></a>
<a name="GNU-General-Public-License-2_002e0-1"></a>
<h2 class="unnumbered"><acronym>GNU</acronym> General Public License 2.0</h2>
<a name="index-license-_0028software_0029"></a>
<a name="index-GNU-General-Public-License-2_002e0"></a>
<div align="center">Version 2, June 1991
</div>
<div class="display">
<pre class="display">Copyright © 1989, 1991 Free Software Foundation, Inc.
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
</pre></div>
<a name="Preamble"></a>
<h3 class="heading">Preamble</h3>
<p>The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software—to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation’s software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.) You can apply it to
your programs, too.
</p>
<p>When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
</p>
<p>To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
</p>
<p>For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
</p>
<p>We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
</p>
<p>Also, for each author’s protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors’ reputations.
</p>
<p>Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone’s free use or not licensed at all.
</p>
<p>The precise terms and conditions for copying, distribution and
modification follow.
</p>
<a name="TERMS-AND-CONDITIONS-FOR-COPYING_002c-DISTRIBUTION-AND-MODIFICATION"></a>
<h3 class="heading">TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</h3>
<ol start="0">
<li> This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The “Program”, below,
refers to any such program or work, and a “work based on the Program”
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term “modification”.) Each licensee is addressed as “you”.
<p>Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
</p>
</li><li> You may copy and distribute verbatim copies of the Program’s
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
<p>You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
</p>
</li><li> You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
<ol type="a" start="1">
<li> You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
</li><li> You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
</li><li> If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
</li></ol>
<p>These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
</p>
<p>Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
</p>
<p>In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
</p>
</li><li> You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
<ol type="a" start="1">
<li> Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
</li><li> Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
</li><li> Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
</li></ol>
<p>The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
</p>
<p>If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
</p>
</li><li> You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
</li><li> You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
</li><li> Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients’ exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
</li><li> If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
<p>If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
</p>
<p>It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
</p>
<p>This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
</p>
</li><li> If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
</li><li> The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
<p>Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and “any
later version”, you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
</p>
</li><li> If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
</li><li> BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
</li><li> IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
</li></ol>
<a name="Appendix_003a-How-to-Apply-These-Terms-to-Your-New-Programs"></a>
<h3 class="heading">Appendix: How to Apply These Terms to Your New Programs</h3>
<p>If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
</p>
<p>To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the “copyright” line and a pointer to where the full notice is found.
</p>
<div class="smallexample">
<pre class="smallexample"><var>one line to give the program's name and a brief idea of what it does.</var>
Copyright (C) <var>yyyy</var> <var>name of author</var>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
</pre></div>
<p>Also add information on how to contact you by electronic and paper mail.
</p>
<p>If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
</p>
<div class="smallexample">
<pre class="smallexample">Gnomovision version 69, Copyright (C) <var>year</var> <var>name of author</var>
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
</pre></div>
<p>The hypothetical commands ‘<samp>show w</samp>’ and ‘<samp>show c</samp>’ should show
the appropriate parts of the General Public License. Of course, the
commands you use may be called something other than ‘<samp>show w</samp>’ and
‘<samp>show c</samp>’; they could even be mouse-clicks or menu items—whatever
suits your program.
</p>
<p>You should also get your employer (if you work as a programmer) or your
school, if any, to sign a “copyright disclaimer” for the program, if
necessary. Here is a sample; alter the names:
</p>
<div class="example">
<pre class="example">Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
<var>signature of Ty Coon</var>, 1 April 1989
Ty Coon, President of Vice
</pre></div>
<p>This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
</p>
<hr>
<a name="GNU-Free-Documentation-License"></a>
<a name="GNU-Free-Documentation-License-1"></a>
<h2 class="unnumbered"><acronym>GNU</acronym> Free Documentation License</h2>
<a name="index-license-_0028manual_0029"></a>
<a name="index-GNU-Free-Documentation-License"></a>
<div align="center">Version 1.3, 3 November 2008
</div>
<div class="display">
<pre class="display">Copyright © 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
<a href="http://fsf.org/">http://fsf.org/</a>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
</pre></div>
<ol start="0">
<li> PREAMBLE
<p>The purpose of this License is to make a manual, textbook, or other
functional and useful document <em>free</em> in the sense of freedom: to
assure everyone the effective freedom to copy and redistribute it,
with or without modifying it, either commercially or noncommercially.
Secondarily, this License preserves for the author and publisher a way
to get credit for their work, while not being considered responsible
for modifications made by others.
</p>
<p>This License is a kind of “copyleft”, which means that derivative
works of the document must themselves be free in the same sense. It
complements the GNU General Public License, which is a copyleft
license designed for free software.
</p>
<p>We have designed this License in order to use it for manuals for free
software, because free software needs free documentation: a free
program should come with manuals providing the same freedoms that the
software does. But this License is not limited to software manuals;
it can be used for any textual work, regardless of subject matter or
whether it is published as a printed book. We recommend this License
principally for works whose purpose is instruction or reference.
</p>
</li><li> APPLICABILITY AND DEFINITIONS
<p>This License applies to any manual or other work, in any medium, that
contains a notice placed by the copyright holder saying it can be
distributed under the terms of this License. Such a notice grants a
world-wide, royalty-free license, unlimited in duration, to use that
work under the conditions stated herein. The “Document”, below,
refers to any such manual or work. Any member of the public is a
licensee, and is addressed as “you”. You accept the license if you
copy, modify or distribute the work in a way requiring permission
under copyright law.
</p>
<p>A “Modified Version” of the Document means any work containing the
Document or a portion of it, either copied verbatim, or with
modifications and/or translated into another language.
</p>
<p>A “Secondary Section” is a named appendix or a front-matter section
of the Document that deals exclusively with the relationship of the
publishers or authors of the Document to the Document’s overall
subject (or to related matters) and contains nothing that could fall
directly within that overall subject. (Thus, if the Document is in
part a textbook of mathematics, a Secondary Section may not explain
any mathematics.) The relationship could be a matter of historical
connection with the subject or with related matters, or of legal,
commercial, philosophical, ethical or political position regarding
them.
</p>
<p>The “Invariant Sections” are certain Secondary Sections whose titles
are designated, as being those of Invariant Sections, in the notice
that says that the Document is released under this License. If a
section does not fit the above definition of Secondary then it is not
allowed to be designated as Invariant. The Document may contain zero
Invariant Sections. If the Document does not identify any Invariant
Sections then there are none.
</p>
<p>The “Cover Texts” are certain short passages of text that are listed,
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
the Document is released under this License. A Front-Cover Text may
be at most 5 words, and a Back-Cover Text may be at most 25 words.
</p>
<p>A “Transparent” copy of the Document means a machine-readable copy,
represented in a format whose specification is available to the
general public, that is suitable for revising the document
straightforwardly with generic text editors or (for images composed of
pixels) generic paint programs or (for drawings) some widely available
drawing editor, and that is suitable for input to text formatters or
for automatic translation to a variety of formats suitable for input
to text formatters. A copy made in an otherwise Transparent file
format whose markup, or absence of markup, has been arranged to thwart
or discourage subsequent modification by readers is not Transparent.
An image format is not Transparent if used for any substantial amount
of text. A copy that is not “Transparent” is called “Opaque”.
</p>
<p>Examples of suitable formats for Transparent copies include plain
ASCII without markup, Texinfo input format, LaTeX input
format, SGML or XML using a publicly available
DTD, and standard-conforming simple HTML,
PostScript or PDF designed for human modification. Examples
of transparent image formats include PNG, XCF and
JPG. Opaque formats include proprietary formats that can be
read and edited only by proprietary word processors, SGML or
XML for which the DTD and/or processing tools are
not generally available, and the machine-generated HTML,
PostScript or PDF produced by some word processors for
output purposes only.
</p>
<p>The “Title Page” means, for a printed book, the title page itself,
plus such following pages as are needed to hold, legibly, the material
this License requires to appear in the title page. For works in
formats which do not have any title page as such, “Title Page” means
the text near the most prominent appearance of the work’s title,
preceding the beginning of the body of the text.
</p>
<p>The “publisher” means any person or entity that distributes copies
of the Document to the public.
</p>
<p>A section “Entitled XYZ” means a named subunit of the Document whose
title either is precisely XYZ or contains XYZ in parentheses following
text that translates XYZ in another language. (Here XYZ stands for a
specific section name mentioned below, such as “Acknowledgements”,
“Dedications”, “Endorsements”, or “History”.) To “Preserve the Title”
of such a section when you modify the Document means that it remains a
section “Entitled XYZ” according to this definition.
</p>
<p>The Document may include Warranty Disclaimers next to the notice which
states that this License applies to the Document. These Warranty
Disclaimers are considered to be included by reference in this
License, but only as regards disclaiming warranties: any other
implication that these Warranty Disclaimers may have is void and has
no effect on the meaning of this License.
</p>
</li><li> VERBATIM COPYING
<p>You may copy and distribute the Document in any medium, either
commercially or noncommercially, provided that this License, the
copyright notices, and the license notice saying this License applies
to the Document are reproduced in all copies, and that you add no other
conditions whatsoever to those of this License. You may not use
technical measures to obstruct or control the reading or further
copying of the copies you make or distribute. However, you may accept
compensation in exchange for copies. If you distribute a large enough
number of copies you must also follow the conditions in section 3.
</p>
<p>You may also lend copies, under the same conditions stated above, and
you may publicly display copies.
</p>
</li><li> COPYING IN QUANTITY
<p>If you publish printed copies (or copies in media that commonly have
printed covers) of the Document, numbering more than 100, and the
Document’s license notice requires Cover Texts, you must enclose the
copies in covers that carry, clearly and legibly, all these Cover
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
the back cover. Both covers must also clearly and legibly identify
you as the publisher of these copies. The front cover must present
the full title with all words of the title equally prominent and
visible. You may add other material on the covers in addition.
Copying with changes limited to the covers, as long as they preserve
the title of the Document and satisfy these conditions, can be treated
as verbatim copying in other respects.
</p>
<p>If the required texts for either cover are too voluminous to fit
legibly, you should put the first ones listed (as many as fit
reasonably) on the actual cover, and continue the rest onto adjacent
pages.
</p>
<p>If you publish or distribute Opaque copies of the Document numbering
more than 100, you must either include a machine-readable Transparent
copy along with each Opaque copy, or state in or with each Opaque copy
a computer-network location from which the general network-using
public has access to download using public-standard network protocols
a complete Transparent copy of the Document, free of added material.
If you use the latter option, you must take reasonably prudent steps,
when you begin distribution of Opaque copies in quantity, to ensure
that this Transparent copy will remain thus accessible at the stated
location until at least one year after the last time you distribute an
Opaque copy (directly or through your agents or retailers) of that
edition to the public.
</p>
<p>It is requested, but not required, that you contact the authors of the
Document well before redistributing any large number of copies, to give
them a chance to provide you with an updated version of the Document.
</p>
</li><li> MODIFICATIONS
<p>You may copy and distribute a Modified Version of the Document under
the conditions of sections 2 and 3 above, provided that you release
the Modified Version under precisely this License, with the Modified
Version filling the role of the Document, thus licensing distribution
and modification of the Modified Version to whoever possesses a copy
of it. In addition, you must do these things in the Modified Version:
</p>
<ol type="A" start="1">
<li> Use in the Title Page (and on the covers, if any) a title distinct
from that of the Document, and from those of previous versions
(which should, if there were any, be listed in the History section
of the Document). You may use the same title as a previous version
if the original publisher of that version gives permission.
</li><li> List on the Title Page, as authors, one or more persons or entities
responsible for authorship of the modifications in the Modified
Version, together with at least five of the principal authors of the
Document (all of its principal authors, if it has fewer than five),
unless they release you from this requirement.
</li><li> State on the Title page the name of the publisher of the
Modified Version, as the publisher.
</li><li> Preserve all the copyright notices of the Document.
</li><li> Add an appropriate copyright notice for your modifications
adjacent to the other copyright notices.
</li><li> Include, immediately after the copyright notices, a license notice
giving the public permission to use the Modified Version under the
terms of this License, in the form shown in the Addendum below.
</li><li> Preserve in that license notice the full lists of Invariant Sections
and required Cover Texts given in the Document’s license notice.
</li><li> Include an unaltered copy of this License.
</li><li> Preserve the section Entitled “History”, Preserve its Title, and add
to it an item stating at least the title, year, new authors, and
publisher of the Modified Version as given on the Title Page. If
there is no section Entitled “History” in the Document, create one
stating the title, year, authors, and publisher of the Document as
given on its Title Page, then add an item describing the Modified
Version as stated in the previous sentence.
</li><li> Preserve the network location, if any, given in the Document for
public access to a Transparent copy of the Document, and likewise
the network locations given in the Document for previous versions
it was based on. These may be placed in the “History” section.
You may omit a network location for a work that was published at
least four years before the Document itself, or if the original
publisher of the version it refers to gives permission.
</li><li> For any section Entitled “Acknowledgements” or “Dedications”, Preserve
the Title of the section, and preserve in the section all the
substance and tone of each of the contributor acknowledgements and/or
dedications given therein.
</li><li> Preserve all the Invariant Sections of the Document,
unaltered in their text and in their titles. Section numbers
or the equivalent are not considered part of the section titles.
</li><li> Delete any section Entitled “Endorsements”. Such a section
may not be included in the Modified Version.
</li><li> Do not retitle any existing section to be Entitled “Endorsements” or
to conflict in title with any Invariant Section.
</li><li> Preserve any Warranty Disclaimers.
</li></ol>
<p>If the Modified Version includes new front-matter sections or
appendices that qualify as Secondary Sections and contain no material
copied from the Document, you may at your option designate some or all
of these sections as invariant. To do this, add their titles to the
list of Invariant Sections in the Modified Version’s license notice.
These titles must be distinct from any other section titles.
</p>
<p>You may add a section Entitled “Endorsements”, provided it contains
nothing but endorsements of your Modified Version by various
parties—for example, statements of peer review or that the text has
been approved by an organization as the authoritative definition of a
standard.
</p>
<p>You may add a passage of up to five words as a Front-Cover Text, and a
passage of up to 25 words as a Back-Cover Text, to the end of the list
of Cover Texts in the Modified Version. Only one passage of
Front-Cover Text and one of Back-Cover Text may be added by (or
through arrangements made by) any one entity. If the Document already
includes a cover text for the same cover, previously added by you or
by arrangement made by the same entity you are acting on behalf of,
you may not add another; but you may replace the old one, on explicit
permission from the previous publisher that added the old one.
</p>
<p>The author(s) and publisher(s) of the Document do not by this License
give permission to use their names for publicity for or to assert or
imply endorsement of any Modified Version.
</p>
</li><li> COMBINING DOCUMENTS
<p>You may combine the Document with other documents released under this
License, under the terms defined in section 4 above for modified
versions, provided that you include in the combination all of the
Invariant Sections of all of the original documents, unmodified, and
list them all as Invariant Sections of your combined work in its
license notice, and that you preserve all their Warranty Disclaimers.
</p>
<p>The combined work need only contain one copy of this License, and
multiple identical Invariant Sections may be replaced with a single
copy. If there are multiple Invariant Sections with the same name but
different contents, make the title of each such section unique by
adding at the end of it, in parentheses, the name of the original
author or publisher of that section if known, or else a unique number.
Make the same adjustment to the section titles in the list of
Invariant Sections in the license notice of the combined work.
</p>
<p>In the combination, you must combine any sections Entitled “History”
in the various original documents, forming one section Entitled
“History”; likewise combine any sections Entitled “Acknowledgements”,
and any sections Entitled “Dedications”. You must delete all
sections Entitled “Endorsements.”
</p>
</li><li> COLLECTIONS OF DOCUMENTS
<p>You may make a collection consisting of the Document and other documents
released under this License, and replace the individual copies of this
License in the various documents with a single copy that is included in
the collection, provided that you follow the rules of this License for
verbatim copying of each of the documents in all other respects.
</p>
<p>You may extract a single document from such a collection, and distribute
it individually under this License, provided you insert a copy of this
License into the extracted document, and follow this License in all
other respects regarding verbatim copying of that document.
</p>
</li><li> AGGREGATION WITH INDEPENDENT WORKS
<p>A compilation of the Document or its derivatives with other separate
and independent documents or works, in or on a volume of a storage or
distribution medium, is called an “aggregate” if the copyright
resulting from the compilation is not used to limit the legal rights
of the compilation’s users beyond what the individual works permit.
When the Document is included in an aggregate, this License does not
apply to the other works in the aggregate which are not themselves
derivative works of the Document.
</p>
<p>If the Cover Text requirement of section 3 is applicable to these
copies of the Document, then if the Document is less than one half of
the entire aggregate, the Document’s Cover Texts may be placed on
covers that bracket the Document within the aggregate, or the
electronic equivalent of covers if the Document is in electronic form.
Otherwise they must appear on printed covers that bracket the whole
aggregate.
</p>
</li><li> TRANSLATION
<p>Translation is considered a kind of modification, so you may
distribute translations of the Document under the terms of section 4.
Replacing Invariant Sections with translations requires special
permission from their copyright holders, but you may include
translations of some or all Invariant Sections in addition to the
original versions of these Invariant Sections. You may include a
translation of this License, and all the license notices in the
Document, and any Warranty Disclaimers, provided that you also include
the original English version of this License and the original versions
of those notices and disclaimers. In case of a disagreement between
the translation and the original version of this License or a notice
or disclaimer, the original version will prevail.
</p>
<p>If a section in the Document is Entitled “Acknowledgements”,
“Dedications”, or “History”, the requirement (section 4) to Preserve
its Title (section 1) will typically require changing the actual
title.
</p>
</li><li> TERMINATION
<p>You may not copy, modify, sublicense, or distribute the Document
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense, or distribute it is void, and
will automatically terminate your rights under this License.
</p>
<p>However, if you cease all violation of this License, then your license
from a particular copyright holder is reinstated (a) provisionally,
unless and until the copyright holder explicitly and finally
terminates your license, and (b) permanently, if the copyright holder
fails to notify you of the violation by some reasonable means prior to
60 days after the cessation.
</p>
<p>Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
</p>
<p>Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, receipt of a copy of some or all of the same material does
not give you any rights to use it.
</p>
</li><li> FUTURE REVISIONS OF THIS LICENSE
<p>The Free Software Foundation may publish new, revised versions
of the GNU Free Documentation License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns. See
<a href="http://www.gnu.org/copyleft/">http://www.gnu.org/copyleft/</a>.
</p>
<p>Each version of the License is given a distinguishing version number.
If the Document specifies that a particular numbered version of this
License “or any later version” applies to it, you have the option of
following the terms and conditions either of that specified version or
of any later version that has been published (not as a draft) by the
Free Software Foundation. If the Document does not specify a version
number of this License, you may choose any version ever published (not
as a draft) by the Free Software Foundation. If the Document
specifies that a proxy can decide which future versions of this
License can be used, that proxy’s public statement of acceptance of a
version permanently authorizes you to choose that version for the
Document.
</p>
</li><li> RELICENSING
<p>“Massive Multiauthor Collaboration Site” (or “MMC Site”) means any
World Wide Web server that publishes copyrightable works and also
provides prominent facilities for anybody to edit those works. A
public wiki that anybody can edit is an example of such a server. A
“Massive Multiauthor Collaboration” (or “MMC”) contained in the
site means any set of copyrightable works thus published on the MMC
site.
</p>
<p>“CC-BY-SA” means the Creative Commons Attribution-Share Alike 3.0
license published by Creative Commons Corporation, a not-for-profit
corporation with a principal place of business in San Francisco,
California, as well as future copyleft versions of that license
published by that same organization.
</p>
<p>“Incorporate” means to publish or republish a Document, in whole or
in part, as part of another Document.
</p>
<p>An MMC is “eligible for relicensing” if it is licensed under this
License, and if all works that were first published under this License
somewhere other than this MMC, and subsequently incorporated in whole
or in part into the MMC, (1) had no cover texts or invariant sections,
and (2) were thus incorporated prior to November 1, 2008.
</p>
<p>The operator of an MMC Site may republish an MMC contained in the site
under CC-BY-SA on the same site at any time before August 1, 2009,
provided the MMC is eligible for relicensing.
</p>
</li></ol>
<a name="ADDENDUM_003a-How-to-use-this-License-for-your-documents"></a>
<h3 class="heading">ADDENDUM: How to use this License for your documents</h3>
<p>To use this License in a document you have written, include a copy of
the License in the document and put the following copyright and
license notices just after the title page:
</p>
<div class="smallexample">
<pre class="smallexample"> Copyright (C) <var>year</var> <var>your name</var>.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
Texts. A copy of the license is included in the section entitled ``GNU
Free Documentation License''.
</pre></div>
<p>If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
replace the “with…Texts.” line with this:
</p>
<div class="smallexample">
<pre class="smallexample"> with the Invariant Sections being <var>list their titles</var>, with
the Front-Cover Texts being <var>list</var>, and with the Back-Cover Texts
being <var>list</var>.
</pre></div>
<p>If you have Invariant Sections without Cover Texts, or some other
combination of the three, merge those two alternatives to suit the
situation.
</p>
<p>If your document contains nontrivial examples of program code, we
recommend releasing these examples in parallel under your choice of
free software license, such as the GNU General Public License,
to permit their use in free software.
</p>
<hr>
<a name="Functions-_0026-Variables"></a>
<a name="Functions-_0026-Variables-1"></a>
<h2 class="unnumbered">Functions & Variables</h2>
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-C"><b>C</b></a>
<a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-D"><b>D</b></a>
<a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-E"><b>E</b></a>
<a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-G"><b>G</b></a>
<a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-I"><b>I</b></a>
<a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-N"><b>N</b></a>
<a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-P"><b>P</b></a>
</td></tr></table>
<table class="index-fn" border="0">
<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left"> Section</th></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Functions-_0026-Variables_fn_letter-C">C</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002ddwim"><code>comment-dwim</code></a>:</td><td> </td><td valign="top"><a href="#Commenting">Commenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002dindent_002dnewline"><code>comment-indent-newline</code></a>:</td><td> </td><td valign="top"><a href="#Commenting">Commenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002dline"><code>comment-line</code></a>:</td><td> </td><td valign="top"><a href="#Commenting">Commenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002dregion"><code>comment-region</code></a>:</td><td> </td><td valign="top"><a href="#Commenting">Commenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-compile"><code>compile</code></a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-compile-1"><code>compile</code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-compile-2"><code>compile</code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Functions-_0026-Variables_fn_letter-D">D</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-default_002dtab_002dwidth"><code>default-tab-width</code></a>:</td><td> </td><td valign="top"><a href="#Indenting-Variables">Indenting Variables</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Functions-_0026-Variables_fn_letter-E">E</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-electric_002dgraphviz_002ddot_002dclose_002dbrace"><code>electric-graphviz-dot-close-brace</code></a>:</td><td> </td><td valign="top"><a href="#Indenting">Indenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-electric_002dgraphviz_002ddot_002dclose_002dbrace-1"><code>electric-graphviz-dot-close-brace</code></a>:</td><td> </td><td valign="top"><a href="#Indenting-Variables">Indenting Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-electric_002dgraphviz_002ddot_002dopen_002dbrace"><code>electric-graphviz-dot-open-brace</code></a>:</td><td> </td><td valign="top"><a href="#Indenting">Indenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-electric_002dgraphviz_002ddot_002dopen_002dbrace-1"><code>electric-graphviz-dot-open-brace</code></a>:</td><td> </td><td valign="top"><a href="#Indenting-Variables">Indenting Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-electric_002dgraphviz_002ddot_002dsemi"><code>electric-graphviz-dot-semi</code></a>:</td><td> </td><td valign="top"><a href="#Indenting">Indenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-electric_002dgraphviz_002ddot_002dsemi-1"><code>electric-graphviz-dot-semi</code></a>:</td><td> </td><td valign="top"><a href="#Indenting-Variables">Indenting Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-electric_002dgraphviz_002ddot_002dterminate_002dline"><code>electric-graphviz-dot-terminate-line</code></a>:</td><td> </td><td valign="top"><a href="#Indenting">Indenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-electric_002dgraphviz_002ddot_002dterminate_002dline-1"><code>electric-graphviz-dot-terminate-line</code></a>:</td><td> </td><td valign="top"><a href="#Indenting-Variables">Indenting Variables</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Functions-_0026-Variables_fn_letter-G">G</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dattr_002dkeywords"><code>graphviz-dot-attr-keywords</code></a>:</td><td> </td><td valign="top"><a href="#Keyword-Variables">Keyword Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dauto_002dindent_002don_002dbraces"><code>graphviz-dot-auto-indent-on-braces</code></a>:</td><td> </td><td valign="top"><a href="#Indenting-Variables">Indenting Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dauto_002dindent_002don_002dnewline"><code>graphviz-dot-auto-indent-on-newline</code></a>:</td><td> </td><td valign="top"><a href="#Indenting-Variables">Indenting Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dauto_002dindent_002don_002dsemi"><code>graphviz-dot-auto-indent-on-semi</code></a>:</td><td> </td><td valign="top"><a href="#Indenting-Variables">Indenting Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dcomplete_002dword"><code>graphviz-dot-complete-word</code></a>:</td><td> </td><td valign="top"><a href="#Completion">Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dcomplete_002dword-1"><code>graphviz-dot-complete-word</code></a>:</td><td> </td><td valign="top"><a href="#Completion-Variables">Completion Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dcustomize"><code>graphviz-dot-customize</code></a>:</td><td> </td><td valign="top"><a href="#Customizing">Customizing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002ddelete_002dcompletions"><code>graphviz-dot-delete-completions</code></a>:</td><td> </td><td valign="top"><a href="#Completion-Variables">Completion Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002ddot_002dprogram"><code>graphviz-dot-dot-program</code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dindent_002dgraph"><code>graphviz-dot-indent-graph</code></a>:</td><td> </td><td valign="top"><a href="#Indenting">Indenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dindent_002dwidth"><code>graphviz-dot-indent-width</code></a>:</td><td> </td><td valign="top"><a href="#Indenting-Variables">Indenting Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dmode_002dhook"><code>graphviz-dot-mode-hook</code></a>:</td><td> </td><td valign="top"><a href="#Mode-Hook">Mode Hook</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dpreview"><code>graphviz-dot-preview</code></a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dpreview-1"><code>graphviz-dot-preview</code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dpreview_002dextension"><code>graphviz-dot-preview-extension</code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dsave_002dbefore_002dview"><code>graphviz-dot-save-before-view</code></a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dsave_002dbefore_002dview-1"><code>graphviz-dot-save-before-view</code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dtoggle_002dcompletions"><code>graphviz-dot-toggle-completions</code></a>:</td><td> </td><td valign="top"><a href="#Completion-Variables">Completion Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002duncomment_002dregion"><code>graphviz-dot-uncomment-region</code></a>:</td><td> </td><td valign="top"><a href="#Commenting">Commenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dvalue_002dkeywords"><code>graphviz-dot-value-keywords</code></a>:</td><td> </td><td valign="top"><a href="#Keyword-Variables">Keyword Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dview"><code>graphviz-dot-view</code></a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dview-1"><code>graphviz-dot-view</code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dview-2"><code>graphviz-dot-view</code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dview-3"><code>graphviz-dot-view</code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dview_002dcommand"><code>graphviz-dot-view-command</code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dview_002dcommand-1"><code>graphviz-dot-view-command</code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dview_002dedit_002dcommand"><code>graphviz-dot-view-edit-command</code></a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graphviz_002ddot_002dview_002dedit_002dcommand-1"><code>graphviz-dot-view-edit-command</code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Functions-_0026-Variables_fn_letter-I">I</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-image_002dfile_002dname_002dextensions"><code>image-file-name-extensions</code></a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-image_002dformats_002dalist"><code>image-formats-alist</code></a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Functions-_0026-Variables_fn_letter-N">N</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-next_002derror"><code>next-error</code></a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Functions-_0026-Variables_fn_letter-P">P</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-package_002darchives"><code>package-archives</code></a>:</td><td> </td><td valign="top"><a href="#Recommended-Installation">Recommended Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-package_002dinitialize"><code>package-initialize</code></a>:</td><td> </td><td valign="top"><a href="#Recommended-Installation">Recommended Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-package_002dinstall"><code>package-install</code></a>:</td><td> </td><td valign="top"><a href="#Recommended-Installation">Recommended Installation</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-C"><b>C</b></a>
<a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-D"><b>D</b></a>
<a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-E"><b>E</b></a>
<a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-G"><b>G</b></a>
<a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-I"><b>I</b></a>
<a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-N"><b>N</b></a>
<a class="summary-letter" href="#Functions-_0026-Variables_fn_letter-P"><b>P</b></a>
</td></tr></table>
<hr>
<a name="Keys-and-Concepts"></a>
<a name="Keys-and-Concepts-1"></a>
<h2 class="unnumbered">Keys and Concepts</h2>
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Keys-and-Concepts_cp_symbol-1"><b>;</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_symbol-2"><b>{</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_symbol-3"><b>}</b></a>
<br>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-C"><b>C</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-E"><b>E</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-G"><b>G</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-I"><b>I</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-L"><b>L</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-M"><b>M</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-N"><b>N</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-P"><b>P</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-R"><b>R</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-T"><b>T</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-U"><b>U</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-V"><b>V</b></a>
</td></tr></table>
<table class="index-cp" border="0">
<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left"> Section</th></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_symbol-1">;</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-_003b"><code><kbd>;</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Indenting">Indenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-_003b-1"><code><kbd>;</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Indenting-Variables">Indenting Variables</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_symbol-2">{</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-_007b"><code><kbd>{</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Indenting">Indenting</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_symbol-3">}</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-_007d"><code><kbd>}</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Indenting">Indenting</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_letter-C">C</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-c"><code><kbd>C-c c</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-c-1"><code><kbd>C-c c</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002dc"><code><kbd>C-c C-c</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Commenting">Commenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002du"><code><kbd>C-c C-u</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Commenting">Commenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-p"><code><kbd>C-c p</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-p-1"><code><kbd>C-c p</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-v"><code><kbd>C-c v</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-v-1"><code><kbd>C-c v</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-v-2"><code><kbd>C-c v</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-v-3"><code><kbd>C-c v</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dM_002dq"><code><kbd>C-M-q</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Indenting">Indenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002du-M_002d_003b"><code>C-u M-;</code></a>:</td><td> </td><td valign="top"><a href="#Commenting">Commenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dx-C_002d_003b"><code>C-x C-;</code></a>:</td><td> </td><td valign="top"><a href="#Commenting">Commenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dx-_0060"><code><kbd>C-x `</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-commenting">commenting</a>:</td><td> </td><td valign="top"><a href="#Commenting">Commenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-compiling">compiling</a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-copying-copyright-_0028manual_0029">copyright (manual)</a>:</td><td> </td><td valign="top"><a href="#Top">Top</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-copyright-_0028software_0029">copyright (software)</a>:</td><td> </td><td valign="top"><a href="#Top">Top</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-credits">credits</a>:</td><td> </td><td valign="top"><a href="#Credits">Credits</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-customizing">customizing</a>:</td><td> </td><td valign="top"><a href="#Customizing">Customizing</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_letter-E">E</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-edge">edge</a>:</td><td> </td><td valign="top"><a href="#Introduction">Introduction</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-editing">editing</a>:</td><td> </td><td valign="top"><a href="#Editing">Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-external-viewer">external viewer</a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_letter-G">G</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-GNU-Free-Documentation-License"><acronym>GNU</acronym> Free Documentation License</a>:</td><td> </td><td valign="top"><a href="#GNU-Free-Documentation-License"><acronym>GNU</acronym> Free Documentation License</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-GNU-General-Public-License-2_002e0"><acronym>GNU</acronym> General Public License 2.0</a>:</td><td> </td><td valign="top"><a href="#GNU-General-Public-License-2_002e0"><acronym>GNU</acronym> General Public License 2.0</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-graph">graph</a>:</td><td> </td><td valign="top"><a href="#Introduction">Introduction</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_letter-I">I</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-indenting">indenting</a>:</td><td> </td><td valign="top"><a href="#Indenting">Indenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-installation_002c-the-easy-way">installation, the easy way</a>:</td><td> </td><td valign="top"><a href="#Recommended-Installation">Recommended Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-installation_002c-the-hard-way">installation, the hard way</a>:</td><td> </td><td valign="top"><a href="#Installing-by-Hand">Installing by Hand</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-installing">installing</a>:</td><td> </td><td valign="top"><a href="#Installing">Installing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-installing-by-hand">installing by hand</a>:</td><td> </td><td valign="top"><a href="#Installing-by-Hand">Installing by Hand</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Installing-this-Info-Manual">Installing this Info Manual</a>:</td><td> </td><td valign="top"><a href="#Installing-this-Info-Manual">Installing this Info Manual</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-introduction">introduction</a>:</td><td> </td><td valign="top"><a href="#Introduction">Introduction</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_letter-L">L</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-license-_0028manual_0029">license (manual)</a>:</td><td> </td><td valign="top"><a href="#GNU-Free-Documentation-License"><acronym>GNU</acronym> Free Documentation License</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-license-_0028software_0029">license (software)</a>:</td><td> </td><td valign="top"><a href="#GNU-General-Public-License-2_002e0"><acronym>GNU</acronym> General Public License 2.0</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_letter-M">M</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002d_003b"><code><kbd>M-;</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Commenting">Commenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dj"><code><kbd>M-j</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Commenting">Commenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dt"><code><kbd>M-t</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Completion">Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dt-1"><code><kbd>M-t</kbd></code></a>:</td><td> </td><td valign="top"><a href="#Completion-Variables">Completion Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-graphviz_002ddot_002dcustomize-RET"><code>M-x graphviz-dot-customize <span class="key">RET</span></code></a>:</td><td> </td><td valign="top"><a href="#Customizing">Customizing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-MELPA-Stable_002c-installing-from">MELPA Stable, installing from</a>:</td><td> </td><td valign="top"><a href="#Recommended-Installation">Recommended Installation</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_letter-N">N</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-node">node</a>:</td><td> </td><td valign="top"><a href="#Introduction">Introduction</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_letter-P">P</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-package_002eel_002c-installing-with"><code>package.el</code>, installing with</a>:</td><td> </td><td valign="top"><a href="#Recommended-Installation">Recommended Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-preview">preview</a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_letter-R">R</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-recommended-installation">recommended installation</a>:</td><td> </td><td valign="top"><a href="#Recommended-Installation">Recommended Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-RET"><code><kbd><span class="key">RET</span></kbd></code></a>:</td><td> </td><td valign="top"><a href="#Indenting">Indenting</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-RET-1"><code><kbd><span class="key">RET</span></kbd></code></a>:</td><td> </td><td valign="top"><a href="#Indenting-Variables">Indenting Variables</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_letter-T">T</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-TAB"><code><kbd><span class="key">TAB</span></kbd></code></a>:</td><td> </td><td valign="top"><a href="#Indenting">Indenting</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_letter-U">U</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-using">using</a>:</td><td> </td><td valign="top"><a href="#Using-graphviz_002ddot_002dmode">Using <code>graphviz-dot-mode</code></a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keys-and-Concepts_cp_letter-V">V</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-variables_002c-compile">variables, compile</a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-variables_002c-completion">variables, completion</a>:</td><td> </td><td valign="top"><a href="#Completion-Variables">Completion Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-variables_002c-editing">variables, editing</a>:</td><td> </td><td valign="top"><a href="#Editing-Variables">Editing Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-variables_002c-indenting">variables, indenting</a>:</td><td> </td><td valign="top"><a href="#Indenting-Variables">Indenting Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-variables_002c-keyword">variables, keyword</a>:</td><td> </td><td valign="top"><a href="#Keyword-Variables">Keyword Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-variables_002c-mode-hook">variables, mode hook</a>:</td><td> </td><td valign="top"><a href="#Mode-Hook">Mode Hook</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-variables_002c-view">variables, view</a>:</td><td> </td><td valign="top"><a href="#Compile-_0026-View-Variables">Compile & View Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-viewing">viewing</a>:</td><td> </td><td valign="top"><a href="#Compiling-_0026-Viewing">Compiling & Viewing</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Keys-and-Concepts_cp_symbol-1"><b>;</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_symbol-2"><b>{</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_symbol-3"><b>}</b></a>
<br>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-C"><b>C</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-E"><b>E</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-G"><b>G</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-I"><b>I</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-L"><b>L</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-M"><b>M</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-N"><b>N</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-P"><b>P</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-R"><b>R</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-T"><b>T</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-U"><b>U</b></a>
<a class="summary-letter" href="#Keys-and-Concepts_cp_letter-V"><b>V</b></a>
</td></tr></table>
<hr>
</body>
</html>
|