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
|
This is CLISP, a Common Lisp implementation.
What is LISP?
-------------
LISP is a programming language. It was invented by J. McCarthy in 1959.
There have been many dialects of it, but nowadays LISP has been standardized
and wide-spread due to the industrial standard COMMON LISP. There are
applications in the domains of symbolic knowledge processing (AI), numerical
mathematics (MACLISP yielded numerical code as good as FORTRAN), and
widely used programs like editors (EMACS) and CAD (AUTOCAD).
There is an introduction to the language:
Sheila Hughes: Lisp. Pitman Publishing Limited, London 1986.
107 pages.
After a while wou will need the standard text containing the language
definition:
Guy L. Steele Jr.: Common Lisp - The Language. Digital Press.
1. edition 1984, 465 pages.
2. edition 1990, 1032 pages.
LISP is run in an interactive environment. You input forms, and they will be
evaluated at once. Thus you can inspect variables, call functions with given
arguments or define your own functions.
Contents:
---------
It consists of the following files:
lisp.exe main program
lispinit.mem memory image needed for startup
clisp.1 manual page in Unix man format
clisp.man manual page
clisp.dvi manual page in dvi format
impnotes.txt implementation notes
emx-user.doc emx applications user's guide
emx.dll OS/2 dynamic link library containing emx
emxlibc.dll OS/2 dynamic link library containing the emx libc
README this text
SUMMARY short description of CLISP
ANNOUNCE announcement
COPYRIGHT copyright notice
GNU-GPL free software license
config.lsp site-dependent configuration
and - to your convenience, if you like reading source -
*.lsp the source of lispinit.mem
*.fas the same files, already compiled
Hardware requirements:
----------------------
This OS/2 version of CLISP requires an 80386 (SX or DX) or an 80486 CPU,
running OS/2 2.0.
Installation:
-------------
First of all, install emx.dll and emxlibc.dll in a separate directory,
say c:\emx\dll. Add c:\emx\dll (insert the correct drive letter)
to the LIBPATH statement in your config.sys file. Reboot your computer
to enable the new LIBPATH statement and the new environment variables.
Edit the contents of config.lsp appropriately for your site,
especially the definitions of short-site-name and long-site-name.
You may also want to edit the time zone definition in defs1.lsp.
Then start
lisp.exe -M lispinit.mem
When the LISP prompt
> _
appears, type
(compile-file "config")
(load "config")
and - in case you modified defs1.lsp -
(compile-file "defs1")
(load "defs1")
and then
(saveinitmem)
to overwrite the file lispinit.mem with your configuration. Then
(exit)
Then create a directory, and put the executable and the memory image there.
Assuming D:\LIB\LISP :
mkdir d:\lib\lisp
copy lisp.exe d:\lib\lisp
copy lispinit.mem d:\lib\lisp
And create a batch file that starts lisp:
copy con c:\bat\clisp.bat
d:\lib\lisp\lisp.exe -M d:\lib\lisp\lispinit.mem %1 %2 %3 %4 %5 %6 %7 %8 %9
[Ctrl-Z]
The editor:
-----------
Normally CLISP's ED function calls the editor you specified in config.lsp.
However, after you did
(load "editor")
it invokes a builtin screen editor. It is a bit Emacs-like: you can evaluate
lisp expressions from within the editor, and the result is pasted into the
editor buffer. Type Alt-H to see the full set of commands.
When you encounter problems:
----------------------------
If clisp doesn't start up at all, check EMX-USER.DOC. lisp.exe is an EMX
application, so everything mentioned there applies to lisp.exe.
After errors, you are in the debugger:
1. Break> _
You can evaluate forms, as usual. Furthermore:
Help
calles help
Abort or
Unwind
climbs up to next higher input loop
(show-stack)
shows the contents of the stack, helpful for debugging
And you can look at the values of the variables of the functions where the
error occurred.
On bigger problems, e.g. register dumps, please send a description of the error
and how to produce it reliably to the authors.
Mailing List:
-------------
There is a mailing list for users of CLISP. It is the proper forum for
questions about CLISP, installation problems, bug reports, application
packages etc.
For information about the list and how to subscribe it, send mail to
listserv@ma2s2.mathematik.uni-karlsruhe.de, with the two lines
help
information clisp-list
in the message body.
Acknowledgement:
----------------
If you find CLISP fast and bug-free and you like using it, a gift of $25
(or any amount you like) will be appreciated. Most DOS software costs
something, so you will probably already be used to paying.
If not, feel free to send us suggestions for improvement. Or grab the
source of CLISP, improve it yourself and send us your patches.
We are indebted to
* Guy L. Steele and many others for the Common Lisp specification.
* Richard Stallman's GNU project for GCC and the readline library.
* Eberhard Mattes for EMX.
Authors:
--------
Bruno Haible Michael Stoll
Augartenstrae 40 Gallierweg 39
D - W 7500 Karlsruhe 1 D - W 5300 Bonn 1
Germany Germany
Email: haible@ma2s2.mathematik.uni-karlsruhe.de
|