diff man/lispref/compile.texi @ 217:d44af0c54775 r20-4b7

Import from CVS: tag r20-4b7
author cvs
date Mon, 13 Aug 2007 10:08:34 +0200
parents 376386a54a3c
children 262b8bb4a523
line wrap: on
line diff
--- a/man/lispref/compile.texi	Mon Aug 13 10:07:42 2007 +0200
+++ b/man/lispref/compile.texi	Mon Aug 13 10:08:34 2007 +0200
@@ -20,16 +20,13 @@
 transportable from machine to machine without recompilation.  It is not,
 however, as fast as true compiled code.
 
-  In general, any version of Emacs can run byte-compiled code produced
+In general, any version of Emacs can run byte-compiled code produced
 by recent earlier versions of Emacs, but the reverse is not true.  In
-particular, if you compile a program with Emacs 19.29, the compiled
-code does not run in earlier versions.
+particular, if you compile a program with XEmacs 20, the compiled code
+may not run in earlier versions.
 @iftex
 @xref{Docs and Compilation}.
 @end iftex
-Files compiled in versions before 19.29 may not work in 19.29 if they
-contain character constants with modifier bits, because the bits were
-renumbered in Emacs 19.29.
 
   @xref{Compilation Errors}, for how to investigate errors occurring in
 byte compilation.
@@ -70,7 +67,7 @@
 
 @group
 (byte-compile 'silly-loop)
-@result{} @r{[Compiled code not shown]}
+@result{} #<compiled-function ...>
 @end group
 
 @group
@@ -138,10 +135,10 @@
 @group
 (byte-compile 'factorial)
      @result{}
-#<byte-code (integer)
- "ÁU«‚Á‡ÂS!_‡"
- [integer 1 factorial]
- 3 "Compute factorial of INTEGER.">
+#<compiled-function (integer)
+  "ÁU«‚Á‡ÂS!_‡"
+  [integer 1 factorial]
+  3 "Compute factorial of INTEGER.">
 @end group
 @end example