aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/lisp.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a68b16f862c..d8b2833b2fa 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12013-03-02 Andreas Schwab <schwab@linux-m68k.org>
2
3 * lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren. (Bug#13734)
4
12013-03-02 Paul Eggert <eggert@cs.ucla.edu> 52013-03-02 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 * textprop.c: Use bool for booleans. 7 * textprop.c: Use bool for booleans.
diff --git a/src/lisp.h b/src/lisp.h
index e696371c58b..01574a5fe03 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -507,7 +507,7 @@ static EMACS_INT const VALMASK
507 507
508/* DATA_SEG_BITS forces extra bits to be or'd in with any pointers 508/* DATA_SEG_BITS forces extra bits to be or'd in with any pointers
509 which were stored in a Lisp_Object. */ 509 which were stored in a Lisp_Object. */
510#define XPNTR(a) ((uintptr_t) ((XLI (a) & VALMASK)) | DATA_SEG_BITS)) 510#define XPNTR(a) ((uintptr_t) ((XLI (a) & VALMASK) | DATA_SEG_BITS))
511 511
512#endif /* not USE_LSB_TAG */ 512#endif /* not USE_LSB_TAG */
513 513