diff options
| author | Paul Eggert | 2015-01-05 14:15:59 -0800 |
|---|---|---|
| committer | Paul Eggert | 2015-01-05 14:16:23 -0800 |
| commit | 6e8fe3f853afc6664ab53ba11d9a508c489e5c68 (patch) | |
| tree | f00cee5d81fdda5d0bbc3c62ebf4ada50670ed33 /src | |
| parent | 5b5dab1281bc47e36b6fb40b88a3ff2241657469 (diff) | |
| download | emacs-6e8fe3f853afc6664ab53ba11d9a508c489e5c68.tar.gz emacs-6e8fe3f853afc6664ab53ba11d9a508c489e5c68.zip | |
* lisp.h (XSYMBOL): Parenthesize id in forward decl.
Needed when neither optimizing nor inlining.
Also, sort decls alphabetically.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/lisp.h | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8cc775bef40..69da1c35c91 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2015-01-05 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * lisp.h (XSYMBOL): Parenthesize id in forward decl. | ||
| 4 | Needed when neither optimizing nor inlining. | ||
| 5 | Also, sort decls alphabetically. | ||
| 6 | |||
| 1 | 2015-01-05 Eli Zaretskii <eliz@gnu.org> | 7 | 2015-01-05 Eli Zaretskii <eliz@gnu.org> |
| 2 | 8 | ||
| 3 | * w32proc.c, w32.h, w32fns.c, w32font.c, w32menu.c, w32notify.c: | 9 | * w32proc.c, w32.h, w32fns.c, w32font.c, w32menu.c, w32notify.c: |
diff --git a/src/lisp.h b/src/lisp.h index fc04ab9ad3f..1f18b5e0775 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -609,10 +609,10 @@ INLINE bool SUB_CHAR_TABLE_P (Lisp_Object); | |||
| 609 | INLINE bool SUBRP (Lisp_Object); | 609 | INLINE bool SUBRP (Lisp_Object); |
| 610 | INLINE bool (SYMBOLP) (Lisp_Object); | 610 | INLINE bool (SYMBOLP) (Lisp_Object); |
| 611 | INLINE bool (VECTORLIKEP) (Lisp_Object); | 611 | INLINE bool (VECTORLIKEP) (Lisp_Object); |
| 612 | INLINE struct Lisp_Symbol *XSYMBOL (Lisp_Object); | ||
| 613 | INLINE void *(XUNTAGBASE) (Lisp_Object, int, void *); | ||
| 614 | INLINE bool WINDOWP (Lisp_Object); | 612 | INLINE bool WINDOWP (Lisp_Object); |
| 615 | INLINE struct Lisp_Save_Value *XSAVE_VALUE (Lisp_Object); | 613 | INLINE struct Lisp_Save_Value *XSAVE_VALUE (Lisp_Object); |
| 614 | INLINE struct Lisp_Symbol *(XSYMBOL) (Lisp_Object); | ||
| 615 | INLINE void *(XUNTAGBASE) (Lisp_Object, int, void *); | ||
| 616 | 616 | ||
| 617 | /* Defined in chartab.c. */ | 617 | /* Defined in chartab.c. */ |
| 618 | extern Lisp_Object char_table_ref (Lisp_Object, int); | 618 | extern Lisp_Object char_table_ref (Lisp_Object, int); |