diff options
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h index a0410d454cd..f80530a0cdb 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -18,9 +18,15 @@ GNU General Public License for more details. | |||
| 18 | You should have received a copy of the GNU General Public License | 18 | You should have received a copy of the GNU General Public License |
| 19 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | 19 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 20 | 20 | ||
| 21 | #ifndef EMACS_BUFFER_H | ||
| 22 | #define EMACS_BUFFER_H | ||
| 23 | |||
| 21 | #include <sys/types.h> | 24 | #include <sys/types.h> |
| 22 | #include <time.h> | 25 | #include <time.h> |
| 23 | 26 | ||
| 27 | #include "character.h" | ||
| 28 | #include "lisp.h" | ||
| 29 | |||
| 24 | INLINE_HEADER_BEGIN | 30 | INLINE_HEADER_BEGIN |
| 25 | 31 | ||
| 26 | /* Accessing the parameters of the current buffer. */ | 32 | /* Accessing the parameters of the current buffer. */ |
| @@ -1377,3 +1383,5 @@ lowercasep (int c) | |||
| 1377 | INLINE int upcase (int c) { return uppercasep (c) ? c : upcase1 (c); } | 1383 | INLINE int upcase (int c) { return uppercasep (c) ? c : upcase1 (c); } |
| 1378 | 1384 | ||
| 1379 | INLINE_HEADER_END | 1385 | INLINE_HEADER_END |
| 1386 | |||
| 1387 | #endif /* EMACS_BUFFER_H */ | ||