CLISP(1) CLISP(1) NNAAMMEE clisp - Common Lisp language interpreter and compiler SSYYNNOOPPSSIISS cclliisspp [ --hh ] [ --mm memsize ] [ --MM memfile ] [ --qq ] [ --ii initfile ... ] [ --cc [ --ll ] lispfile ... ] [ --xx expres- sion ] DDEESSCCRRIIPPTTIIOONN Invokes the common lisp interpreter and compiler. Invoked without arguments, executes a read-eval-print loop, in which expressions are in turn read from standard input, evaluated by the lisp interpreter, and their results out- put to standard output. Invoked with --cc, the specified lisp files are compiled to a bytecode that can be executed more efficiently. OOPPTTIIOONNSS --hh Displays a help message on how to use cclliisspp. --mm memsize Sets the amount of memory cclliisspp tries to grab on startup. The amount may be given as nnnnnnn (mea- sured in bytes), nnnnKK or nnnnKKBB (measured in kilo- bytes) or nMM or nMMBB (measured in megabytes). Default is 2 megabytes. The argument is con- strained between 100 KB and 16 MB. -- This version of clisp allocates memory dynamically. memsize is essentially ignored. --MM memfile Specifies the initial memory image. This must be a memory dump produced by the saveinitmem function. This option is normally already set by the shell script //uussrr//llooccaall//bbiinn//cclliisspp. --qq Quiet: cclliisspp displays no banner at startup and no good-bye message when quitting. --ii initfile ... Specifies initialization files to be loaded at startup. These should be lisp files (source or com- piled). --cc lispfile ... Compiles the specified lispfiles to bytecode. The compiled files can then be loaded instead of the sources to gain efficiency. --ll A bytecode listing of the files being compiled will be produced. Useful only for debugging purposes. --xx expressions Executes a series of arbitrary expressions instead 17 March 1993 1 CLISP(1) CLISP(1) of a read-eval-print loop. The values of the expressions will be output to standard output. Due to the argument processing done by the shell, the expressions must be enclosed in single quotes, and double quotes and backslashes must be preceded by backslashes. RREEFFEERREENNCCEE The language implemented conforms to Guy L. Steele Jr.: Common Lisp - The Language. Digital Press. 1st edition 1984, 465 pages. ("CLtL1" for short) and to the older parts of Guy L. Steele Jr.: Common Lisp - The Language. Digital Press. 2nd edition 1990, 1032 pages. ("CLtL2" for short) UUSSEE hheellpp to get some on-line help. ((aapprrooppooss name)) lists the symbols relating to name. ((eexxiitt)) or ((qquuiitt)) or ((bbyyee)) to quit cclliisspp. EOF (Ctrl-D) to leave the current read-eval-print loop. arrow keys for editing and viewing the input history. Tab key to complete the symbol's name you are just typing. FFIILLEESS clisp startup script lisp.run main executable lispinit.mem initial memory image config.lsp site-dependent configuration *.lsp lisp source *.fas lisp code, compiled by cclliisspp *.lib lisp source library information, generated and used by the cclliisspp compiler 17 March 1993 2 CLISP(1) CLISP(1) EENNVVIIRROONNMMEENNTT HHOOMMEE and UUSSEERR are used for determining the value of the function user-homedir-pathname. (Unix implementation only.) SSHHEELLLL (Unix implementation only) is used to find the command interpreter called by the function shell. TTEERRMM determines the screen size recognized by the pretty printer. This environment variable is also manda- tory for the built-in screen editor. SSEEEE AALLSSOO cmulisp(1), emacs(1). BBUUGGSS The function inspect is not implemented. Only very few extensions from CLtL2 are supported. No on-line documentation beyond apropos and describe is available. PPRROOJJEECCTTSS Writing on-line documentation. Building a foreign function interface (ability to call C code directly). Write inspect. Enhance the compiler such that it can inline local func- tions. Specify a portable set of window and graphics operations. AAUUTTHHOORRSS Bruno Haible and Michael Stoll. 17 March 1993 3