Update of /project/cl-store/cvsroot/cl-store/doc
In directory common-lisp.net:/tmp/cvs-serv7159/doc
Modified Files:
cl-store.texi
Log Message:
Changelog 2004-11-10
Date: Wed Nov 10 11:43:27 2004
Author: sross
Index: cl-store/doc/cl-store.texi
diff -u cl-store/doc/cl-store.texi:1.1 cl-store/doc/cl-store.texi:1.2
--- cl-store/doc/cl-store.texi:1.1 Mon Nov 1 15:49:03 2004
+++ cl-store/doc/cl-store.texi Wed Nov 10 11:43:26 2004
@@ -108,6 +108,7 @@
@item CLOS Classes
@item Structure Instances
@item Functions (where function-lambda-expression returns a symbol as a function name)
+@item Generic Functions (stores generic-function-name)
@end itemize
@section Supported Implementations
@@ -126,10 +127,8 @@
CL-STORE uses @uref{http://cliki.net/asdf,,asdf} as it's system definition tool and
is required whenever you load the package.
-You will need to download it, or if you have @uref{http://sbcl.org,,sbcl} try
-@lisp
-(require 'asdf)
-@end lisp
+You will need to download it, or if you have @uref{http://sbcl.org,,sbcl}
+@lisp (require 'asdf) @end lisp
@section Downloading
@@ -137,9 +136,7 @@
@item ASDF-INSTALL
CL-STORE is available through asdf-install. If you are new
to Common Lisp this is the suggested download method. With asdf-install loaded run
-@lisp
-(asdf-install:install :cl-store)
-@end lisp
+@lisp (asdf-install:install :cl-store) @end lisp
This will download and install the package for you. Asdf-install will try to verify
that the package signature is correct and that you trust the author. If the key is
not found or the trust level is not sufficient a continuable error will be signalled.
@@ -163,9 +160,7 @@
@section Installing
Once downloaded and symlinked you can load CL-STORE at anytime using
-@lisp
-(asdf:oos 'asdf:load-op :cl-store)
-@end lisp
+@lisp (asdf:oos 'asdf:load-op :cl-store) @end lisp
This will compile CL-STORE the first time it is loaded.
@section Testing
@@ -711,9 +706,8 @@
@itemize @bullet
@item CLISP, OpenMCL, Allegro CL cannot store structure instances.
@item Structure definitions aren't supported.
-@item Anything remotely funcallable isn't supported.
@item MOP classes aren't supported.
-@item Due to the fact that function's aren't supported CLOS Classes initfunction slot cannot be serialized.
+@item Due to the fact that function's aren't fully supported CLOS Classes initfunction slot cannot be serialized.
@end itemize
@node Credits