Minor corrections.
Thu Apr 9 14:44:58 CEST 2009 Tobias Rautenkranz <tobias@rautenkranz.ch>
* Minor corrections.
hunk ./introduction.docbook 29
+ <listitem><para>Does not recover well from errors
+ <footnote><para>Thus you often need to restart the Lisp process
+ during interactive developement.</para></footnote>.</para></listitem>
hunk ./introduction.docbook 56
- SBCL on Linux x86 in works; CMUCL and CLisp currently do not.
+ <ulink url="http://www.sbcl.org">SBCL</ulink> on Linux x86 in works;
+ <ulink url="http://www.cons.org/cmucl/">CMUCL</ulink>
+ <footnote><para>Compiles and loads, still some unit test failtures</para></footnote>
+ and [_$_]
+ <ulink url="http://clisp.cons.org/">CLISP</ulink> currently do not.
hunk ./kde.docbook 7
-Besiedes the <package>:kde</package> package there
+Besides the <package>:kde</package> package there
hunk ./kde.docbook 57
- <filename><ulink url="../kde.examples/src/mandelbrot/">src/mandelbrot/</ulink></filename>
+ <filename><ulink url="http://tobias.rautenkranz.ch/darcsweb/darcsweb.cgi?r=cl-smoke/kde.examples;a=tree;f=/src/mandelbrot">src/mandelbrot/</ulink></filename>
hunk ./qt.docbook 7
-Besieds the <package>:qt</package> there are these packages: with
+Besides the <package>:qt</package> there are these packages: with
hunk ./qt.docbook 21
-which provied bindings for their Qt module.
+which provide bindings for their Qt module.
hunk ./smoke.docbook 94
-C++ classes are automaticly deleted when their lisp object gets garbage collected;
+C++ classes are automatically deleted when their lisp object gets garbage collected;
hunk ./smoke.docbook 99
+<para>
+Not that an instance may depend on an other one.
+It is a bad idea to do something like this:
+<programlisting>
+(defvar *meta* (cxx:meta-object (make-instance 'qt:object)))
+</programlisting>
+<code>*meta*</code> references a <classname>qt:meta-class</classname>
+that can become invalid at any time, since the <classname>qt:object</classname> instance can
+be garbage collected, and then the <code>QMetaObject</code> instance is deleted along
+with the <code>QObject</code>.
+</para>