Mercurial > hg > xemacs-beta
comparison src/inline.c @ 272:c5d627a313b1 r21-0b34
Import from CVS: tag r21-0b34
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:28:48 +0200 |
parents | 11cf20601dec |
children | c42ec1d1cded |
comparison
equal
deleted
inserted
replaced
271:c7b7086b0a39 | 272:c5d627a313b1 |
---|---|
32 | 32 |
33 Some compilers that recognize `inline' may not do the same | 33 Some compilers that recognize `inline' may not do the same |
34 `extern inline' business, so on those we just do `static inline'. | 34 `extern inline' business, so on those we just do `static inline'. |
35 */ | 35 */ |
36 | 36 |
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. | |
39 i.e. the output of ``grep -l -w 'DECLARE_LRECORD|INLINE' *.h'' */ | |
40 | |
37 #define DONT_EXTERN_INLINE_FUNCTIONS | 41 #define DONT_EXTERN_INLINE_FUNCTIONS |
38 | 42 |
39 #include <config.h> | 43 #include <config.h> |
40 #include "lisp.h" | 44 #include "lisp.h" |
41 #include "buffer.h" | 45 #include "buffer.h" |
42 #include "bytecode.h" | 46 #include "bytecode.h" |
47 #include "chartab.h" | |
43 #include "console.h" | 48 #include "console.h" |
44 #include "device.h" | 49 #include "device.h" |
50 #include "elhash.h" | |
45 #include "events.h" | 51 #include "events.h" |
46 #include "elhash.h" | |
47 #include "extents.h" | 52 #include "extents.h" |
48 #include "faces.h" | 53 #include "faces.h" |
49 #include "frame.h" | 54 #include "frame.h" |
50 #include "glyphs.h" | 55 #include "glyphs.h" |
51 #include "keymap.h" | 56 #include "keymap.h" |
53 #include "objects.h" | 58 #include "objects.h" |
54 #include "opaque.h" | 59 #include "opaque.h" |
55 #include "process.h" | 60 #include "process.h" |
56 #include "specifier.h" | 61 #include "specifier.h" |
57 #include "syntax.h" | 62 #include "syntax.h" |
63 #include "window.h" | |
64 | |
65 #ifdef HAVE_TOOLBARS | |
58 #include "toolbar.h" | 66 #include "toolbar.h" |
59 #include "window.h" | 67 #endif |
60 | 68 |
61 #ifdef HAVE_DATABASE | 69 #ifdef HAVE_DATABASE |
62 #include "database.h" | 70 #include "database.h" |
63 #endif | 71 #endif |
64 | 72 |
73 | |
65 #ifdef HAVE_X_WINDOWS | 74 #ifdef HAVE_X_WINDOWS |
66 #include "console-x.h" | |
67 #include "glyphs-x.h" | 75 #include "glyphs-x.h" |
68 #include "gui-x.h" | 76 #include "gui-x.h" |
69 #endif | 77 #endif |
78 | |
70 #ifdef FILE_CODING | 79 #ifdef FILE_CODING |
71 #include "file-coding.h" | 80 #include "file-coding.h" |
72 #endif | 81 #endif |
82 | |
73 | 83 |
74 #ifdef TOOLTALK | 84 #ifdef TOOLTALK |
75 #include TT_C_H_PATH | 85 #include TT_C_H_PATH |
76 #include "tooltalk.h" | 86 #include "tooltalk.h" |
77 #endif | 87 #endif |
78 | 88 |
79 #ifdef HAVE_LDAP | |
80 #include "eldap.h" | |
81 #endif |