]> code.delx.au - gnu-emacs/blobdiff - doc/misc/eieio.texi
Fix event race
[gnu-emacs] / doc / misc / eieio.texi
index 370d18cc567828f8ab19de57757b0cfcf97a8e0d..a06b45f665f2c43ca4a900e9437de4a2467b8306 100644 (file)
@@ -185,8 +185,8 @@ recommended to learn those from a textbook or tutorial first,
 especially if you only know OOP from languages like C++ or Java.  If
 on the other hand you are already familiar with CLOS, you should be
 aware that @eieio{} does not implement the full CLOS specification and
-also differs in some other aspects (@xref{Introduction}, and @ref{CLOS
-compatibility}).
+also differs in some other aspects which are mentioned below (also
+@pxref{CLOS compatibility}).
 
 @eieio{} supports the following features:
 
@@ -1544,19 +1544,11 @@ comes out upside-down.
 @node Class Values
 @chapter Class Values
 
-Details about any class or object can be retrieved using the function
-@code{eieio-describe-class}.  Interactively, type in the name of a
-class.  In a program, pass it a string with the name of a class, a
-class symbol, or an object.  The resulting buffer will display all
-slot names.  Additionally, all methods defined to have functionality
-on this class is displayed.
-
-You can also use the normal @code{describe-function} to retrieve
-information about a class.  If you call it on a constructor function,
-it will also display the class information.  If you call it on a
-generic function, all implementations of that generic function will be
-listet, together with links through which you can directly jump to the
-source.
+You can use the normal @code{describe-function} command to retrieve
+information about a class.  Running it on constructors will show a
+full description of the generated class.  If you call it on a generic
+function, all implementations of that generic function will be listed,
+together with links through which you can directly jump to the source.
 
 @node Default Superclass
 @chapter Default Superclass
@@ -1864,9 +1856,8 @@ loaded so the form @code{(setf (slot-value object slot) t)} should
 work.
 @end table
 
-CLOS supports the @code{describe} command, but @eieio{} only provides
-@code{eieio-describe-class}, and @code{eieio-describe-generic}.  Those
-are automatically called by @code{describe-function} when called on a
+CLOS supports the @code{describe} command, but @eieio{} provides
+support for using the standard @code{describe-function} command on a
 constructor or generic function.
 
 When creating a new class (@pxref{Building Classes}) there are several