aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h8
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.
18You should have received a copy of the GNU General Public License 18You should have received a copy of the GNU General Public License
19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ 19along 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
24INLINE_HEADER_BEGIN 30INLINE_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)
1377INLINE int upcase (int c) { return uppercasep (c) ? c : upcase1 (c); } 1383INLINE int upcase (int c) { return uppercasep (c) ? c : upcase1 (c); }
1378 1384
1379INLINE_HEADER_END 1385INLINE_HEADER_END
1386
1387#endif /* EMACS_BUFFER_H */