aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Janík2001-12-29 22:25:06 +0000
committerPavel Janík2001-12-29 22:25:06 +0000
commit2f8fe2f420c89ff5d5eaddc00abf910fbd518b1f (patch)
treec48cb16a1404a8726f96a002af531b3b4d2e03ea
parentf22d47851526845c8cfba3b58caefc12b43cec85 (diff)
downloademacs-2f8fe2f420c89ff5d5eaddc00abf910fbd518b1f.tar.gz
emacs-2f8fe2f420c89ff5d5eaddc00abf910fbd518b1f.zip
Include <config.h>.
-rw-r--r--lib-src/ChangeLog5
-rw-r--r--lib-src/cvtmail.c9
-rw-r--r--lib-src/emacsclient.c2
-rw-r--r--lib-src/emacsserver.c2
-rw-r--r--lib-src/pop.c2
-rw-r--r--lib-src/sorted-doc.c5
-rw-r--r--lib-src/yow.c5
7 files changed, 22 insertions, 8 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 19487ffc786..f665b2579bb 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,8 @@
12001-12-29 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2
3 * cvtmail.c, emacsclient.c, emacsserver.c, pop.c, sorted-doc.c,
4 * yow.c: Include <config.h>.
5
12001-12-21 Francesco Potorti` <pot@gnu.org> 62001-12-21 Francesco Potorti` <pot@gnu.org>
2 7
3 * etags.c (Perl_functions): Tag packages and use them in sub tags. 8 * etags.c (Perl_functions): Tag packages and use them in sub tags.
diff --git a/lib-src/cvtmail.c b/lib-src/cvtmail.c
index b967f81d428..453267f4aad 100644
--- a/lib-src/cvtmail.c
+++ b/lib-src/cvtmail.c
@@ -29,11 +29,14 @@ Boston, MA 02111-1307, USA. */
29 * 29 *
30 * In order to get rmail to read the messages, the resulting file must 30 * In order to get rmail to read the messages, the resulting file must
31 * be mv'ed to ~/mbox, and then have rmail invoked on them. 31 * be mv'ed to ~/mbox, and then have rmail invoked on them.
32 * 32 *
33 * Author: Larry Kolodney, 1985 33 * Author: Larry Kolodney, 1985
34 */ 34 */
35 35
36#include "config.h" 36#ifdef HAVE_CONFIG_H
37#include <config.h>
38#endif
39
37#include <stdio.h> 40#include <stdio.h>
38 41
39#ifndef HAVE_STDLIB_H 42#ifndef HAVE_STDLIB_H
@@ -119,7 +122,7 @@ main (argc, argv)
119 } 122 }
120 } 123 }
121 fclose (mddf); 124 fclose (mddf);
122 fclose (mfilef); 125 fclose (mfilef);
123 return 0; 126 return 0;
124} 127}
125 128
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index 13d3e1fe7c9..27bce2d0b1d 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -23,7 +23,7 @@ Boston, MA 02111-1307, USA. */
23#define NO_SHORTNAMES 23#define NO_SHORTNAMES
24 24
25#ifdef HAVE_CONFIG_H 25#ifdef HAVE_CONFIG_H
26#include "config.h" 26#include <config.h>
27#endif 27#endif
28 28
29#undef signal 29#undef signal
diff --git a/lib-src/emacsserver.c b/lib-src/emacsserver.c
index 431c5b3e4e2..3d099098436 100644
--- a/lib-src/emacsserver.c
+++ b/lib-src/emacsserver.c
@@ -28,7 +28,7 @@ Boston, MA 02111-1307, USA. */
28#define NO_SHORTNAMES 28#define NO_SHORTNAMES
29 29
30#ifdef HAVE_CONFIG_H 30#ifdef HAVE_CONFIG_H
31#include "config.h" 31#include <config.h>
32#endif 32#endif
33 33
34#include <signal.h> 34#include <signal.h>
diff --git a/lib-src/pop.c b/lib-src/pop.c
index 1c2cc95ac68..2cf8f9243f4 100644
--- a/lib-src/pop.c
+++ b/lib-src/pop.c
@@ -21,7 +21,7 @@ Boston, MA 02111-1307, USA. */
21 21
22#ifdef HAVE_CONFIG_H 22#ifdef HAVE_CONFIG_H
23#define NO_SHORTNAMES /* Tell config not to load remap.h */ 23#define NO_SHORTNAMES /* Tell config not to load remap.h */
24#include <../src/config.h> 24#include <config.h>
25#else 25#else
26#define MAIL_USE_POP 26#define MAIL_USE_POP
27#endif 27#endif
diff --git a/lib-src/sorted-doc.c b/lib-src/sorted-doc.c
index d0c160b8ad8..d474924cf18 100644
--- a/lib-src/sorted-doc.c
+++ b/lib-src/sorted-doc.c
@@ -23,7 +23,10 @@
23 23
24 This version sorts the output by function name. */ 24 This version sorts the output by function name. */
25 25
26#include "config.h" 26#ifdef HAVE_CONFIG_H
27#include <config.h>
28#endif
29
27#include <stdio.h> 30#include <stdio.h>
28#include <ctype.h> 31#include <ctype.h>
29#ifndef HAVE_STDLIB_H /* config.h includes stdlib. */ 32#ifndef HAVE_STDLIB_H /* config.h includes stdlib. */
diff --git a/lib-src/yow.c b/lib-src/yow.c
index a45623eeb41..c658b15e41f 100644
--- a/lib-src/yow.c
+++ b/lib-src/yow.c
@@ -10,7 +10,10 @@
10 * With dynamic memory allocation. 10 * With dynamic memory allocation.
11 */ 11 */
12 12
13#include "config.h" 13#ifdef HAVE_CONFIG_H
14#include <config.h>
15#endif
16
14#include <stdio.h> 17#include <stdio.h>
15#include <ctype.h> 18#include <ctype.h>
16#ifdef HAVE_STRING_H 19#ifdef HAVE_STRING_H