]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp.h: Include <intprops.h>, as it'll useful in later changes.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 2 Jun 2011 06:17:35 +0000 (23:17 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 2 Jun 2011 06:17:35 +0000 (23:17 -0700)
* character.c, data.c, editfns.c, insdel.c, intervals.c:
Don't include <intprops.h>, since lisp.h does.

src/ChangeLog
src/character.c
src/data.c
src/editfns.c
src/insdel.c
src/intervals.c
src/lisp.h

index 1c97b0ac9f596d13bd77259edf69c9b114d62986..708e08135bef77be359a401350d87cc231b16b86 100644 (file)
@@ -1,5 +1,9 @@
 2011-06-02  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * 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.
+
        Don't assume time_t can fit into int.
        * buffer.h (struct buffer.modtime): Now time_t, not int.
        * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
index 34e69da9cc53b60e1b9129b3c362190a6c40e2f9..4aa1b75cd8c55d0f066634da32448088091792ce 100644 (file)
@@ -35,7 +35,7 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include <sys/types.h>
 #include <setjmp.h>
-#include <intprops.h>
+
 #include "lisp.h"
 #include "character.h"
 #include "buffer.h"
index 78bd454056d3298b36557d5164b79172303b494c..522f0156ebdd3dbee7668c06181dc8106f79866b 100644 (file)
@@ -23,8 +23,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <stdio.h>
 #include <setjmp.h>
 
-#include <intprops.h>
-
 #include "lisp.h"
 #include "puresize.h"
 #include "character.h"
index 8b48355fbfae80ca22c2976b93e762f6f735efd8..bfdc891140da29126d7ad25d84427425d5ba890a 100644 (file)
@@ -47,7 +47,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <ctype.h>
 #include <float.h>
 #include <limits.h>
-#include <intprops.h>
 #include <strftime.h>
 #include <verify.h>
 
index c0cccc65d6a5c5d683bd998bbb3fec305c7f0b7b..d695278284b8c6344ddabec51ab48ec979b47310 100644 (file)
@@ -21,8 +21,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <config.h>
 #include <setjmp.h>
 
-#include <intprops.h>
-
 #include "lisp.h"
 #include "intervals.h"
 #include "buffer.h"
index f9e9c864e131335bbb2ebf7701bb8cf8164dcb43..2cebc9af5856fa30b02e304df502171ba0819f1c 100644 (file)
@@ -39,7 +39,7 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 #include <setjmp.h>
-#include <intprops.h>
+
 #include "lisp.h"
 #include "intervals.h"
 #include "buffer.h"
index 8a504e8eb863204b4abad4d72f3493e5a2f42144..6ef2c4211f25dc88bc4bbfbec545d91228184f64 100644 (file)
@@ -24,6 +24,8 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <stddef.h>
 #include <inttypes.h>
 
+#include <intprops.h>
+
 /* Use the configure flag --enable-checking[=LIST] to enable various
    types of run time checks for Lisp objects.  */