diff options
| author | Eli Zaretskii | 2018-08-21 17:56:47 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2018-08-21 17:56:47 +0300 |
| commit | 43b1bf355a8a3ec4c6175b0e76007b8bf3a32eca (patch) | |
| tree | 183533b0a929f36604a651defeec3ed59fffd9c6 /etc | |
| parent | d6a497dd887cdbb35c5b4e2929e83962ba708159 (diff) | |
| download | emacs-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/NEWS | 10 |
1 files changed, 5 insertions, 5 deletions
| @@ -871,11 +871,11 @@ bignums. However, note that unlike fixnums, bignums will not compare | |||
| 871 | equal with 'eq', you must use 'eql' instead. (Numerical comparison | 871 | equal with 'eq', you must use 'eql' instead. (Numerical comparison |
| 872 | with '=' works on both, of course.) | 872 | with '=' works on both, of course.) |
| 873 | 873 | ||
| 874 | +++ | 874 | Since large bignums consume a lot of memory, Emacs limits the size of |
| 875 | ** New variable 'integer-width'. | 875 | the largest bignum a Lisp program is allowed to create. The |
| 876 | It is a nonnegative integer specifying the maximum number of bits | 876 | nonnegative value of the new variable 'integer-width' specifies the |
| 877 | allowed in a bignum. Integer overflow occurs if this limit is | 877 | maximum number of bits allowed in a bignum. Emacs signals an integer |
| 878 | exceeded. | 878 | overflow 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 | ||