/* Primitive operations on Lisp data types for GNU Emacs Lisp interpreter.
- Copyright (C) 1985,86,88,93,94,95,97,98,99, 2000, 2001
+ Copyright (C) 1985,86,88,93,94,95,97,98,99, 2000, 2001, 2003
Free Software Foundation, Inc.
This file is part of GNU Emacs.
long_to_cons (i)
unsigned long i;
{
- unsigned int top = i >> 16;
+ unsigned long top = i >> 16;
unsigned int bot = i & 0xFFFF;
if (top == 0)
return make_number (bot);