aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2015-01-13 14:04:23 -0800
committerPaul Eggert2015-01-13 14:04:59 -0800
commit564784766297a6f2e06434e2baa7a1d851672a36 (patch)
tree869e82ca8a0f059929f1c035b431ec301209e200 /src
parent5aa618b05807d560126dfd09b9c9cb6b957b98de (diff)
downloademacs-564784766297a6f2e06434e2baa7a1d851672a36.tar.gz
emacs-564784766297a6f2e06434e2baa7a1d851672a36.zip
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.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog7
-rw-r--r--src/lisp.h1
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 2f40a463ed4..7ec6980bd08 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
12015-01-13 Paul Eggert <eggert@cs.ucla.edu>
2
3 Remove now-unnecessary forward XTYPE decl
4 * lisp.h (XTYPE): Remove forward declaration. The recent merge
5 from emacs-24 fixed the problem in a better way, by moving XPNTR's
6 definition to after XTYPE's.
7
12015-01-13 Eli Zaretskii <eliz@gnu.org> 82015-01-13 Eli Zaretskii <eliz@gnu.org>
2 9
3 Fix problems with 32-bit wide-int build exposed by MinGW. 10 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);
610INLINE bool WINDOWP (Lisp_Object); 610INLINE bool WINDOWP (Lisp_Object);
611INLINE struct Lisp_Save_Value *XSAVE_VALUE (Lisp_Object); 611INLINE struct Lisp_Save_Value *XSAVE_VALUE (Lisp_Object);
612INLINE struct Lisp_Symbol *(XSYMBOL) (Lisp_Object); 612INLINE struct Lisp_Symbol *(XSYMBOL) (Lisp_Object);
613INLINE enum Lisp_Type (XTYPE) (Lisp_Object);
614INLINE void *(XUNTAG) (Lisp_Object, int); 613INLINE void *(XUNTAG) (Lisp_Object, int);
615 614
616/* Defined in chartab.c. */ 615/* Defined in chartab.c. */