diff options
| author | Paul Eggert | 2015-01-13 14:04:23 -0800 |
|---|---|---|
| committer | Paul Eggert | 2015-01-13 14:04:59 -0800 |
| commit | 564784766297a6f2e06434e2baa7a1d851672a36 (patch) | |
| tree | 869e82ca8a0f059929f1c035b431ec301209e200 /src | |
| parent | 5aa618b05807d560126dfd09b9c9cb6b957b98de (diff) | |
| download | emacs-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/ChangeLog | 7 | ||||
| -rw-r--r-- | src/lisp.h | 1 |
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 @@ | |||
| 1 | 2015-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 | |||
| 1 | 2015-01-13 Eli Zaretskii <eliz@gnu.org> | 8 | 2015-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); | |||
| 610 | INLINE bool WINDOWP (Lisp_Object); | 610 | INLINE bool WINDOWP (Lisp_Object); |
| 611 | INLINE struct Lisp_Save_Value *XSAVE_VALUE (Lisp_Object); | 611 | INLINE struct Lisp_Save_Value *XSAVE_VALUE (Lisp_Object); |
| 612 | INLINE struct Lisp_Symbol *(XSYMBOL) (Lisp_Object); | 612 | INLINE struct Lisp_Symbol *(XSYMBOL) (Lisp_Object); |
| 613 | INLINE enum Lisp_Type (XTYPE) (Lisp_Object); | ||
| 614 | INLINE void *(XUNTAG) (Lisp_Object, int); | 613 | INLINE void *(XUNTAG) (Lisp_Object, int); |
| 615 | 614 | ||
| 616 | /* Defined in chartab.c. */ | 615 | /* Defined in chartab.c. */ |