aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/compile.texi6
2 files changed, 9 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 40dff3c854a..416bb1eec98 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12013-03-24 Eli Zaretskii <eliz@gnu.org>
2
3 * compile.texi (Byte-Code Objects): Add index entry.
4 (Disassembly): Add cross-references.
5
12013-03-23 Eli Zaretskii <eliz@gnu.org> 62013-03-23 Eli Zaretskii <eliz@gnu.org>
2 7
3 * frames.texi (Size Parameters): More accurate description of the 8 * frames.texi (Size Parameters): More accurate description of the
diff --git a/doc/lispref/compile.texi b/doc/lispref/compile.texi
index d60ffebae70..522a88da61e 100644
--- a/doc/lispref/compile.texi
+++ b/doc/lispref/compile.texi
@@ -514,6 +514,7 @@ one you intend to suppress.
514@section Byte-Code Function Objects 514@section Byte-Code Function Objects
515@cindex compiled function 515@cindex compiled function
516@cindex byte-code function 516@cindex byte-code function
517@cindex byte-code object
517 518
518 Byte-compiled functions have a special data type: they are 519 Byte-compiled functions have a special data type: they are
519@dfn{byte-code function objects}. Whenever such an object appears as 520@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
606point is left before the output. 607point is left before the output.
607 608
608The argument @var{object} can be a function name, a lambda expression 609The argument @var{object} can be a function name, a lambda expression
609or a byte-code object. If it is a lambda expression, @code{disassemble} 610(@pxref{Lambda Expressions}), or a byte-code object (@pxref{Byte-Code
610compiles it and disassembles the resulting compiled code. 611Objects}). If it is a lambda expression, @code{disassemble} compiles
612it and disassembles the resulting compiled code.
611@end deffn 613@end deffn
612 614
613 Here are two examples of using the @code{disassemble} function. We 615 Here are two examples of using the @code{disassemble} function. We