1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-11 08:30:45 -08:00

(MARKBIT): Do the shifting as unsigned int.

This commit is contained in:
Richard M. Stallman 1995-04-13 05:12:24 +00:00
parent 7e5e0277f0
commit 8ce6977ed7

View file

@ -190,7 +190,7 @@ Lisp_Object;
rather than being part of a string block. */ rather than being part of a string block. */
#ifndef MARKBIT #ifndef MARKBIT
#define MARKBIT (1 << (VALBITS + GCTYPEBITS)) #define MARKBIT ((int) ((unsigned int) 1 << (VALBITS + GCTYPEBITS)))
#endif /*MARKBIT */ #endif /*MARKBIT */
/* In the size word of a vector, this bit means the vector has been marked. /* In the size word of a vector, this bit means the vector has been marked.