diff options
| author | Paul Eggert | 2018-08-13 15:55:06 -0700 |
|---|---|---|
| committer | Paul Eggert | 2018-08-13 15:55:53 -0700 |
| commit | dc18a0917a5531ef3e1c9b4921bb4d8f317bc7a4 (patch) | |
| tree | 4a35a01d833e315753236520b107ce126b884c86 /src | |
| parent | 76101698a770d389f22b547c331ec78473040c47 (diff) | |
| download | emacs-dc18a0917a5531ef3e1c9b4921bb4d8f317bc7a4.tar.gz emacs-dc18a0917a5531ef3e1c9b4921bb4d8f317bc7a4.zip | |
Update doc strings for fixnum constants
* src/data.c (most-positive-fixnum, most-negative-fixnum):
Update doc strings in the light of fixnums.
Diffstat (limited to 'src')
| -rw-r--r-- | src/data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c index 7b8dd45c948..a1215b9d6bf 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -4260,13 +4260,13 @@ syms_of_data (void) | |||
| 4260 | set_symbol_function (Qwholenump, XSYMBOL (Qnatnump)->u.s.function); | 4260 | set_symbol_function (Qwholenump, XSYMBOL (Qnatnump)->u.s.function); |
| 4261 | 4261 | ||
| 4262 | DEFVAR_LISP ("most-positive-fixnum", Vmost_positive_fixnum, | 4262 | DEFVAR_LISP ("most-positive-fixnum", Vmost_positive_fixnum, |
| 4263 | doc: /* The largest value that is representable in a Lisp integer. | 4263 | doc: /* The greatest integer that is represented efficiently. |
| 4264 | This variable cannot be set; trying to do so will signal an error. */); | 4264 | This variable cannot be set; trying to do so will signal an error. */); |
| 4265 | Vmost_positive_fixnum = make_fixnum (MOST_POSITIVE_FIXNUM); | 4265 | Vmost_positive_fixnum = make_fixnum (MOST_POSITIVE_FIXNUM); |
| 4266 | make_symbol_constant (intern_c_string ("most-positive-fixnum")); | 4266 | make_symbol_constant (intern_c_string ("most-positive-fixnum")); |
| 4267 | 4267 | ||
| 4268 | DEFVAR_LISP ("most-negative-fixnum", Vmost_negative_fixnum, | 4268 | DEFVAR_LISP ("most-negative-fixnum", Vmost_negative_fixnum, |
| 4269 | doc: /* The smallest value that is representable in a Lisp integer. | 4269 | doc: /* The least integer that is represented efficiently. |
| 4270 | This variable cannot be set; trying to do so will signal an error. */); | 4270 | This variable cannot be set; trying to do so will signal an error. */); |
| 4271 | Vmost_negative_fixnum = make_fixnum (MOST_NEGATIVE_FIXNUM); | 4271 | Vmost_negative_fixnum = make_fixnum (MOST_NEGATIVE_FIXNUM); |
| 4272 | make_symbol_constant (intern_c_string ("most-negative-fixnum")); | 4272 | make_symbol_constant (intern_c_string ("most-negative-fixnum")); |