aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorEli Zaretskii2018-08-21 17:56:47 +0300
committerEli Zaretskii2018-08-21 17:56:47 +0300
commit43b1bf355a8a3ec4c6175b0e76007b8bf3a32eca (patch)
tree183533b0a929f36604a651defeec3ed59fffd9c6 /etc
parentd6a497dd887cdbb35c5b4e2929e83962ba708159 (diff)
downloademacs-43b1bf355a8a3ec4c6175b0e76007b8bf3a32eca.tar.gz
emacs-43b1bf355a8a3ec4c6175b0e76007b8bf3a32eca.zip
Improve documentation of 'integer-width'
* etc/NEWS: Minor rewording of the recent addition. * doc/lispref/numbers.texi (Bitwise Operations): Use @dots{} for ellipsis. Improve indexing.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS10
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 9a741644213..892797b2dde 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -871,11 +871,11 @@ bignums. However, note that unlike fixnums, bignums will not compare
871equal with 'eq', you must use 'eql' instead. (Numerical comparison 871equal with 'eq', you must use 'eql' instead. (Numerical comparison
872with '=' works on both, of course.) 872with '=' works on both, of course.)
873 873
874+++ 874Since large bignums consume a lot of memory, Emacs limits the size of
875** New variable 'integer-width'. 875the largest bignum a Lisp program is allowed to create. The
876It is a nonnegative integer specifying the maximum number of bits 876nonnegative value of the new variable 'integer-width' specifies the
877allowed in a bignum. Integer overflow occurs if this limit is 877maximum number of bits allowed in a bignum. Emacs signals an integer
878exceeded. 878overflow error if this limit is exceeded.
879 879
880** define-minor-mode automatically documents the meaning of ARG 880** define-minor-mode automatically documents the meaning of ARG
881 881