emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master e135b8c: Fix typo in lisp.h reordering patch


From: Paul Eggert
Subject: [Emacs-diffs] master e135b8c: Fix typo in lisp.h reordering patch
Date: Sun, 25 Dec 2016 18:13:15 +0000 (UTC)

branch: master
commit e135b8c7f95e6f387f521bc6f78ba8da281227f3
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Fix typo in lisp.h reordering patch
    
    * src/lisp.h (XUNTAG) [!USE_LSB_TAG]: Remove duplicate defn.
    Reported by Eli Zaretskii (Bug#25128#19).
---
 src/lisp.h |    8 --------
 1 file changed, 8 deletions(-)

diff --git a/src/lisp.h b/src/lisp.h
index 23d3ae4..dc2c7a6 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.  */



reply via email to

[Prev in Thread] Current Thread [Next in Thread]