aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-06-03 11:14:49 -0700
committerPaul Eggert2011-06-03 11:14:49 -0700
commit810ef6bcdf43f657e8f40ff5439fe684173c4b24 (patch)
tree3599e6703de302255ec603cbbec282cb1183c795 /src
parent4c97dba58f46f9d6d6d33438958b4d8ee8b79bc4 (diff)
parent198ae2b90eb2e7b41965223967bbb8971da950d5 (diff)
downloademacs-810ef6bcdf43f657e8f40ff5439fe684173c4b24.tar.gz
emacs-810ef6bcdf43f657e8f40ff5439fe684173c4b24.zip
* lisp.h: Include <intprops.h>, as it'll useful in later changes.
* character.c, data.c, editfns.c, insdel.c, intervals.c: Don't include <intprops.h>, since lisp.h does.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/character.c2
-rw-r--r--src/data.c2
-rw-r--r--src/editfns.c1
-rw-r--r--src/insdel.c2
-rw-r--r--src/intervals.c2
-rw-r--r--src/lisp.h2
7 files changed, 8 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 94cfd944adc..fa132593f73 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,9 @@
12011-06-03 Paul Eggert <eggert@cs.ucla.edu> 12011-06-03 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * lisp.h: Include <intprops.h>, as it'll useful in later changes.
4 * character.c, data.c, editfns.c, insdel.c, intervals.c:
5 Don't include <intprops.h>, since lisp.h does.
6
3 Don't assume time_t can fit into int. 7 Don't assume time_t can fit into int.
4 * buffer.h (struct buffer.modtime): Now time_t, not int. 8 * buffer.h (struct buffer.modtime): Now time_t, not int.
5 * fileio.c (Fvisited_file_modtime): No need for time_t cast now. 9 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
diff --git a/src/character.c b/src/character.c
index 34e69da9cc5..4aa1b75cd8c 100644
--- a/src/character.c
+++ b/src/character.c
@@ -35,7 +35,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
35 35
36#include <sys/types.h> 36#include <sys/types.h>
37#include <setjmp.h> 37#include <setjmp.h>
38#include <intprops.h> 38
39#include "lisp.h" 39#include "lisp.h"
40#include "character.h" 40#include "character.h"
41#include "buffer.h" 41#include "buffer.h"
diff --git a/src/data.c b/src/data.c
index 78bd454056d..522f0156ebd 100644
--- a/src/data.c
+++ b/src/data.c
@@ -23,8 +23,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
23#include <stdio.h> 23#include <stdio.h>
24#include <setjmp.h> 24#include <setjmp.h>
25 25
26#include <intprops.h>
27
28#include "lisp.h" 26#include "lisp.h"
29#include "puresize.h" 27#include "puresize.h"
30#include "character.h" 28#include "character.h"
diff --git a/src/editfns.c b/src/editfns.c
index 0e40fde9ca4..b18a35fe295 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -47,7 +47,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
47#include <ctype.h> 47#include <ctype.h>
48#include <float.h> 48#include <float.h>
49#include <limits.h> 49#include <limits.h>
50#include <intprops.h>
51#include <strftime.h> 50#include <strftime.h>
52#include <verify.h> 51#include <verify.h>
53 52
diff --git a/src/insdel.c b/src/insdel.c
index c0cccc65d6a..d695278284b 100644
--- a/src/insdel.c
+++ b/src/insdel.c
@@ -21,8 +21,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21#include <config.h> 21#include <config.h>
22#include <setjmp.h> 22#include <setjmp.h>
23 23
24#include <intprops.h>
25
26#include "lisp.h" 24#include "lisp.h"
27#include "intervals.h" 25#include "intervals.h"
28#include "buffer.h" 26#include "buffer.h"
diff --git a/src/intervals.c b/src/intervals.c
index f9e9c864e13..2cebc9af585 100644
--- a/src/intervals.c
+++ b/src/intervals.c
@@ -39,7 +39,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
39 39
40#include <config.h> 40#include <config.h>
41#include <setjmp.h> 41#include <setjmp.h>
42#include <intprops.h> 42
43#include "lisp.h" 43#include "lisp.h"
44#include "intervals.h" 44#include "intervals.h"
45#include "buffer.h" 45#include "buffer.h"
diff --git a/src/lisp.h b/src/lisp.h
index a9e7354f9fc..37687f884d5 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -24,6 +24,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
24#include <stddef.h> 24#include <stddef.h>
25#include <inttypes.h> 25#include <inttypes.h>
26 26
27#include <intprops.h>
28
27/* Use the configure flag --enable-checking[=LIST] to enable various 29/* Use the configure flag --enable-checking[=LIST] to enable various
28 types of run time checks for Lisp objects. */ 30 types of run time checks for Lisp objects. */
29 31