From: Dave Love Date: Fri, 23 Jun 2000 11:36:52 +0000 (+0000) Subject: Move config.h before other includes (which may use feature tests). X-Git-Tag: emacs-pretest-21.0.90~3112 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=53245ee2d121e463fbeb6d1ef76aebb3968c454e;p=emacs.git Move config.h before other includes (which may use feature tests). --- diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 84672f5d2f4..616aebb41fc 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,8 @@ +2000-06-23 Dave Love + + * ebrowse.c: Move config.h before other includes (which may use + feature tests). + 2000-06-14 Jim Meyering * grep-changelog: Fix typos in comments. Remove trailing blanks. diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index 6051199da86..0099641d2f5 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c @@ -21,6 +21,10 @@ along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include @@ -28,10 +32,6 @@ #include #include "getopt.h" -#ifdef HAVE_CONFIG_H -#include -#endif - /* Conditionalize function prototypes. */ #ifdef PROTOTYPES /* From config.h. */