From: Eli Zaretskii Date: Sat, 2 Mar 2013 09:02:12 +0000 (+0200) Subject: Revert last commit; fixed on emacs-24 branch instead. X-Git-Tag: emacs-24.3.90~173^2~6^2~6 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c856b8d4679fe4b75f925c9e87eacf9456398090;p=emacs.git Revert last commit; fixed on emacs-24 branch instead. --- diff --git a/src/ChangeLog b/src/ChangeLog index f3ded8e3986..1b8b3c56004 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,7 +1,3 @@ -2013-03-02 Eli Zaretskii - - * lisp.h (XPNTR) [!USE_LSB_TAG]: Fix parentheses nesting. (Bug#13734) - 2013-02-28 Eli Zaretskii * w32.c (sys_open): Don't reset the flags for FD in fd_info[]. diff --git a/src/lisp.h b/src/lisp.h index 01574a5fe03..e696371c58b 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -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 */