From 8ce6977ed7ae5ffb43f29c0dbb53e6cf73a24e0c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 13 Apr 1995 05:12:24 +0000 Subject: [PATCH] (MARKBIT): Do the shifting as unsigned int. --- src/lisp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lisp.h b/src/lisp.h index e28da149794..84dae54aebf 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -190,7 +190,7 @@ Lisp_Object; rather than being part of a string block. */ #ifndef MARKBIT -#define MARKBIT (1 << (VALBITS + GCTYPEBITS)) +#define MARKBIT ((int) ((unsigned int) 1 << (VALBITS + GCTYPEBITS))) #endif /*MARKBIT */ /* In the size word of a vector, this bit means the vector has been marked. -- 2.39.5