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:
parent
7e5e0277f0
commit
8ce6977ed7
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue