aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/numbers.texi14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/lispref/numbers.texi b/doc/lispref/numbers.texi
index fbdd83fa86e..cae8babcb40 100644
--- a/doc/lispref/numbers.texi
+++ b/doc/lispref/numbers.texi
@@ -191,19 +191,19 @@ on 64-bit platforms.
191@cindex integer range 191@cindex integer range
192@cindex number of bignum bits, limit on 192@cindex number of bignum bits, limit on
193@defvar integer-width 193@defvar integer-width
194The value of this variable is a nonnegative integer that is an upper 194The value of this variable is a nonnegative integer that controls
195bound on the number of bits in a bignum. Integers outside the fixnum 195whether Emacs signals a range error when a large integer would be
196range are limited to absolute values less than 196calculated. Integers with absolute values less than
197@ifnottex 197@ifnottex
1982**@var{n}, 1982**@var{n},
199@end ifnottex 199@end ifnottex
200@tex 200@tex
201@math{2^{n}}, 201@math{2^{n}},
202@end tex 202@end tex
203where @var{n} is this variable's value. Attempts to create bignums outside 203where @var{n} is this variable's value, do not signal a range error.
204this range signal a range error. Setting this variable 204Attempts to create larger integers typically signal a range error,
205to zero disables creation of bignums; setting it to a large number can 205although there might be no signal if a larger integer can be created cheaply.
206cause Emacs to consume large quantities of memory if a computation 206Setting this variable to a large number can be costly if a computation
207creates huge integers. 207creates huge integers.
208@end defvar 208@end defvar
209 209