aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index 7ca1892f64a..3c9152049b7 100644
--- a/src/data.c
+++ b/src/data.c
@@ -3896,12 +3896,14 @@ syms_of_data (void)
3896 set_symbol_function (Qwholenump, XSYMBOL (Qnatnump)->u.s.function); 3896 set_symbol_function (Qwholenump, XSYMBOL (Qnatnump)->u.s.function);
3897 3897
3898 DEFVAR_LISP ("most-positive-fixnum", Vmost_positive_fixnum, 3898 DEFVAR_LISP ("most-positive-fixnum", Vmost_positive_fixnum,
3899 doc: /* The largest value that is representable in a Lisp integer. */); 3899 doc: /* The largest value that is representable in a Lisp integer.
3900This variable cannot be set; trying to do so will signal an error. */);
3900 Vmost_positive_fixnum = make_number (MOST_POSITIVE_FIXNUM); 3901 Vmost_positive_fixnum = make_number (MOST_POSITIVE_FIXNUM);
3901 make_symbol_constant (intern_c_string ("most-positive-fixnum")); 3902 make_symbol_constant (intern_c_string ("most-positive-fixnum"));
3902 3903
3903 DEFVAR_LISP ("most-negative-fixnum", Vmost_negative_fixnum, 3904 DEFVAR_LISP ("most-negative-fixnum", Vmost_negative_fixnum,
3904 doc: /* The smallest value that is representable in a Lisp integer. */); 3905 doc: /* The smallest value that is representable in a Lisp integer.
3906This variable cannot be set; trying to do so will signal an error. */);
3905 Vmost_negative_fixnum = make_number (MOST_NEGATIVE_FIXNUM); 3907 Vmost_negative_fixnum = make_number (MOST_NEGATIVE_FIXNUM);
3906 make_symbol_constant (intern_c_string ("most-negative-fixnum")); 3908 make_symbol_constant (intern_c_string ("most-negative-fixnum"));
3907 3909