+2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
+
+ * data.c (sign_extend_temp, sign_extend_lisp_int): Remove, unused.
+
2010-11-14 Chong Yidong <cyd@stupidchicken.com>
* w32fns.c (Fx_create_frame):
xsignal3 (Qargs_out_of_range, a1, a2, a3);
}
-/* On some machines, XINT needs a temporary location.
- Here it is, in case it is needed. */
-
-int sign_extend_temp;
-
-/* On a few machines, XINT can only be done by calling this. */
-
-int
-sign_extend_lisp_int (EMACS_INT num)
-{
- if (num & (((EMACS_INT) 1) << (VALBITS - 1)))
- return num | (((EMACS_INT) (-1)) << VALBITS);
- else
- return num & ((((EMACS_INT) 1) << VALBITS) - 1);
-}
\f
/* Data type predicates */