Update of /cvsroot/sbcl/sbcl/doc/manual
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28047/doc/manual
Modified Files:
docstrings.lisp sbcl.texinfo
Log Message:
0.8.9.35:
Slightly MORE DOCUMENTATION
... minimal, unpolished sb-md5 and sb-rotate-byte documentation
... whitespace fixup in sbcl.texinfo
... add a couple of index terms to sb-aclrepl.texinfo
(It Would Be Nice to be able to include contrib docstrings;
it ought to be possible, but possibly we need to zap the
asdf-install 'binary' and require (ha ha) that REQUIRE should
work from within the build tree [with SBCL_HOME set appropriately]
on _all_ contribs)
Index: docstrings.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/doc/manual/docstrings.lisp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- docstrings.lisp 9 Apr 2004 16:04:49 -0000 1.4
+++ docstrings.lisp 11 Apr 2004 21:10:53 -0000 1.5
@@ -116,7 +116,7 @@
(package "package")
(setf "setf-expander")
(structure "struct")
- (type (let ((class (ignore-errors (find-class symbol))))
+ (type (let ((class (find-class symbol nil))))
(etypecase class
(structure-class "struct")
(standard-class "class")
@@ -139,7 +139,7 @@
(package "@defvr Package")
(setf "@deffn {Setf Expander}")
(structure "@deftp Structure")
- (type (let ((class (ignore-errors (find-class symbol))))
+ (type (let ((class (find-class symbol nil))))
(etypecase class
(structure-class "@deftp Structure")
(standard-class "@deftp Class")
Index: sbcl.texinfo
===================================================================
RCS file: /cvsroot/sbcl/sbcl/doc/manual/sbcl.texinfo,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- sbcl.texinfo 9 Apr 2004 20:54:24 -0000 1.5
+++ sbcl.texinfo 11 Apr 2004 21:10:53 -0000 1.6
@@ -59,16 +59,16 @@
@insertcopying
@menu
-* Introduction::
-* The Compiler::
-* The Debugger::
-* Efficiency::
-* Beyond The ANSI Standard::
+* Introduction::
+* The Compiler::
+* The Debugger::
+* Efficiency::
+* Beyond The ANSI Standard::
* The Foreign Function Interface::
-* Contributed Modules::
+* Contributed Modules::
* Concept Index::
-* Function Index::
-* Variable Index::
+* Function Index::
+* Variable Index::
* Colophon::
@end menu
|