Mercurial > hg > xemacs-beta
comparison src/inline.c @ 5178:97eb4942aec8
merge
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Mon, 29 Mar 2010 21:28:13 -0500 |
parents | 8b2f75cecb89 b5df3737028a |
children | 308d34e9f07d |
comparison
equal
deleted
inserted
replaced
5177:b785049378e3 | 5178:97eb4942aec8 |
---|---|
1 /* Repository for inline functions | 1 /* Repository for inline functions |
2 Copyright (C) 1995 Sun Microsystems, Inc. | 2 Copyright (C) 1995 Sun Microsystems, Inc. |
3 Copyright (C) 2010 Ben Wing. | |
3 | 4 |
4 This file is part of XEmacs. | 5 This file is part of XEmacs. |
5 | 6 |
6 XEmacs is free software; you can redistribute it and/or modify it | 7 XEmacs is free software; you can redistribute it and/or modify it |
7 under the terms of the GNU General Public License as published by the | 8 under the terms of the GNU General Public License as published by the |
33 Some compilers that recognize `inline' may not do the same | 34 Some compilers that recognize `inline' may not do the same |
34 `inline extern' business, so on those we just do `inline static'. | 35 `inline extern' business, so on those we just do `inline static'. |
35 */ | 36 */ |
36 | 37 |
37 /* Note to maintainers: This file contains a list of all header files | 38 /* 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. | 39 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'' */ | 40 i.e. the output of ``grep -l -w 'DECLARE_LISP_OBJECT|INLINE_HEADER' *.h'' */ |
40 | 41 |
41 #define DONT_EXTERN_INLINE_HEADER_FUNCTIONS | 42 #define DONT_EXTERN_INLINE_HEADER_FUNCTIONS |
42 | 43 |
43 #include <config.h> | 44 #include <config.h> |
44 #include "lisp.h" | 45 #include "lisp.h" |
97 | 98 |
98 #ifdef HAVE_DATABASE | 99 #ifdef HAVE_DATABASE |
99 #include "database.h" | 100 #include "database.h" |
100 #endif | 101 #endif |
101 | 102 |
103 #include "console-stream-impl.h" | |
104 | |
102 #ifdef HAVE_X_WINDOWS | 105 #ifdef HAVE_X_WINDOWS |
103 #include "glyphs-x.h" | 106 #include "console-x-impl.h" |
104 #ifdef HAVE_XFT | 107 #ifdef HAVE_XFT |
105 #include "font-mgr.h" | 108 #include "font-mgr.h" |
106 #endif | 109 #endif |
107 #endif | 110 #endif |
108 | 111 |
109 #ifdef HAVE_MS_WINDOWS | 112 #ifdef HAVE_MS_WINDOWS |
110 #include "console-msw.h" | 113 #include "console-msw-impl.h" |
114 #endif | |
115 | |
116 #ifdef HAVE_TTY | |
117 #include "console-tty-impl.h" | |
118 #include "fontcolor-tty-impl.h" | |
111 #endif | 119 #endif |
112 | 120 |
113 #ifdef HAVE_GTK | 121 #ifdef HAVE_GTK |
114 #include "console-gtk.h" | 122 #include "console-gtk-impl.h" |
115 #include "ui-gtk.h" | 123 #include "ui-gtk.h" |
116 #endif | 124 #endif |
117 | 125 |
118 #include "file-coding.h" | 126 #include "file-coding.h" |
119 | 127 |