(M-08360): Separate C3-407E; add mappings for U-0002F87E.
[chise/xemacs-chise.git] / info / lispref.info-2
index 0b003f1..a3c79d2 100644 (file)
@@ -1,5 +1,5 @@
-This is Info file ../info/lispref.info, produced by Makeinfo version
-1.68 from the input file lispref/lispref.texi.
+This is ../info/lispref.info, produced by makeinfo version 4.0b from
+lispref/lispref.texi.
 
 INFO-DIR-SECTION XEmacs Editor
 START-INFO-DIR-ENTRY
@@ -56,7 +56,6 @@ GNU GENERAL PUBLIC LICENSE
 **************************
 
                          Version 2, June 1991
-
      Copyright (C) 1989, 1991 Free Software Foundation, Inc.
      675 Mass Ave, Cambridge, MA 02139, USA
      
@@ -115,7 +114,6 @@ patent must be licensed for everyone's free use or not licensed at all.
 modification follow.
 
     TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
   0. This License applies to any program or other work which contains a
      notice placed by the copyright holder saying it may be distributed
      under the terms of this General Public License.  The "Program",
@@ -460,7 +458,7 @@ but not flawless.  There are a few topics that are not covered, either
 because we consider them secondary (such as most of the individual
 modes) or because they are yet to be written.  Because we are not able
 to deal with them completely, we have left out several parts
-intentionally.  This includes most information about usage on VMS.
+intentionally.
 
    The manual should be fully correct in what it does cover, and it is
 therefore open to criticism on anything it says--from specific examples
@@ -667,7 +665,7 @@ and "after" versions of the text.  These examples show the contents of
 the buffer in question between two lines of dashes containing the buffer
 name.  In addition, `-!-' indicates the location of point.  (The symbol
 for point, of course, is not part of the text in the buffer; it
-indicates the place *between* two characters where point is located.)
+indicates the place _between_ two characters where point is located.)
 
      ---------- Buffer: foo ----------
      This is the -!-contents of foo.
@@ -723,7 +721,7 @@ Do not write `&rest' when you call the function.
 
    Here is a description of an imaginary function `foo':
 
- - Function: foo INTEGER1 &optional INTEGER2 &rest INTEGERS
+ - Function: foo integer1 &optional integer2 &rest integers
      The function `foo' subtracts INTEGER1 from INTEGER2, then adds all
      the rest of the arguments to the result.  If INTEGER2 is not
      supplied, then the number 19 is used by default.
@@ -939,7 +937,7 @@ signals the error `invalid-read-syntax' whenever it encounters `#<'.
 
    When you evaluate an expression interactively, the Lisp interpreter
 first reads the textual representation of it, producing a Lisp object,
-and then evaluates that object (*note Evaluation::.).  However,
+and then evaluates that object (*note Evaluation::).  However,
 evaluation and reading are separate activities.  Reading returns the
 Lisp object represented by the text that is read; the object may or may
 not be evaluated later.  *Note Input Functions::, for a description of
@@ -962,7 +960,7 @@ system.
    The `#@COUNT' construct, which skips the next COUNT characters, is
 useful for program-generated comments containing binary data.  The
 XEmacs Lisp byte compiler uses this in its output files (*note Byte
-Compilation::.).  It isn't meant for source files, however.
+Compilation::).  It isn't meant for source files, however.
 
    *Note Comment Tips::, for conventions for formatting comments.
 
@@ -1138,7 +1136,7 @@ Integer Type
 machines, in particular 64-bit machines such as the DEC Alpha, may
 provide a wider range.)  It is important to note that the XEmacs Lisp
 arithmetic functions do not check for overflow.  Thus `(1+ 134217727)'
-is -134217728 on most machines. (However, you *will* get an error if
+is -134217728 on most machines. (However, you _will_ get an error if
 you attempt to read an out-of-range number using the Lisp reader.)
 
    The read syntax for integers is a sequence of (base ten) digits with