aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2015-01-05 14:15:59 -0800
committerPaul Eggert2015-01-05 14:16:23 -0800
commit6e8fe3f853afc6664ab53ba11d9a508c489e5c68 (patch)
treef00cee5d81fdda5d0bbc3c62ebf4ada50670ed33 /src
parent5b5dab1281bc47e36b6fb40b88a3ff2241657469 (diff)
downloademacs-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/ChangeLog6
-rw-r--r--src/lisp.h4
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 @@
12015-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
12015-01-05 Eli Zaretskii <eliz@gnu.org> 72015-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);
609INLINE bool SUBRP (Lisp_Object); 609INLINE bool SUBRP (Lisp_Object);
610INLINE bool (SYMBOLP) (Lisp_Object); 610INLINE bool (SYMBOLP) (Lisp_Object);
611INLINE bool (VECTORLIKEP) (Lisp_Object); 611INLINE bool (VECTORLIKEP) (Lisp_Object);
612INLINE struct Lisp_Symbol *XSYMBOL (Lisp_Object);
613INLINE void *(XUNTAGBASE) (Lisp_Object, int, void *);
614INLINE bool WINDOWP (Lisp_Object); 612INLINE bool WINDOWP (Lisp_Object);
615INLINE struct Lisp_Save_Value *XSAVE_VALUE (Lisp_Object); 613INLINE struct Lisp_Save_Value *XSAVE_VALUE (Lisp_Object);
614INLINE struct Lisp_Symbol *(XSYMBOL) (Lisp_Object);
615INLINE void *(XUNTAGBASE) (Lisp_Object, int, void *);
616 616
617/* Defined in chartab.c. */ 617/* Defined in chartab.c. */
618extern Lisp_Object char_table_ref (Lisp_Object, int); 618extern Lisp_Object char_table_ref (Lisp_Object, int);