aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2016-12-25 10:12:39 -0800
committerPaul Eggert2016-12-25 10:13:10 -0800
commite135b8c7f95e6f387f521bc6f78ba8da281227f3 (patch)
tree6ee1575dc343da2c215c5ae7e7462ffe8d39369f /src
parent615cec1dfe9a808141096d20c763d89ed406e64d (diff)
downloademacs-e135b8c7f95e6f387f521bc6f78ba8da281227f3.tar.gz
emacs-e135b8c7f95e6f387f521bc6f78ba8da281227f3.zip
Fix typo in lisp.h reordering patch
* src/lisp.h (XUNTAG) [!USE_LSB_TAG]: Remove duplicate defn. Reported by Eli Zaretskii (Bug#25128#19).
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 23d3ae4ff31..dc2c7a60085 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -996,14 +996,6 @@ XFASTINT (Lisp_Object a)
996 return n; 996 return n;
997} 997}
998 998
999/* Extract A's pointer value, assuming A's type is TYPE. */
1000INLINE void *
1001XUNTAG (Lisp_Object a, int type)
1002{
1003 intptr_t i = USE_LSB_TAG ? XLI (a) - type : XLI (a) & VALMASK;
1004 return (void *) i;
1005}
1006
1007#endif /* ! USE_LSB_TAG */ 999#endif /* ! USE_LSB_TAG */
1008 1000
1009/* Extract A's value as an unsigned integer. */ 1001/* Extract A's value as an unsigned integer. */