aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2011-06-01 23:17:35 -0700
committerPaul Eggert2011-06-01 23:17:35 -0700
commit198ae2b90eb2e7b41965223967bbb8971da950d5 (patch)
treebe65d8cdb55204104d9c98fde18db4cff91b613d
parent84acfcf06be242f35063c719ca5643ad969437fd (diff)
downloademacs-198ae2b90eb2e7b41965223967bbb8971da950d5.tar.gz
emacs-198ae2b90eb2e7b41965223967bbb8971da950d5.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.
-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 1c97b0ac9f5..708e08135be 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,9 @@
12011-06-02 Paul Eggert <eggert@cs.ucla.edu> 12011-06-02 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 8b48355fbfa..bfdc891140d 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 8a504e8eb86..6ef2c4211f2 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