]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typo in lisp.h reordering patch
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 25 Dec 2016 18:12:39 +0000 (10:12 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 25 Dec 2016 18:13:10 +0000 (10:13 -0800)
* src/lisp.h (XUNTAG) [!USE_LSB_TAG]: Remove duplicate defn.
Reported by Eli Zaretskii (Bug#25128#19).

src/lisp.h

index 23d3ae4ff3133e0ad35acf8bc16ceccb29aa1ca2..dc2c7a60085f6ebeea4b1ebc2fc4509ac421391b 100644 (file)
@@ -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.  */