Minor improvements in ELisp manual.
authorEli Zaretskii <eliz@gnu.org>
Sun, 24 Mar 2013 17:55:06 +0000 (19:55 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sun, 24 Mar 2013 17:55:06 +0000 (19:55 +0200)
 doc/lispref/compile.texi (Byte-Code Objects): Add index entry.
 (Disassembly): Add cross-references.

doc/lispref/ChangeLog
doc/lispref/compile.texi

index 40dff3c..416bb1e 100644 (file)
@@ -1,3 +1,8 @@
+2013-03-24  Eli Zaretskii  <eliz@gnu.org>
+
+       * compile.texi (Byte-Code Objects): Add index entry.
+       (Disassembly): Add cross-references.
+
 2013-03-23  Eli Zaretskii  <eliz@gnu.org>
 
        * frames.texi (Size Parameters): More accurate description of the
index d60ffeb..522a88d 100644 (file)
@@ -514,6 +514,7 @@ one you intend to suppress.
 @section Byte-Code Function Objects
 @cindex compiled function
 @cindex byte-code function
+@cindex byte-code object
 
   Byte-compiled functions have a special data type: they are
 @dfn{byte-code function objects}.  Whenever such an object appears as
@@ -606,8 +607,9 @@ name of an existing buffer.  Then the output goes there, at point, and
 point is left before the output.
 
 The argument @var{object} can be a function name, a lambda expression
-or a byte-code object.  If it is a lambda expression, @code{disassemble}
-compiles it and disassembles the resulting compiled code.
+(@pxref{Lambda Expressions}), or a byte-code object (@pxref{Byte-Code
+Objects}).  If it is a lambda expression, @code{disassemble} compiles
+it and disassembles the resulting compiled code.
 @end deffn
 
   Here are two examples of using the @code{disassemble} function.  We