summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2018-08-13 15:55:06 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2018-08-13 15:55:53 -0700
commitdc18a0917a5531ef3e1c9b4921bb4d8f317bc7a4 (patch)
tree4a35a01d833e315753236520b107ce126b884c86
parent76101698a770d389f22b547c331ec78473040c47 (diff)
downloademacs-dc18a0917a5531ef3e1c9b4921bb4d8f317bc7a4.tar.gz
Update doc strings for fixnum constants
* src/data.c (most-positive-fixnum, most-negative-fixnum): Update doc strings in the light of fixnums.
-rw-r--r--src/data.c4
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)
set_symbol_function (Qwholenump, XSYMBOL (Qnatnump)->u.s.function);
DEFVAR_LISP ("most-positive-fixnum", Vmost_positive_fixnum,
- doc: /* The largest value that is representable in a Lisp integer.
+ doc: /* The greatest integer that is represented efficiently.
This variable cannot be set; trying to do so will signal an error. */);
Vmost_positive_fixnum = make_fixnum (MOST_POSITIVE_FIXNUM);
make_symbol_constant (intern_c_string ("most-positive-fixnum"));
DEFVAR_LISP ("most-negative-fixnum", Vmost_negative_fixnum,
- doc: /* The smallest value that is representable in a Lisp integer.
+ doc: /* The least integer that is represented efficiently.
This variable cannot be set; trying to do so will signal an error. */);
Vmost_negative_fixnum = make_fixnum (MOST_NEGATIVE_FIXNUM);
make_symbol_constant (intern_c_string ("most-negative-fixnum"));