summaryrefslogtreecommitdiff
path: root/src/lisp.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-12-25 10:12:39 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2016-12-25 10:13:10 -0800
commite135b8c7f95e6f387f521bc6f78ba8da281227f3 (patch)
tree6ee1575dc343da2c215c5ae7e7462ffe8d39369f /src/lisp.h
parent615cec1dfe9a808141096d20c763d89ed406e64d (diff)
downloademacs-e135b8c7f95e6f387f521bc6f78ba8da281227f3.tar.gz
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/lisp.h')
-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)
return n;
}
-/* Extract A's pointer value, assuming A's type is TYPE. */
-INLINE void *
-XUNTAG (Lisp_Object a, int type)
-{
- intptr_t i = USE_LSB_TAG ? XLI (a) - type : XLI (a) & VALMASK;
- return (void *) i;
-}
-
#endif /* ! USE_LSB_TAG */
/* Extract A's value as an unsigned integer. */