mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
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:
parent
8725b74640
commit
474b43d90f
2 changed files with 5 additions and 1 deletions
|
|
@ -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[].
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue