(print_preprocess): Declare size as EMACS_INT to not lose bits.
(print_object): Likewise.
This commit is contained in:
parent
29a831f8ba
commit
3164abe6d1
1 changed files with 3 additions and 2 deletions
|
|
@ -1276,7 +1276,8 @@ static void
|
|||
print_preprocess (obj)
|
||||
Lisp_Object obj;
|
||||
{
|
||||
int i, size;
|
||||
int i;
|
||||
EMACS_INT size;
|
||||
|
||||
loop:
|
||||
if (STRINGP (obj) || CONSP (obj) || VECTORP (obj)
|
||||
|
|
@ -1891,7 +1892,7 @@ print_object (obj, printcharfun, escapeflag)
|
|||
}
|
||||
else
|
||||
{
|
||||
int size = XVECTOR (obj)->size;
|
||||
EMACS_INT size = XVECTOR (obj)->size;
|
||||
if (COMPILEDP (obj))
|
||||
{
|
||||
PRINTCHAR ('#');
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue