• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

docs/H03-May-2022-

CHANGELOGH A D10-Jan-20212.7 KiB12294

LICENSEH A D10-Jan-20211.4 KiB2722

READMEH A D10-Jan-20211.2 KiB3925

cl-fad.asdH A D10-Jan-20212.2 KiB5142

cl-fad.systemH A D10-Jan-20212.1 KiB4939

corman.lispH A D10-Jan-20213.3 KiB8751

fad.lispH A D10-Jan-202125 KiB572473

fad.test.lispH A D10-Jan-202110.3 KiB213160

load.lispH A D10-Jan-20212.7 KiB6328

openmcl.lispH A D10-Jan-20212.8 KiB7331

packages.lispH A D10-Jan-20213 KiB8851

packages.test.lispH A D10-Jan-2021169 75

path.lispH A D10-Jan-20211,006 3320

temporary-files.lispH A D10-Jan-20217.6 KiB174149

temporary-files.test.lispH A D10-Jan-20212.1 KiB5038

README

1Complete documentation for CL-FAD can be found in the 'docs'
2directory or at <https://edicl.github.io/cl-fad/>.
3
4CL-FAD also supports Nikodemus Siivola's HYPERDOC, see
5<http://common-lisp.net/project/hyperdoc/> and
6<http://www.cliki.net/hyperdoc>.
7
81. Installation
9
101.1. Probably the easiest way is
11
12       (load "/path/to/cl-fad/load.lisp")
13
14     This should compile and load CL-FAD on most Common Lisp
15     implementations.
16
171.2. With MK:DEFSYSTEM you can make a symbolic link from
18     'cl-fad.system' and 'cl-fad-test.system' to your central registry
19     (which by default is in '/usr/local/lisp/Registry/') and then issue
20     the command
21
22       (mk:compile-system "cl-fad")
23
24     Note that this relies on TRUENAME returning the original file a
25     symbolic link is pointing to. This will only work with AllegroCL
26     6.2 if you've applied all patches with (SYS:UPDATE-ALLEGRO).
27
281.3. You can also use ASDF instead of MK:DEFSYSTEM in a similar way
29     (use the .asd files instead of the .system files).
30
311.4. Via QuickLisp:
32
33	   (ql:quickload :cl-fad)
34
352. Test
36
37CL-FAD comes with a small test suite.  To start it just load the file
38"test.lisp" and evaluate (CL-FAD-TEST:TEST).
39