]> git.eshelyaron.com Git - emacs.git/commitdiff
Update doc strings for fixnum constants
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 13 Aug 2018 22:55:06 +0000 (15:55 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 13 Aug 2018 22:55:53 +0000 (15:55 -0700)
* src/data.c (most-positive-fixnum, most-negative-fixnum):
Update doc strings in the light of fixnums.

src/data.c

index 7b8dd45c94881b1a2c088a2c8aa30221e308cfa9..a1215b9d6bfb19e7194c2d458978d95dfd9e9159 100644 (file)
@@ -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"));