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
|
'\" t
.\" Title: clisp
.\" Author: Bruno Haible <\m[blue]\fB\%http://www.haible.de/bruno/\fR\m[]>
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: Last modified: 2024-11-09
.\" Manual: Platform: @PLATFORM@
.\" Source: CLISP 2.49.95+
.\" Language: English
.\"
.TH "CLISP" "1" "Last modified: 2024\-11\-09" "CLISP 2.49.95+" "Platform: @PLATFORM@"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
clisp \- \m[blue]\fBANSI\fR\m[]\&\s-2\u[38]\d\s+2 \m[blue]\fB\fBCommon Lisp\fR\fR\m[]\&\s-2\u[1]\d\s+2 compiler, interpreter and debugger\&.
.SH "SYNOPSIS"
.HP \w'\fBclisp\fR\ 'u
\fBclisp\fR [[\fB\-h\fR] | [\fB\-\-help\fR]] [\fB\-\-version\fR] [\fB\-\-license\fR] [\fB\-help\-image\fR] [\fB\-B\ \fIlisp\-lib\-dir\fR\fR] [\fB\-b\fR] [\fB\-K\ \fIlinking\-set\fR\fR] [\fB\-M\ \fImem\-file\fR\fR] [\fB\-m\ \fImemory\-size\fR\fR] [\fB\-L\ \fIlanguage\fR\fR] [\fB\-N\ \fIlocale\-dir\fR\fR] [\fB\-E\fIdomain\fR\ \fIencoding\fR\fR] [[\fB\-q\fR] | [\fB\-\-quiet\fR] | [\fB\-\-silent\fR] | [\fB\-v\fR] | [\fB\-\-verbose\fR]] [\fB\-on\-error\ \fIaction\fR\fR] [\fB\-repl\fR] [\fB\-w\fR] [\fB\-I\fR] [\fB\-disable\-readline\fR] [[\fB\-ansi\fR] | [\fB\-traditional\fR]] [\fB\-modern\fR] [\fB\-p\ \fIpackage\fR\fR] [\fB\-C\fR] [\fB\-norc\fR] [\fB\-lp\ \fIdirectory\fR\fR...] [\fB\-i\ \fIinit\-file\fR\fR...] [\fB\-c\fR\ [\fB\-l\fR]\ \fIlisp\-file\fR\ [\fB\-o\fR\fB\ \fR\fB\fIoutput\-file\fR\fR]...] [\fB\-x\ \fIexpressions\fR\fR...] [\fB\fIlisp\-file\fR\fR\ [\fB\fIargument\fR\fR...]]
.SH "DESCRIPTION"
.PP
Invokes the
\m[blue]\fB\fBCommon Lisp\fR\fR\m[]\&\s-2\u[1]\d\s+2
interpreter and compiler\&.
.SS "Interactive Mode"
.PP
When called without
batch
arguments, executes the
\m[blue]\fBread\-eval\-print loop\fR\m[]\&\s-2\u[2]\d\s+2, in which expressions are in turn
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\m[blue]\fB\fBREAD\fR\fR\m[]\&\s-2\u[3]\d\s+2
from the standard input,
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\m[blue]\fB\fBEVAL\fR\fR\m[]\&\s-2\u[4]\d\s+2uated by the lisp interpreter,
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
and their results are
\m[blue]\fB\fBPRINT\fR\fR\m[]\&\s-2\u[5]\d\s+2ed to the standard output\&.
.RE
.SS "Non\-Interactive (Batch) Mode"
.PP
Invoked with
\fB\-c\fR, compiles the specified lisp files to a platform\-independent
bytecode
which can be executed more efficiently\&.
.PP
Invoked with
\fB\-x\fR, executes the specified lisp expressions\&.
.PP
Invoked with
\fB\fIlisp\-file\fR\fR, runs the specified lisp file\&.
.PP
Batch mode activates the
\fB\-q\fR
option\&.
.SH "OPTIONS"
.PP
\fB\-h\fR
.br
\fB\-\-help\fR
.RS 4
Displays a help message on how to invoke
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2\&.
.RE
.PP
\fB\-\-version\fR
.RS 4
Displays the
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
version number, as given by the function
\m[blue]\fB\fBLISP\-IMPLEMENTATION\-VERSION\fR\fR\m[]\&\s-2\u[7]\d\s+2, the value of the variable
\fI*FEATURES*\fR, as well some other information\&.
.RE
.PP
\fB\-\-license\fR
.RS 4
Displays a summary of the licensing information, the
\m[blue]\fBGNU\fR\m[]\&\s-2\u[8]\d\s+2
\m[blue]\fBGPL\fR\m[]\&\s-2\u[9]\d\s+2\&.
.RE
.PP
\fB\-help\-image\fR
.RS 4
Displays information about the
memory image
being invoked: whether is it suitable for scripting as well as the
\fB:DOCUMENTATION\fR
supplied to
\fBEXT:SAVEINITMEM\fR\&.
.RE
.PP
\fB\-B\fR \fIlisp\-lib\-dir\fR
.RS 4
Specifies the installation directory\&. This is the directory containing the linking sets and other data files\&. This option is normally not necessary, because the installation directory is already built\-in into the
\fBclisp\fR
executable\&. Directory
\fIlisp\-lib\-dir\fR
can be changed dynamically using the
\m[blue]\fBSYMBOL\-MACRO\fR\m[]\&\s-2\u[10]\d\s+2
\fICUSTOM:*LIB\-DIRECTORY*\fR\&.
.RE
.PP
\fB\-b\fR
.RS 4
Print the installation directory and exit immediately\&. The namestring of
\fICUSTOM:*LIB\-DIRECTORY*\fR
is printed without any quotes\&. This is mostly useful in module Makefiles, see, e\&.g\&.,
modules/syscalls/Makefile\&.in (file in the CLISP sources)\&.
.RE
.PP
\fB\-K\fR \fIlinking\-set\fR
.RS 4
Specifies the
linking set
to be run\&. This is a directory (relative to the
\fIlisp\-lib\-dir\fR) containing at least a main executable (runtime) and an initial
memory image\&. Possible values are
.PP
\fBbase\fR
.RS 4
the core
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
.RE
.PP
\fBfull\fR
.RS 4
core plus all the modules with which this installation was built, see
Section\ \&32.2, \(lqExternal Modules\(rq\&.
.RE
.sp
The
default
is
\fBbase\fR\&.
.RE
.PP
\fB\-M\fR \fImem\-file\fR
.RS 4
Specifies the initial
memory image\&. This must be a memory dump produced by the
\fBEXT:SAVEINITMEM\fR
function by this
\fBclisp\fR
runtime\&.
#ifdef UNIX
It may have been compressed using
\m[blue]\fBGNU\fR\m[]\&\s-2\u[8]\d\s+2
\m[blue]\fB\fBgzip\fR\fR\m[]\&\s-2\u[11]\d\s+2\&.
#endif
.RE
.PP
\fB\-m\fR \fImemory\-size\fR
.RS 4
Sets the amount of memory
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
tries to grab on startup\&. The amount may be given as
.PP
\fIn\fR
.br
\fIn\fR\fBB\fR
.RS 4
measured in bytes
.RE
.PP
\fIn\fR
.br
\fIn\fR\fBW\fR
.RS 4
measured in machine words (4\(mu\fIn\fR
on 32\-bit platforms, 8\(mu\fIn\fR
on 64\-bit platforms)
.RE
.PP
\fIn\fR\fBK\fR
.br
\fIn\fR\fBKB\fR
.RS 4
measured in kilobytes
.RE
.PP
\fIn\fR\fBKW\fR
.RS 4
measured in kilowords
.RE
.PP
\fIn\fR\fBM\fR
.br
\fIn\fR\fBMB\fR
.RS 4
measured in megabytes
.RE
.PP
\fIn\fR\fBMW\fR
.RS 4
measured in megawords
.RE
.sp
The default is 3 megabytes\&.
#if (oint_addr_len+addr_shift==24)
The argument is constrained between 100 KB and 16 MB\&.
#elif (oint_addr_len+addr_shift==26)
The argument is constrained between 100 KB and 64 MB\&.
#elif (oint_addr_len+addr_shift==28)
The argument is constrained between 100 KB and 256 MB\&.
#else
The argument is constrained above 100 KB\&.
#endif
.sp
This version of
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
#if defined(SPVW_MIXED) && defined(SPVW_BLOCKS)
#ifdef GENERATIONAL_GC
is not likely to actually use the entire
\fImemory\-size\fR
since
garbage\-collection will periodically reduce the amount of used memory\&. It is therefore common to specify 10 MB even if only 2 MB are going to be used\&.
#else
eventually uses the entire
\fImemory\-size\fR\&.
#endif
#else
allocates memory dynamically\&.
\fImemory\-size\fR
is essentially ignored (except that it determines the Lisp
STACK
size)\&.
#endif
.RE
.PP
\fB\-L\fR \fIlanguage\fR
.RS 4
Specifies the
language
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
uses to communicate with the user\&. This may be
#ifndef GNU_GETTEXT
only
\fBenglish\fR\&.
#else
one of
\fBenglish\fR, \fBgerman\fR, \fBfrench\fR, \fBspanish\fR, \fBdutch\fR, \fBrussian\fR, \fBdanish\fR\&. Other languages may be specified through the
\m[blue]\fBenvironment variable\fR\m[]\&\s-2\u[12]\d\s+2
\fBLANG\fR, provided the corresponding message catalog is installed\&.
#endif
The language may be changed dynamically using the
\m[blue]\fBSYMBOL\-MACRO\fR\m[]\&\s-2\u[10]\d\s+2
\fICUSTOM:*CURRENT\-LANGUAGE*\fR\&.
.RE
.PP
\fB\-N\fR \fIlocale\-dir\fR
.RS 4
Specifies the base directory of locale files\&.
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
will search its message catalogs in
\fIlocale\-dir\fR/\fIlanguage\fR/LC_MESSAGES/clisp\&.mo\&. This directory may be changed dynamically using the
\m[blue]\fBSYMBOL\-MACRO\fR\m[]\&\s-2\u[10]\d\s+2
\fICUSTOM:*CURRENT\-LANGUAGE*\fR\&.
.RE
.PP
\fB\-E\fR\fB\fIdomain\fR\fR\fB \fR\fB\fIencoding\fR\fR
.RS 4
Specifies the encoding used for the given domain, overriding the default which depends on the
\m[blue]\fBenvironment variable\fR\m[]\&\s-2\u[12]\d\s+2s
\fBLC_ALL\fR,
\fBLC_CTYPE\fR,
\fBLANG\fR\&.
\fIdomain\fR
can be
.PP
\fBfile\fR
.RS 4
affecting
\fICUSTOM:*DEFAULT\-FILE\-ENCODING*\fR
.RE
.PP
\fBpathname\fR
.RS 4
affecting
\fICUSTOM:*PATHNAME\-ENCODING*\fR
.RE
.PP
\fBterminal\fR
.RS 4
affecting
\fICUSTOM:*TERMINAL\-ENCODING*\fR
.RE
.PP
\fBforeign\fR
.RS 4
affecting
\fICUSTOM:*FOREIGN\-ENCODING*\fR
.RE
.PP
\fBmisc\fR
.RS 4
affecting
\fICUSTOM:*MISC\-ENCODING*\fR
.RE
.PP
\fIblank\fR
.RS 4
affecting all of the above\&.
.RE
.sp
.if n \{\
.sp
.\}
.RS 4
.it 1 an-input-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBWarning\fR
.ps -1
.br
Note that the values of these
\m[blue]\fBSYMBOL\-MACRO\fR\m[]\&\s-2\u[10]\d\s+2s that have been saved in a
memory image
are ignored: these
\m[blue]\fBSYMBOL\-MACRO\fR\m[]\&\s-2\u[10]\d\s+2s are reset based on the OS environment
\fBafter\fR
the
memory image
is loaded\&. You have to use the
RC file,
\fICUSTOM:*INIT\-HOOKS*\fR
or
init function
to set them on startup, but it is best to set the aforementioned
\m[blue]\fBenvironment variable\fR\m[]\&\s-2\u[12]\d\s+2s appropriately for consistency with other programs\&. See
Section\ \&31.1, \(lqCustomizing CLISP Process Initialization and Termination\(rq\&.
.sp .5v
.RE
.RE
.PP
\fB\-q\fR
.br
\fB\-\-quiet\fR
.br
\fB\-\-silent\fR
.br
\fB\-v\fR
.br
\fB\-\-verbose\fR
.RS 4
Change verbosity level: by default,
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
displays a banner at startup and a good\-bye message when quitting, and initializes
\m[blue]\fB\fI*LOAD\-VERBOSE*\fR\fR\m[]\&\s-2\u[13]\d\s+2
and
\m[blue]\fB\fI*COMPILE\-VERBOSE*\fR\fR\m[]\&\s-2\u[14]\d\s+2
to
\m[blue]\fB\fBT\fR\fR\m[]\&\s-2\u[15]\d\s+2, and
\m[blue]\fB\fI*LOAD\-PRINT*\fR\fR\m[]\&\s-2\u[13]\d\s+2
and
\m[blue]\fB\fI*COMPILE\-PRINT*\fR\fR\m[]\&\s-2\u[14]\d\s+2
to
\m[blue]\fB\fBNIL\fR\fR\m[]\&\s-2\u[16]\d\s+2, as per
[ANSI CL standard]\&. The first
\fB\-q\fR
removes the banner and the good\-bye message, the second sets variables
\m[blue]\fB\fI*LOAD\-VERBOSE*\fR\fR\m[]\&\s-2\u[13]\d\s+2,
\m[blue]\fB\fI*COMPILE\-VERBOSE*\fR\fR\m[]\&\s-2\u[14]\d\s+2
and
\fICUSTOM:*SAVEINITMEM\-VERBOSE*\fR
to
\m[blue]\fB\fBNIL\fR\fR\m[]\&\s-2\u[16]\d\s+2\&. The first
\fB\-v\fR
sets variables
\fICUSTOM:*REPORT\-ERROR\-PRINT\-BACKTRACE*\fR,
\m[blue]\fB\fI*LOAD\-PRINT*\fR\fR\m[]\&\s-2\u[13]\d\s+2
and
\m[blue]\fB\fI*COMPILE\-PRINT*\fR\fR\m[]\&\s-2\u[14]\d\s+2
to
\m[blue]\fB\fBT\fR\fR\m[]\&\s-2\u[15]\d\s+2, the second sets
\fICUSTOM:*LOAD\-ECHO*\fR
to
\m[blue]\fB\fBT\fR\fR\m[]\&\s-2\u[15]\d\s+2\&. These settings affect the output produced by
\fB\-i\fR
and
\fB\-c\fR
options\&. Note that these settings persist into the
\m[blue]\fBread\-eval\-print loop\fR\m[]\&\s-2\u[2]\d\s+2\&. Repeated
\fB\-q\fR
and
\fB\-v\fR
cancel each other, e\&.g\&.,
\fB\-q \-q \-v \-v \-v\fR
is equivalent to
\fB\-v\fR\&.
.RE
.PP
\fB\-on\-error\fR \fIaction\fR
.RS 4
Establish global error handlers, depending on
\fIaction\fR:
.PP
appease
.RS 4
\m[blue]\fBcontinuable\fR\m[]\&\s-2\u[17]\d\s+2
\m[blue]\fBERROR\fR\m[]\&\s-2\u[18]\d\s+2s are turned into
\m[blue]\fBWARNING\fR\m[]\&\s-2\u[19]\d\s+2s (with
\fBEXT:APPEASE\-CERRORS\fR) other
\m[blue]\fBERROR\fR\m[]\&\s-2\u[18]\d\s+2s are handled in the default way
.RE
.PP
debug
.RS 4
\m[blue]\fBERROR\fR\m[]\&\s-2\u[18]\d\s+2s
\m[blue]\fB\fBINVOKE\-DEBUGGER\fR\fR\m[]\&\s-2\u[20]\d\s+2
(the normal
\m[blue]\fBread\-eval\-print loop\fR\m[]\&\s-2\u[2]\d\s+2
behavior), disables
batch mode
imposed by
\fB\-c\fR,
\fB\-x\fR, and
\fB\fIlisp\-file\fR\fR,
.RE
.PP
abort
.RS 4
\m[blue]\fBcontinuable\fR\m[]\&\s-2\u[17]\d\s+2
\m[blue]\fBERROR\fR\m[]\&\s-2\u[18]\d\s+2s are appeased, other
\m[blue]\fBERROR\fR\m[]\&\s-2\u[18]\d\s+2s are
\m[blue]\fB\fBABORT\fR\fR\m[]\&\s-2\u[21]\d\s+2ed with
\fBEXT:ABORT\-ON\-ERROR\fR
.RE
.PP
exit
.RS 4
\m[blue]\fBcontinuable\fR\m[]\&\s-2\u[17]\d\s+2
\m[blue]\fBERROR\fR\m[]\&\s-2\u[18]\d\s+2s are appeased, other
\m[blue]\fBERROR\fR\m[]\&\s-2\u[18]\d\s+2s terminate
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
with
\fBEXT:EXIT\-ON\-ERROR\fR
(the normal
batch mode
behavior)\&.
.RE
.sp
See also
\fBEXT:SET\-GLOBAL\-HANDLER\fR\&.
.RE
.PP
\fB\-repl\fR
.RS 4
Start an interactive
\m[blue]\fBread\-eval\-print loop\fR\m[]\&\s-2\u[2]\d\s+2
after processing the
\fB\-c\fR,
\fB\-x\fR, and
\fB\fIlisp\-file\fR\fR
options and on any
\m[blue]\fBERROR\fR\m[]\&\s-2\u[18]\d\s+2
\m[blue]\fB\fBSIGNAL\fR\fR\m[]\&\s-2\u[22]\d\s+2ed during that processing\&.
.sp
Disables
batch mode\&.
.RE
.PP
\fB\-w\fR
.RS 4
Wait for a keypress after program termination\&.
.RE
.PP
\fB\-I\fR
.RS 4
Interact better with
\m[blue]\fBEmacs\fR\m[]\&\s-2\u[23]\d\s+2
(useful when running
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
under
\m[blue]\fBEmacs\fR\m[]\&\s-2\u[23]\d\s+2
using
\m[blue]\fBSLIME\fR\m[]\&\s-2\u[24]\d\s+2,
\m[blue]\fBILISP\fR\m[]\&\s-2\u[25]\d\s+2
et al)\&. With this option,
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
interacts in a way that
\m[blue]\fBEmacs\fR\m[]\&\s-2\u[23]\d\s+2
can deal with:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
unnecessary prompts are not suppressed\&.
.RE
#ifdef GNU_READLINE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
The
\m[blue]\fBGNU\fR\m[]\&\s-2\u[8]\d\s+2
\m[blue]\fBreadline\fR\m[]\&\s-2\u[26]\d\s+2
library treats
TAB
(see
TAB key) as a normal self\-inserting character (see
Q:\ \&A.4.6)\&.
.RE
#endif
.RE
.PP
\fB\-disable\-readline\fR
.RS 4
Do not use
\m[blue]\fBGNU\fR\m[]\&\s-2\u[8]\d\s+2
\m[blue]\fBreadline\fR\m[]\&\s-2\u[26]\d\s+2
even when it has been linked against\&. This can be used if one wants to paste non\-\m[blue]\fB\fIASCII\fR\fR\m[]\&\s-2\u[27]\d\s+2
characters, or when
\m[blue]\fBGNU\fR\m[]\&\s-2\u[8]\d\s+2
\m[blue]\fBreadline\fR\m[]\&\s-2\u[26]\d\s+2
misbehaves due to installation (different versions on the build and install machines) or setup (bad
\fBTERM\fR
\m[blue]\fBenvironment variable\fR\m[]\&\s-2\u[12]\d\s+2
value) issues\&.
.RE
.PP
\fB\-ansi\fR
.RS 4
Comply with the
[ANSI CL standard]
specification even where
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
has been traditionally different by setting the
\m[blue]\fBSYMBOL\-MACRO\fR\m[]\&\s-2\u[10]\d\s+2
\fICUSTOM:*ANSI*\fR
to
\m[blue]\fB\fBT\fR\fR\m[]\&\s-2\u[15]\d\s+2\&.
.RE
.PP
\fB\-traditional\fR
.RS 4
Traditional: reverses the residual effects of
\fB\-ansi\fR
in the saved
memory image\&.
.RE
.PP
\fB\-modern\fR
.RS 4
Provides a modern view of symbols: at startup the
\m[blue]\fB\fI*PACKAGE*\fR\fR\m[]\&\s-2\u[28]\d\s+2
variable will be set to the
\(lqCS\-COMMON\-LISP\-USER\(rq
package, and the
\m[blue]\fB\fI*PRINT\-CASE*\fR\fR\m[]\&\s-2\u[29]\d\s+2
will be set to
\fB:DOWNCASE\fR\&. This has the effect that symbol lookup is case\-sensitive (except for keywords and old\-style packages) and that keywords and uninterned symbols are printed with lower\-case preferrence\&. See
Section\ \&11.5, \(lqPackage Case-Sensitivity\(rq\&.
.RE
.PP
\fB\-p\fR \fIpackage\fR
.RS 4
At startup the value of the variable
\m[blue]\fB\fI*PACKAGE*\fR\fR\m[]\&\s-2\u[28]\d\s+2
will be set to the package named
\fIpackage\fR\&. The default is the value of
\m[blue]\fB\fI*PACKAGE*\fR\fR\m[]\&\s-2\u[28]\d\s+2
when the image was
saved, normally
\m[blue]\fB\(lqCOMMON\-LISP\-USER\(rq\fR\m[]\&\s-2\u[30]\d\s+2\&.
.RE
.PP
\fB\-C\fR
.RS 4
Compile when loading: at startup the value of the variable
\fICUSTOM:*LOAD\-COMPILING*\fR
will be set to
\m[blue]\fB\fBT\fR\fR\m[]\&\s-2\u[15]\d\s+2\&. Code being
\m[blue]\fB\fBLOAD\fR\fR\m[]\&\s-2\u[31]\d\s+2ed will then be
\m[blue]\fB\fBCOMPILE\fR\fR\m[]\&\s-2\u[32]\d\s+2d on the fly\&. This results in slower loading, but faster execution\&.
.RE
.PP
\fB\-norc\fR
.RS 4
Normally
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
loads the user
\m[blue]\fB\(lqrun control\(rq (RC)\fR\m[]\&\s-2\u[33]\d\s+2
file on startup (this happens
\fBafter\fR
the
\fB\-C\fR
option is processed)\&. The file loaded is
\&.clisprc\&.lisp
or
\&.clisprc\&.fas
in the home directory
\m[blue]\fB\fBUSER\-HOMEDIR\-PATHNAME\fR\fR\m[]\&\s-2\u[34]\d\s+2, whichever is newer\&. This option,
\fB\-norc\fR, prevents loading of the
RC file\&.
.RE
.PP
\fB\-lp\fR \fIdirectory\fR
.RS 4
Specifies directories to be added to
\fICUSTOM:*LOAD\-PATHS*\fR
at startup\&. This is done
\fBafter\fR
loading the
RC file
(so that it does not override the command\-line option) but
\fBbefore\fR
loading the init\-files specified by the
\fB\-i\fR
options (so that the init\-files will be searched for in the specified directories)\&. Several
\fB\-lp\fR
options can be given; all the specified directories will be added\&.
.RE
.PP
\fB\-i\fR \fIinit\-file\fR
.RS 4
Specifies initialization files to be
\m[blue]\fB\fBLOAD\fR\fR\m[]\&\s-2\u[31]\d\s+2ed at startup\&. These should be lisp files (source or compiled)\&. Several
\fB\-i\fR
options can be given; all the specified files will be loaded in order\&.
.RE
.PP
\fB\-c\fR \fIlisp\-file\fR
.RS 4
Compiles the specified
\fIlisp\-file\fRs to
bytecode
(*\&.fas)\&. The compiled files can then be
\m[blue]\fB\fBLOAD\fR\fR\m[]\&\s-2\u[31]\d\s+2ed instead of the sources to gain efficiency\&.
.sp
Imposes
batch mode\&.
.RE
.PP
\fB\-o\fR \fIoutputfile\fR
.RS 4
Specifies the output file or directory for the compilation of the last specified
\fIlisp\-file\fR\&.
.RE
.PP
\fB\-l\fR
.RS 4
Produce a
bytecode
\m[blue]\fB\fBDISASSEMBLE\fR\fR\m[]\&\s-2\u[35]\d\s+2
listing (*\&.lis) of the files being compiled\&. Useful only for debugging\&. See
Section\ \&24.1, \(lqFunction COMPILE-FILE\(rq
for details\&.
.RE
.PP
\fB\-x\fR \fIexpressions\fR
.RS 4
Executes a series of arbitrary expressions instead of a
\m[blue]\fBread\-eval\-print loop\fR\m[]\&\s-2\u[2]\d\s+2\&. The values of the expressions will be output to
\m[blue]\fB\fI*STANDARD\-OUTPUT*\fR\fR\m[]\&\s-2\u[36]\d\s+2\&. Due to the argument processing done by the shell, the
\fIexpressions\fR
must be enclosed in double quotes, and double quotes and backslashes must be escaped with backslashes\&.
.sp
Imposes
batch mode\&.
.RE
.PP
\fIlisp\-file\fR [ \fIargument\fR \&.\&.\&. ]
.RS 4
Loads and executes a
\fIlisp\-file\fR, as described in
Section\ \&32.6.2, \(lqScripting with CLISP\(rq\&. There will be no
\m[blue]\fBread\-eval\-print loop\fR\m[]\&\s-2\u[2]\d\s+2\&. Before
\fIlisp\-file\fR
is loaded, the variable
\fIEXT:*ARGS*\fR
will be bound to a list of strings, representing the
\fIargument\fRs\&.
#ifdef UNIX
The first line of
\fIlisp\-file\fR
may start with
\fB#!\fR, thus permitting
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
to be used as a script interpreter\&.
#endif
If
\fIlisp\-file\fR
is
\fB\-\fR, the
\m[blue]\fB\fI*STANDARD\-INPUT*\fR\fR\m[]\&\s-2\u[36]\d\s+2
is used instead of a file\&.
.sp
This option is
\fIdisabled\fR
if the
memory image
was created by
\fBEXT:SAVEINITMEM\fR
with
\m[blue]\fB\fBNIL\fR\fR\m[]\&\s-2\u[16]\d\s+2
\fB:SCRIPT\fR
argument\&. In that case the
\m[blue]\fBLIST\fR\m[]\&\s-2\u[37]\d\s+2
\fIEXT:*ARGS*\fR
starts with
\fIlisp\-file\fR\&.
.sp
This option must be the last one\&.
.sp
No
RC file
will be executed\&.
.sp
Imposes
batch mode\&.
.RE
.PP
As usual,
\fB\-\-\fR
stops option processing and places all remaining command line arguments into
\fIEXT:*ARGS*\fR\&.
.SH "LANGUAGE REFERENCE"
.PP
The language implemented is
\m[blue]\fBANSI\&\s-2\u[39]\d\s+2\fR\m[]\&\s-2\u[38]\d\s+2
\m[blue]\fB\fBCommon Lisp\fR\fR\m[]\&\s-2\u[1]\d\s+2\&. The implementation mostly conforms to the
ANSI Common Lisp standard, see
Section\ \&31.10, \(lqMaximum ANSI CL compliance\(rq\&.
[ANSI CL] ANSI CL standard1994. \m[blue]ANSI\m[]\&\s-2\u[40]\d\s+2 INCITS 226-1994 (R1999)
Information Technology - Programming Language - Common Lisp
[formerly ANSI X3.226-1994 (R1999)].
.SH "COMMAND LINE USER ENVIRONMENT"
.PP
\fBhelp\fR
.RS 4
get context\-sensitive on\-line help, see
Chapter\ \&25, Environment chap-25\&.
.RE
.PP
(\fBAPROPOS\fR \fIname\fR)
.RS 4
list the
\m[blue]\fBSYMBOL\fR\m[]\&\s-2\u[41]\d\s+2s matching
\fIname\fR\&.
.RE
.PP
(\fBDESCRIBE\fR \fIsymbol\fR)
.RS 4
describe the
\fIsymbol\fR\&.
.RE
.PP
(exit)
.br
(quit)
.br
(bye)
.RS 4
quit
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2\&.
.RE
.PP
EOF
#if defined(UNIX)
(Control+D on \m[blue]\fB\fBUNIX\fR\fR\m[]\&\s-2\u[42]\d\s+2)
#endif
#if defined(WIN32_NATIVE)
(Control+Z on \m[blue]\fB\fIWin32\fR\fR\m[]\&\s-2\u[43]\d\s+2)
#endif
.RS 4
leave the current level of the
\m[blue]\fBread\-eval\-print loop\fR\m[]\&\s-2\u[2]\d\s+2
(see also
Section\ \&1.1, \(lqSpecial Symbols sec_1-4-1-3\(rq)\&.
.RE
#ifdef GNU_READLINE
.PP
arrow keys
.RS 4
for editing and viewing the input history, using the
\m[blue]\fBGNU\fR\m[]\&\s-2\u[8]\d\s+2
\m[blue]\fBreadline\fR\m[]\&\s-2\u[26]\d\s+2
library\&.
.RE
.PP
TAB key
.RS 4
Context sensitive:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
If you are in the
\(lqfunction position\(rq
(in the first symbol after an opening paren or in the first symbol after a
\m[blue]\fB#\*(Aq\fR\m[]\&\s-2\u[44]\d\s+2), the completion is limited to the symbols that name functions\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
If you are in the "filename position" (inside a string after
\m[blue]\fB#P\fR\m[]\&\s-2\u[45]\d\s+2), the completion is done across file names,
\m[blue]\fBGNU\fR\m[]\&\s-2\u[8]\d\s+2
\m[blue]\fBbash\fR\m[]\&\s-2\u[46]\d\s+2\-style\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
If you have not typed anything yet, you will get a help message, as if by the
\fBhelp\fR
command\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
If you have not started typing the next symbol (i\&.e\&., you are at a whitespace), the current function or macro is
\fBDESCRIBE\fRd\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Otherwise, the symbol you are currently typing is completed\&.
.RE
.sp
.RE
#endif
.SH "USING AND EXTENDING CLISP"
.PP
\m[blue]\fB\fBCommon Lisp\fR\fR\m[]\&\s-2\u[1]\d\s+2
is a
\fIprogrammable\fR
programming language\&.
\(em\m[blue]\fBJohn Foderaro\fR\m[]\&\s-2\u[47]\d\s+2
.PP
When
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
is invoked, the
runtime
loads the
initial memory image
and outputs the
prompt; at which one can start typing
\m[blue]\fB\fBDEFVAR\fR\fR\m[]\&\s-2\u[48]\d\s+2s,
\m[blue]\fB\fBDEFUN\fR\fR\m[]\&\s-2\u[49]\d\s+2s and
\m[blue]\fB\fBDEFMACRO\fR\fR\m[]\&\s-2\u[50]\d\s+2s\&.
.PP
To avoid having to re\-enter the same definitions by hand in every session, one can create a lisp file with all the variables, functions, macros, etc\&.; (optionally) compile it with
\m[blue]\fB\fBCOMPILE\-FILE\fR\fR\m[]\&\s-2\u[51]\d\s+2; and
\m[blue]\fB\fBLOAD\fR\fR\m[]\&\s-2\u[31]\d\s+2
it either by hand or from the
RC file; or save a
memory image
to avoid the
\m[blue]\fB\fBLOAD\fR\fR\m[]\&\s-2\u[31]\d\s+2
overhead\&.
.PP
However, sometimes one needs to use some functionality implemented in another language, e\&.g\&., call a
\m[blue]\fB\fBC\fR\fR\m[]\&\s-2\u[52]\d\s+2
library function\&. For that one uses the
Foreign Function Interface
and/or the
External Modules
facility\&. Finally, the truly adventurous ones might delve into
Extending the Core\&.
.SH "FILES"
.PP
\fBclisp\fR
.br
\fBclisp\&.exe\fR
.RS 4
#if defined(UNIX) && !defined(UNIX_CYGWIN)
#endif
#if defined(WIN32_NATIVE) || defined(UNIX_CYGWIN)
#endif
startup driver (an executable or, rarely, a shell script) which remembers the location of the
runtime
and starts it with the appropriate arguments
.RE
.PP
lisp\&.run
.br
lisp\&.exe
.RS 4
#if defined(UNIX) && !defined(UNIX_CYGWIN)
#endif
#if defined(WIN32_NATIVE) || defined(UNIX_CYGWIN)
#endif
main executable (runtime) \- the part of
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
implemented in
\m[blue]\fB\fBC\fR\fR\m[]\&\s-2\u[52]\d\s+2\&.
.RE
.PP
lispinit\&.mem
.RS 4
initial
memory image
(the part of
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
implemented in lisp)
.RE
.PP
config\&.lisp
.RS 4
site\-dependent configuration (should have been customized before
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
was built); see
Section\ \&31.12, \(lqCustomizing CLISP behavior\(rq
.RE
.PP
*\&.lisp
.RS 4
lisp source
.RE
.PP
*\&.fas
.RS 4
lisp code, compiled by
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
.RE
.PP
*\&.lib
.RS 4
lisp source library information, generated by
\fBCOMPILE\-FILE\fR, see
Section\ \&24.3, \(lqFunction REQUIRE\(rq\&.
.RE
.PP
*\&.c
.RS 4
C code, compiled from lisp source by
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
(see
Section\ \&32.3, \(lqThe Foreign Function Call Facility\(rq)
.RE
.PP
For the
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
source files, see
Chapter\ \&34, The source files of CLISP\&.
.SH "ENVIRONMENT"
.PP
All
\m[blue]\fBenvironment variable\fR\m[]\&\s-2\u[12]\d\s+2s that
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
uses are read at most once\&.
.PP
\fBCLISP_LANGUAGE\fR
.RS 4
specifies the language
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
uses to communicate with the user\&. The legal values are identical to those of the
\fB\-L\fR
option which can be used to override this
\m[blue]\fBenvironment variable\fR\m[]\&\s-2\u[12]\d\s+2\&.
.RE
#ifdef ENABLE_UNICODE
.PP
\fBLC_CTYPE\fR
.RS 4
specifies the locale which determines the character set in use\&. The value can be of the form
\fB\fIlanguage\fR\fR
or
\fB\fIlanguage\fR\fR\fB_\fR\fB\fIcountry\fR\fR
or
\fB\fIlanguage\fR\fR\fB_\fR\fB\fIcountry\fR\fR\fB\&.\fR\fB\fIcharset\fR\fR, where
\fIlanguage\fR
is a two\-letter ISO 639 language code (lower case),
\fIcountry\fR
is a two\-letter ISO 3166 country code (upper case)\&.
\fIcharset\fR
is an optional character set specification, and needs normally not be given because the character set can be inferred from the language and country\&. This
\m[blue]\fBenvironment variable\fR\m[]\&\s-2\u[12]\d\s+2
can be overridden with the
\fB-Edomain encoding\fR
option\&.
.RE
#endif
.PP
\fBLANG\fR
.RS 4
specifies the language
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
uses to communicate with the user, unless it is already specified through the
\m[blue]\fBenvironment variable\fR\m[]\&\s-2\u[12]\d\s+2
\fBCLISP_LANGUAGE\fR
or the
\fB\-L\fR
option\&.
#ifdef ENABLE_UNICODE
It also specifies the locale determining the character set in use, unless already specified through the
\m[blue]\fBenvironment variable\fR\m[]\&\s-2\u[12]\d\s+2
\fBLC_CTYPE\fR\&.
#endif
The value may begin with a two\-letter ISO 639 language code, for example
\fBen\fR,
\fBde\fR,
\fBfr\fR\&.
.RE
#ifdef UNIX
.PP
\fBHOME\fR
.br
\fBUSER\fR
.RS 4
used for determining the value of the function
\m[blue]\fB\fBUSER\-HOMEDIR\-PATHNAME\fR\fR\m[]\&\s-2\u[34]\d\s+2\&.
.RE
#endif
.PP
\fBSHELL\fR
.br
\fBCOMSPEC\fR
.RS 4
#ifdef UNIX
#endif
#ifdef WIN32_NATIVE
#endif
is used to find the interactive command interpreter called by
\fBEXT:SHELL\fR\&.
.RE
#ifdef UNIX
.PP
\fBTERM\fR
.RS 4
determines the screen size recognized by the pretty printer\&.
.RE
#endif
.PP
\fBORGANIZATION\fR
.RS 4
for
\m[blue]\fB\fBSHORT\-SITE\-NAME\fR\fR\m[]\&\s-2\u[53]\d\s+2
and
\m[blue]\fB\fBLONG\-SITE\-NAME\fR\fR\m[]\&\s-2\u[53]\d\s+2
in
config\&.lisp\&.
.RE
.PP
\fBCLHSROOT\fR
.RS 4
for
\fBCUSTOM:CLHS\-ROOT\fR
in
config\&.lisp\&.
.RE
.PP
\fBIMPNOTES\fR
.RS 4
for
\fBCUSTOM:IMPNOTES\-ROOT\fR
in
config\&.lisp\&.
.RE
.PP
\fBEDITOR\fR
.RS 4
for
\fBeditor\-name\fR
in
config\&.lisp\&.
.RE
.PP
\fBLOGICAL_HOST_\fR\fB\fIhost\fR\fR\fB_FROM\fR
.br
\fBLOGICAL_HOST_\fR\fB\fIhost\fR\fR\fB_TO\fR
.br
\fBLOGICAL_HOST_\fR\fB\fIhost\fR\fR
.RS 4
for
\fICUSTOM:*LOAD\-LOGICAL\-PATHNAME\-TRANSLATIONS\-DATABASE*\fR
.RE
.SH "INPUT AND OUTUT"
.PP
See
Section\ \&21.1.1, \(lqInitialization of Standard Streams\(rq\&.
.SH "SEE ALSO"
.PP
.RS 4
CLISP impnotes
.RE
.RS 4
clisp-link(1)
.RE
.RS 4
\m[blue]\fB\fBCMU CL\fR\fR\m[]\&\s-2\u[54]\d\s+2 \- \fBcmucl\fR(1)
.RE
.RS 4
\m[blue]\fB\fBSBCL\fR\fR\m[]\&\s-2\u[55]\d\s+2 \- \fBsbcl\fR(1)
.RE
.RS 4
\m[blue]\fBEmacs\fR\m[]\&\s-2\u[23]\d\s+2 \- \fBemacs\fR(1)
.RE
.SH "BUGS"
.PP
When you encounter a bug in
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
or in its documentation (this manual page or
CLISP impnotes), please report it to the
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
\m[blue]\fBSourceForge bug tracker\fR\m[]\&\s-2\u[56]\d\s+2\&. Login, either to your
\m[blue]\fBSourceForge\fR\m[]\&\s-2\u[57]\d\s+2
account, or to your
\m[blue]\fBOpenID\fR\m[]\&\s-2\u[58]\d\s+2
account\&. Then click the "Create Ticket" link on the left\-hand side\&.
.PP
\fIBefore\fR
submitting a bug report, please take the following basic steps to make the report more useful:
.sp
.RS 4
.ie n \{\
\h'-04' 1.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 1." 4.2
.\}
Unless your bug is locale\-specific, please set your locale to
en\&. You
\fIcannot\fR
assume that
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
maintainers understand a language other than
\m[blue]\fBEnglish\fR\m[]\&\s-2\u[59]\d\s+2, even though, historically, few
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
maintainers spoke English natively\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 2.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 2." 4.2
.\}
Do a clean build (remove your build directory and build
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
with
\fB\&./configure \-\-cbcx build\fR
or at least do a
\fBmake distclean\fR
before
\fBmake\fR)\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 3.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 3." 4.2
.\}
If you are reporting a
\(lqhard crash\(rq
(segmentation fault, bus error, core dump etc), please do
\fB\&./configure \fR\fB\fB\-\-with\-debug\fR\fR\fB \-\-cbcx build\-g ; cd build\-g; gdb lisp\&.run\fR, then load the appropriate
linking set
by either
\fBbase\fR
or
\fBfull\fR
\m[blue]\fB\fBgdb\fR\fR\m[]\&\s-2\u[60]\d\s+2
command, and report the backtrace (see also
Q:\ \&A.1.1.10)\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 4.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 4." 4.2
.\}
If you are using pre\-built binaries and experience a hard crash, the problem is likely to be in the incompatibilities between the platform on which the binary was built and yours; please try compiling the sources and report the problem if it persists\&.
.RE
.PP
When submitting a bug report, please specify the following information:
.sp
.RS 4
.ie n \{\
\h'-04' 1.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 1." 4.2
.\}
What is your platform (\fBuname \-a\fR
on a
\m[blue]\fB\fBUNIX\fR\fR\m[]\&\s-2\u[42]\d\s+2
system)?
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 2.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 2." 4.2
.\}
Please supply the full output (copy and paste) of all the error messages\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 3.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 3." 4.2
.\}
Please provide detailed instructions on how to reproduce the problem\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 4.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 4." 4.2
.\}
Where did you get the
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
sources or binaries? When? (Absolute dates, e\&.g\&.,
\(lq2006\-01\-17\(rq, are preferred over the relative ones, e\&.g\&.,
\(lq2 days ago\(rq\&. If you are using
\m[blue]\fBGit\fR\m[]\&\s-2\u[61]\d\s+2, please supply the output of
\fBgit rev\-list \-\-max\-count=1 HEAD\fR)\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 5.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 5." 4.2
.\}
If you are reporting a build failure:
.sp
.RS 4
.ie n \{\
\h'-04' 1.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 1." 4.2
.\}
What is your compiler version?
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 2.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 2." 4.2
.\}
What is your
\m[blue]\fBGNU\fR\m[]\&\s-2\u[8]\d\s+2
\m[blue]\fBlibc\fR\m[]\&\s-2\u[62]\d\s+2
version (on
\m[blue]\fBGNU\fR\m[]\&\s-2\u[8]\d\s+2/\m[blue]\fB\fILinux\fR\fR\m[]\&\s-2\u[63]\d\s+2)?
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 3.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 3." 4.2
.\}
What is the version of each of the
DEPENDENCIES (file in the CLISP sources)?
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 4.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 4." 4.2
.\}
How did you run
configure (file in the CLISP sources)? We need the options you used as well as the values of the
\m[blue]\fBenvironment variable\fR\m[]\&\s-2\u[12]\d\s+2s
.RS 4
\fBCC\fR
.RE
.RS 4
\fBCFLAGS\fR
.RE
.RS 4
\fBCPPFLAGS\fR
.RE
.RS 4
\fBLDFLAFS\fR
.RE
.RS 4
\fBLD_LIBRARY_PATH\fR
.RE
\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 5.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 5." 4.2
.\}
Please attach all build logs\&.
.RE
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 6.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 6." 4.2
.\}
If you have a working
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2, please supply the output of
\fBclisp \-\-version\fR
.RE
.SH "PROJECTS"
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Enhance the compiler so that it can inline local functions\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Embed
\m[blue]\fB\fBCLISP\fR\fR\m[]\&\s-2\u[6]\d\s+2
in
\m[blue]\fBVIM\fR\m[]\&\s-2\u[64]\d\s+2\&.
.RE
.SH "AUTHORS"
.PP
\fBBruno Haible\fR <\&\m[blue]\fB\%http://www.haible.de/bruno/\fR\m[]\&>
.RS 4
The original author and long\-time maintainer\&.
.RE
.PP
\fBMichael Stoll\fR <\&\m[blue]\fB\%http://www.mathe2.uni-bayreuth.de/stoll/\fR\m[]\&>
.RS 4
The original author\&.
.RE
.PP
\fBSam Steingold\fR <\&\m[blue]\fB\%http://sds.podval.org/\fR\m[]\&>
.RS 4
Co\-maintainer since 1998\&.
.RE
.PP
\fBOthers\fR
.RS 4
See \fICOPYRIGHT (file in the CLISP sources) \fR for the list of other contributors and the license\&.
.RE
.SH "COPYRIGHT"
.br
Copyright \(co 1992-2024 Bruno Haible
.br
Copyright \(co 1998-2018 Sam Steingold
.br
.SH "NOTES"
.IP " 1." 4
\fBCommon Lisp\fR
.RS 4
\%https://common-lisp.net
.RE
.IP " 2." 4
read-eval-print loop
.RS 4
\%[set $man.base.url.for.relative.links]/sec_25-1-1
.RE
.IP " 3." 4
\fBREAD\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/fun_readcm_re_g-whitespace.html
.RE
.IP " 4." 4
\fBEVAL\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/fun_eval.html
.RE
.IP " 5." 4
\fBPRINT\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/fun_writecm_p_rintcm_princ.html
.RE
.IP " 6." 4
\fBCLISP\fR
.RS 4
\%http://clisp.org
.RE
.IP " 7." 4
\fBLISP-IMPLEMENTATION-VERSION\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/fun_lisp-impl_tion-version.html
.RE
.IP " 8." 4
GNU
.RS 4
\%https://www.gnu.org
.RE
.IP " 9." 4
GPL
.RS 4
\%https://www.gnu.org/copyleft/gpl.html
.RE
.IP "10." 4
SYMBOL-MACRO
.RS 4
\%[set $man.base.url.for.relative.links]/mac_define-symbol-macro
.RE
.IP "11." 4
\fBgzip\fR
.RS 4
\%http://www.gzip.org/
.RE
.IP "12." 4
environment variable
.RS 4
\%[set $man.base.url.for.relative.links]/basedefs/V1_chap08.html
.RE
.IP "13." 4
\fI*LOAD-VERBOSE*\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/var_stload-pr_ad-verbosest.html
.RE
.IP "14." 4
\fI*COMPILE-VERBOSE*\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/var_stcompile_le-verbosest.html
.RE
.IP "15." 4
\fBT\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/convar_t.html
.RE
.IP "16." 4
\fBNIL\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/convar_nil.html
.RE
.IP "17." 4
continuable
.RS 4
\%[set $man.base.url.for.relative.links]/clhs/glo
.RE
.IP "18." 4
ERROR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/contyp_error.html
.RE
.IP "19." 4
WARNING
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/contyp_warning.html
.RE
.IP "20." 4
\fBINVOKE-DEBUGGER\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/fun_invoke-debugger.html
.RE
.IP "21." 4
\fBABORT\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/fun_abortcm_c_cm_use-value.html
.RE
.IP "22." 4
\fBSIGNAL\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/fun_signal.html
.RE
.IP "23." 4
Emacs
.RS 4
\%https://www.gnu.org/software/emacs/
.RE
.IP "24." 4
SLIME
.RS 4
\%https://common-lisp.net/project/slime/
.RE
.IP "25." 4
ILISP
.RS 4
\%https://sourceforge.net/projects/ilisp/
.RE
.IP "26." 4
readline
.RS 4
\%http://tiswww.case.edu/php/chet/readline/readline.html
.RE
.IP "27." 4
\fIASCII\fR
.RS 4
\%https://en.wikipedia.org/wiki/ASCII
.RE
.IP "28." 4
\fI*PACKAGE*\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/var_stpackagest.html
.RE
.IP "29." 4
\fI*PRINT-CASE*\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/var_stprint-casest.html
.RE
.IP "30." 4
\(lqCOMMON-LISP-USER\(rq
.RS 4
\%[set $man.base.url.for.relative.links]/sec_11-1-2-2
.RE
.IP "31." 4
\fBLOAD\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/fun_load.html
.RE
.IP "32." 4
\fBCOMPILE\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/fun_compile.html
.RE
.IP "33." 4
\(lqrun
control\(rq (RC)
.RS 4
\%http://www.faqs.org/docs/artu/ch10s03.html
.RE
.IP "34." 4
\fBUSER-HOMEDIR-PATHNAME\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/fun_user-homedir-pathname.html
.RE
.IP "35." 4
\fBDISASSEMBLE\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/fun_disassemble.html
.RE
.IP "36." 4
\fI*STANDARD-OUTPUT*\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/var_stdebug-i_ace-outputst.html
.RE
.IP "37." 4
LIST
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/syscla_list.html
.RE
.IP "38." 4
ANSI
.RS 4
\%https://www.ansi.org/
.RE
.IP "39." 4
The American National Standards Institute
.IP "40." 4
ANSI
.RS 4
\%https://webstore.ansi.org
.RE
.IP "41." 4
SYMBOL
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/syscla_symbol.html
.RE
.IP "42." 4
\fBUNIX\fR
.RS 4
\%http://www.unix.org/online.html
.RE
.IP "43." 4
\fIWin32\fR
.RS 4
\%https://winehq.org/
.RE
.IP "44." 4
#'
.RS 4
\%[set $man.base.url.for.relative.links]/sec_2-4-8-2
.RE
.IP "45." 4
#P
.RS 4
\%[set $man.base.url.for.relative.links]/sec_2-4-8-14
.RE
.IP "46." 4
bash
.RS 4
\%https://www.gnu.org/software/bash/
.RE
.IP "47." 4
John Foderaro
.RS 4
\%http://www.franz.com/~jkf/
.RE
.IP "48." 4
\fBDEFVAR\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/mac_defparametercm_defvar.html
.RE
.IP "49." 4
\fBDEFUN\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/mac_defun.html
.RE
.IP "50." 4
\fBDEFMACRO\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/mac_defmacro.html
.RE
.IP "51." 4
\fBCOMPILE-FILE\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/fun_compile-file.html
.RE
.IP "52." 4
\fBC\fR
.RS 4
\%http://c-faq.com/
.RE
.IP "53." 4
\fBSHORT-SITE-NAME\fR
.RS 4
\%http://www.ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/fun_short-sit_ng-site-name.html
.RE
.IP "54." 4
\fBCMU CL\fR
.RS 4
\%https://www.cons.org/cmucl/
.RE
.IP "55." 4
\fBSBCL\fR
.RS 4
\%http://www.sbcl.org/
.RE
.IP "56." 4
SourceForge bug tracker
.RS 4
\%https://sourceforge.net/p/clisp/bugs/
.RE
.IP "57." 4
SourceForge
.RS 4
\%https://sourceforge.net
.RE
.IP "58." 4
OpenID
.RS 4
\%http://openid.net/
.RE
.IP "59." 4
English
.RS 4
\%http://www.catb.org/esr/faqs/hacker-howto.html#skills4
.RE
.IP "60." 4
\fBgdb\fR
.RS 4
\%https://www.sourceware.org/gdb/
.RE
.IP "61." 4
Git
.RS 4
\%https://git-scm.com/
.RE
.IP "62." 4
libc
.RS 4
\%https://www.gnu.org/software/libc/
.RE
.IP "63." 4
\fILinux\fR
.RS 4
\%https://www.kernel.org/
.RE
.IP "64." 4
VIM
.RS 4
\%https://www.vim.org
.RE
|