diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/ebrowse.c | 8 |
2 files changed, 9 insertions, 4 deletions
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 @@ | |||
| 1 | 2000-06-23 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * ebrowse.c: Move config.h before other includes (which may use | ||
| 4 | feature tests). | ||
| 5 | |||
| 1 | 2000-06-14 Jim Meyering <meyering@lucent.com> | 6 | 2000-06-14 Jim Meyering <meyering@lucent.com> |
| 2 | 7 | ||
| 3 | * grep-changelog: Fix typos in comments. Remove trailing blanks. | 8 | * 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 @@ | |||
| 21 | along with GNU Emacs; see the file COPYING. If not, write to | 21 | along with GNU Emacs; see the file COPYING. If not, write to |
| 22 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | 22 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ |
| 23 | 23 | ||
| 24 | #ifdef HAVE_CONFIG_H | ||
| 25 | #include <config.h> | ||
| 26 | #endif | ||
| 27 | |||
| 24 | #include <stdio.h> | 28 | #include <stdio.h> |
| 25 | #include <stdlib.h> | 29 | #include <stdlib.h> |
| 26 | #include <string.h> | 30 | #include <string.h> |
| @@ -28,10 +32,6 @@ | |||
| 28 | #include <assert.h> | 32 | #include <assert.h> |
| 29 | #include "getopt.h" | 33 | #include "getopt.h" |
| 30 | 34 | ||
| 31 | #ifdef HAVE_CONFIG_H | ||
| 32 | #include <config.h> | ||
| 33 | #endif | ||
| 34 | |||
| 35 | /* Conditionalize function prototypes. */ | 35 | /* Conditionalize function prototypes. */ |
| 36 | 36 | ||
| 37 | #ifdef PROTOTYPES /* From config.h. */ | 37 | #ifdef PROTOTYPES /* From config.h. */ |