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, 2 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c
index 0a2d4b855de..8f5011ff672 100644
--- a/src/data.c
+++ b/src/data.c
@@ -94,8 +94,6 @@ Lisp_Object Qinteractive_form;
94 94
95static void swap_in_symval_forwarding (struct Lisp_Symbol *, struct Lisp_Buffer_Local_Value *); 95static void swap_in_symval_forwarding (struct Lisp_Symbol *, struct Lisp_Buffer_Local_Value *);
96 96
97Lisp_Object Vmost_positive_fixnum, Vmost_negative_fixnum;
98
99 97
100void 98void
101circular_list_error (Lisp_Object list) 99circular_list_error (Lisp_Object list)
@@ -3300,12 +3298,12 @@ syms_of_data (void)
3300 3298
3301 XSYMBOL (Qwholenump)->function = XSYMBOL (Qnatnump)->function; 3299 XSYMBOL (Qwholenump)->function = XSYMBOL (Qnatnump)->function;
3302 3300
3303 DEFVAR_LISP ("most-positive-fixnum", &Vmost_positive_fixnum, 3301 DEFVAR_LISP ("most-positive-fixnum", Vmost_positive_fixnum,
3304 doc: /* The largest value that is representable in a Lisp integer. */); 3302 doc: /* The largest value that is representable in a Lisp integer. */);
3305 Vmost_positive_fixnum = make_number (MOST_POSITIVE_FIXNUM); 3303 Vmost_positive_fixnum = make_number (MOST_POSITIVE_FIXNUM);
3306 XSYMBOL (intern_c_string ("most-positive-fixnum"))->constant = 1; 3304 XSYMBOL (intern_c_string ("most-positive-fixnum"))->constant = 1;
3307 3305
3308 DEFVAR_LISP ("most-negative-fixnum", &Vmost_negative_fixnum, 3306 DEFVAR_LISP ("most-negative-fixnum", Vmost_negative_fixnum,
3309 doc: /* The smallest value that is representable in a Lisp integer. */); 3307 doc: /* The smallest value that is representable in a Lisp integer. */);
3310 Vmost_negative_fixnum = make_number (MOST_NEGATIVE_FIXNUM); 3308 Vmost_negative_fixnum = make_number (MOST_NEGATIVE_FIXNUM);
3311 XSYMBOL (intern_c_string ("most-negative-fixnum"))->constant = 1; 3309 XSYMBOL (intern_c_string ("most-negative-fixnum"))->constant = 1;