mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-12 02:40:34 -08:00
(XINT): Move the cast to clarify what is going on.
This commit is contained in:
parent
bd382a2755
commit
73a662efa9
1 changed files with 2 additions and 2 deletions
|
|
@ -335,8 +335,8 @@ enum pvec_type
|
|||
/* Extract the value of a Lisp_Object as a signed integer. */
|
||||
|
||||
#ifndef XINT /* Some machines need to do this differently. */
|
||||
#define XINT(a) ((EMACS_INT) (((a) << (BITS_PER_EMACS_INT - VALBITS)) \
|
||||
>> (BITS_PER_EMACS_INT - VALBITS)))
|
||||
#define XINT(a) ((((EMACS_INT) (a)) << (BITS_PER_EMACS_INT - VALBITS)) \
|
||||
>> (BITS_PER_EMACS_INT - VALBITS))
|
||||
#endif
|
||||
|
||||
/* Extract the value as an unsigned integer. This is a basis
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue