From: Paul Eggert Date: Tue, 13 Jan 2015 22:04:23 +0000 (-0800) Subject: Remove now-unnecessary forward XTYPE decl X-Git-Tag: emacs-25.0.90~2603^2~14 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=564784766297a6f2e06434e2baa7a1d851672a36;p=emacs.git 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. --- diff --git a/src/ChangeLog b/src/ChangeLog index 2f40a463ed4..7ec6980bd08 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2015-01-13 Paul Eggert + + 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 Fix problems with 32-bit wide-int build exposed by MinGW. diff --git a/src/lisp.h b/src/lisp.h index ba1aff8e796..51556fcc91c 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -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. */