diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2013-03-02 08:48:18 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2013-03-02 08:48:18 +0100 |
commit | b270d11649521531b4b51df937149b463b8d61a8 (patch) | |
tree | 87fb0c7de451bdc156c8b67be9f816d6cb28bc2b /src/lisp.h | |
parent | fa4c60b8e4793b83ed69d5378fb1e72c34ec0094 (diff) | |
download | emacs-b270d11649521531b4b51df937149b463b8d61a8.tar.gz emacs-b270d11649521531b4b51df937149b463b8d61a8.tar.bz2 emacs-b270d11649521531b4b51df937149b463b8d61a8.zip |
Fixes: debbugs:13734
* lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren.
Diffstat (limited to 'src/lisp.h')
-rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index eca3caefd8c..8f9ed93e0d4 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -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 */ |