summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2020-02-17 13:54:07 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2020-02-17 13:54:36 -0800
commita2c4eeeecde93961e81ca6beeefa649955bda881 (patch)
treef9fd78eabd6b2367c29288a9572b225444a5560c
parent4e5ac4b0c611571d3e7930a27693a3fe03be1f40 (diff)
downloademacs-a2c4eeeecde93961e81ca6beeefa649955bda881.tar.gz
Clarify when fixnums are used.
* doc/lispref/numbers.texi (Integer Basics): Clarify. Based on a suggestion by Noam Postavsky (Bug#39557#32).
-rw-r--r--doc/lispref/numbers.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/numbers.texi b/doc/lispref/numbers.texi
index 4b9fdf24206..4002b36ce50 100644
--- a/doc/lispref/numbers.texi
+++ b/doc/lispref/numbers.texi
@@ -132,8 +132,8 @@ memory, by machine characteristics such as the size of the word used
to represent a bignum's exponent, and by the @code{integer-width}
variable. These limits are typically much more generous than the
limits for fixnums. A bignum is never numerically equal to a fixnum;
-if Emacs computes an integer in fixnum range, it represents the
-integer as a fixnum, not a bignum.
+Emacs always represents an integer in fixnum range as a fixnum, not a
+bignum.
The range of values for a fixnum depends on the machine. The
minimum range is @minus{}536,870,912 to 536,870,911 (30 bits; i.e.,