Remove now-unnecessary forward XTYPE decl

* lisp.h (XTYPE): Remove forward declaration.  The recent merge
from emacs-24 fixed the problem in a better way, by moving XPNTR's
definition to after XTYPE's.
This commit is contained in:
Paul Eggert 2015-01-13 14:04:23 -08:00
parent 5aa618b058
commit 5647847662
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2015-01-13 Paul Eggert <eggert@cs.ucla.edu>
Remove now-unnecessary forward XTYPE decl
* lisp.h (XTYPE): Remove forward declaration. The recent merge
from emacs-24 fixed the problem in a better way, by moving XPNTR's
definition to after XTYPE's.
2015-01-13 Eli Zaretskii <eliz@gnu.org>
Fix problems with 32-bit wide-int build exposed by MinGW.

View file

@ -610,7 +610,6 @@ INLINE bool (VECTORLIKEP) (Lisp_Object);
INLINE bool WINDOWP (Lisp_Object);
INLINE struct Lisp_Save_Value *XSAVE_VALUE (Lisp_Object);
INLINE struct Lisp_Symbol *(XSYMBOL) (Lisp_Object);
INLINE enum Lisp_Type (XTYPE) (Lisp_Object);
INLINE void *(XUNTAG) (Lisp_Object, int);
/* Defined in chartab.c. */