Mercurial > hg > xemacs-beta
comparison src/inline.c @ 5118:e0db3c197671 ben-lisp-object
merge up to latest default branch, doesn't compile yet
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Sat, 26 Dec 2009 21:18:49 -0600 |
parents | 8f1ee2d15784 |
children | d1247f3cc363 |
comparison
equal
deleted
inserted
replaced
5117:3742ea8250b5 | 5118:e0db3c197671 |
---|---|
33 Some compilers that recognize `inline' may not do the same | 33 Some compilers that recognize `inline' may not do the same |
34 `inline extern' business, so on those we just do `inline static'. | 34 `inline extern' business, so on those we just do `inline static'. |
35 */ | 35 */ |
36 | 36 |
37 /* Note to maintainers: This file contains a list of all header files | 37 /* Note to maintainers: This file contains a list of all header files |
38 that use the INLINE macro, either directly, or by using DECLARE_LRECORD. | 38 that use the INLINE macro, either directly, or by using DECLARE_LISP_OBJECT. |
39 i.e. the output of ``grep -l -w 'DECLARE_LRECORD|INLINE_HEADER' *.h'' */ | 39 i.e. the output of ``grep -l -w 'DECLARE_LISP_OBJECT|INLINE_HEADER' *.h'' */ |
40 | 40 |
41 #define DONT_EXTERN_INLINE_HEADER_FUNCTIONS | 41 #define DONT_EXTERN_INLINE_HEADER_FUNCTIONS |
42 | 42 |
43 #include <config.h> | 43 #include <config.h> |
44 #include "lisp.h" | 44 #include "lisp.h" |
62 #include "objects-impl.h" | 62 #include "objects-impl.h" |
63 #include "opaque.h" | 63 #include "opaque.h" |
64 #include "process.h" | 64 #include "process.h" |
65 #include "rangetab.h" | 65 #include "rangetab.h" |
66 #include "specifier.h" | 66 #include "specifier.h" |
67 #include "symeval.h" | |
67 #include "syntax.h" | 68 #include "syntax.h" |
68 #include "window.h" | 69 #include "window.h" |
69 | 70 |
70 /* If we demand !defined (HAVE_SHLIB) the INLINE_HEADERS aren't instantiated. | 71 /* If we demand !defined (HAVE_SHLIB) the INLINE_HEADERS aren't instantiated. |
71 This only shows up in --with-error-checking=types builds AFAIK. | 72 This only shows up in --with-error-checking=types builds AFAIK. |
98 #include "database.h" | 99 #include "database.h" |
99 #endif | 100 #endif |
100 | 101 |
101 #ifdef HAVE_X_WINDOWS | 102 #ifdef HAVE_X_WINDOWS |
102 #include "glyphs-x.h" | 103 #include "glyphs-x.h" |
104 #ifdef USE_XFT | |
105 #include "font-mgr.h" | |
106 #endif | |
103 #endif | 107 #endif |
104 | 108 |
105 #ifdef HAVE_MS_WINDOWS | 109 #ifdef HAVE_MS_WINDOWS |
106 #include "console-msw.h" | 110 #include "console-msw.h" |
107 #endif | 111 #endif |