Fixes: debbugs:13734

* lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren.
This commit is contained in:
Andreas Schwab 2013-03-02 08:48:18 +01:00
parent fa4c60b8e4
commit b270d11649
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2013-03-02 Andreas Schwab <schwab@linux-m68k.org>
* lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren. (Bug#13734)
2013-02-27 Eli Zaretskii <eliz@gnu.org>
* w32.c (sys_open): Don't reset the flags for FD in fd_info[].

View file

@ -498,7 +498,7 @@ static EMACS_INT const VALMASK
/* DATA_SEG_BITS forces extra bits to be or'd in with any pointers
which were stored in a Lisp_Object. */
#define XPNTR(a) ((uintptr_t) ((XLI (a) & VALMASK)) | DATA_SEG_BITS))
#define XPNTR(a) ((uintptr_t) ((XLI (a) & VALMASK) | DATA_SEG_BITS))
#endif /* not USE_LSB_TAG */