Fix bug #13734 with errors in lisp.h macro expansion.

src/lisp.h (XPNTR) [!USE_LSB_TAG]: Fix parentheses nesting.
This commit is contained in:
Eli Zaretskii 2013-03-02 10:19:45 +02:00
parent 8725b74640
commit 474b43d90f
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2013-03-02 Eli Zaretskii <eliz@gnu.org>
* lisp.h (XPNTR) [!USE_LSB_TAG]: Fix parentheses nesting. (Bug#13734)
2013-02-28 Eli Zaretskii <eliz@gnu.org>
* w32.c (sys_open): Don't reset the flags for FD in fd_info[].

View file

@ -507,7 +507,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 */