aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog5
-rw-r--r--lib-src/ebrowse.c2
-rw-r--r--lib-src/emacsclient.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 545b4746b95..cdceff66db4 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,5 +1,10 @@
12011-01-09 Paul Eggert <eggert@cs.ucla.edu> 12011-01-09 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Include <getopt.h> not "getopt.h".
4 * ebrowse.c, emacsclient.c: Include <getopt.h>, not "getopt.h".
5 Since getopt.h is no longer in this directory, there's no point
6 using the form with double-quotes.
7
3 Remove unused files. 8 Remove unused files.
4 * getopt.c, getopt1.c, getopt_.h, getopt_int.h: Remove. 9 * getopt.c, getopt1.c, getopt_.h, getopt_int.h: Remove.
5 These files are now in ../lib, copied from gnulib. 10 These files are now in ../lib, copied from gnulib.
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c
index 72709503070..5cb9de5d8f0 100644
--- a/lib-src/ebrowse.c
+++ b/lib-src/ebrowse.c
@@ -30,7 +30,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
30#include <string.h> 30#include <string.h>
31#include <ctype.h> 31#include <ctype.h>
32#include <assert.h> 32#include <assert.h>
33#include "getopt.h" 33#include <getopt.h>
34 34
35/* The SunOS compiler doesn't have SEEK_END. */ 35/* The SunOS compiler doesn't have SEEK_END. */
36#ifndef SEEK_END 36#ifndef SEEK_END
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index 48ea3d22dc9..7bf19d11473 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -74,7 +74,7 @@ char *w32_getenv (char *);
74#include <stdarg.h> 74#include <stdarg.h>
75#include <ctype.h> 75#include <ctype.h>
76#include <stdio.h> 76#include <stdio.h>
77#include "getopt.h" 77#include <getopt.h>
78#ifdef HAVE_UNISTD_H 78#ifdef HAVE_UNISTD_H
79# include <unistd.h> 79# include <unistd.h>
80#endif 80#endif