* src/lisp.h (lisp_h_XPL, XPL): Remove; unused.
This commit is contained in:
parent
89350d4878
commit
416195fd43
1 changed files with 0 additions and 11 deletions
11
src/lisp.h
11
src/lisp.h
|
@ -339,24 +339,20 @@ typedef EMACS_INT Lisp_Word;
|
|||
# define lisp_h_XLI(o) ((EMACS_INT) (o))
|
||||
# define lisp_h_XIL(i) ((Lisp_Object) (i))
|
||||
# define lisp_h_XLP(o) ((void *) (o))
|
||||
# define lisp_h_XPL(p) ((Lisp_Object) (p))
|
||||
# else
|
||||
# define lisp_h_XLI(o) (o)
|
||||
# define lisp_h_XIL(i) (i)
|
||||
# define lisp_h_XLP(o) ((void *) (uintptr_t) (o))
|
||||
# define lisp_h_XPL(p) ((Lisp_Object) (uintptr_t) (p))
|
||||
# endif
|
||||
#else
|
||||
# if LISP_WORDS_ARE_POINTERS
|
||||
# define lisp_h_XLI(o) ((EMACS_INT) (o).i)
|
||||
# define lisp_h_XIL(i) ((Lisp_Object) {(Lisp_Word) (i)})
|
||||
# define lisp_h_XLP(o) ((void *) (o).i)
|
||||
# define lisp_h_XPL(p) lisp_h_XIL (p)
|
||||
# else
|
||||
# define lisp_h_XLI(o) ((o).i)
|
||||
# define lisp_h_XIL(i) ((Lisp_Object) {i})
|
||||
# define lisp_h_XLP(o) ((void *) (uintptr_t) (o).i)
|
||||
# define lisp_h_XPL(p) ((Lisp_Object) {(uintptr_t) (p)})
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
@ -425,7 +421,6 @@ typedef EMACS_INT Lisp_Word;
|
|||
# define XLI(o) lisp_h_XLI (o)
|
||||
# define XIL(i) lisp_h_XIL (i)
|
||||
# define XLP(o) lisp_h_XLP (o)
|
||||
# define XPL(p) lisp_h_XPL (p)
|
||||
# define CHECK_FIXNUM(x) lisp_h_CHECK_FIXNUM (x)
|
||||
# define CHECK_SYMBOL(x) lisp_h_CHECK_SYMBOL (x)
|
||||
# define CHECK_TYPE(ok, predicate, x) lisp_h_CHECK_TYPE (ok, predicate, x)
|
||||
|
@ -735,12 +730,6 @@ INLINE void *
|
|||
return lisp_h_XLP (o);
|
||||
}
|
||||
|
||||
INLINE Lisp_Object
|
||||
(XPL) (void *p)
|
||||
{
|
||||
return lisp_h_XPL (p);
|
||||
}
|
||||
|
||||
/* Extract A's type. */
|
||||
|
||||
INLINE enum Lisp_Type
|
||||
|
|
Loading…
Add table
Reference in a new issue