aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorPaul Eggert2011-02-08 16:30:33 -0800
committerPaul Eggert2011-02-08 16:30:33 -0800
commit64df8c10985095b9fe15b622da41cd45de8b9261 (patch)
treee63831b03c1766c58d7a73d26ed1d1ff1ef5af2b /lib-src
parentbfcb151a965a2970f26161f24abd8aed59433fd6 (diff)
downloademacs-64df8c10985095b9fe15b622da41cd45de8b9261.tar.gz
emacs-64df8c10985095b9fe15b622da41cd45de8b9261.zip
* make-docfile.c (EMACS_INTEGER): Rename from EMACS_INT.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog6
-rw-r--r--lib-src/make-docfile.c6
2 files changed, 9 insertions, 3 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 40f6958703e..0f93941151e 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,9 @@
12011-02-09 Paul Eggert <eggert@cs.ucla.edu>
2
3 * make-docfile.c (EMACS_INTEGER): Rename from EMACS_INT.
4 This avoids collision with config.h's EMACS_INT on some
5 configurations. All uses changed.
6
12011-02-08 Tom Tromey <tromey@redhat.com> 72011-02-08 Tom Tromey <tromey@redhat.com>
2 8
3 * make-docfile.c: Unconditionally include stdlib.h. 9 * make-docfile.c: Unconditionally include stdlib.h.
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c
index 6ce0b886ab4..93994c1ed3e 100644
--- a/lib-src/make-docfile.c
+++ b/lib-src/make-docfile.c
@@ -558,7 +558,7 @@ write_c_args (FILE *out, char *func, char *buf, int minargs, int maxargs)
558/* The types of globals. */ 558/* The types of globals. */
559enum global_type 559enum global_type
560{ 560{
561 EMACS_INT, 561 EMACS_INTEGER,
562 BOOLEAN, 562 BOOLEAN,
563 LISP_OBJECT, 563 LISP_OBJECT,
564 INVALID 564 INVALID
@@ -621,7 +621,7 @@ write_globals (void)
621 621
622 switch (globals[i].type) 622 switch (globals[i].type)
623 { 623 {
624 case EMACS_INT: 624 case EMACS_INTEGER:
625 type = "EMACS_INT"; 625 type = "EMACS_INT";
626 break; 626 break;
627 case BOOLEAN: 627 case BOOLEAN:
@@ -733,7 +733,7 @@ scan_c_file (char *filename, const char *mode)
733 if (generate_globals) 733 if (generate_globals)
734 { 734 {
735 if (c == 'I') 735 if (c == 'I')
736 type = EMACS_INT; 736 type = EMACS_INTEGER;
737 else if (c == 'L') 737 else if (c == 'L')
738 type = LISP_OBJECT; 738 type = LISP_OBJECT;
739 else if (c == 'B') 739 else if (c == 'B')