]> git.eshelyaron.com Git - emacs.git/commitdiff
Include <getopt.h> not "getopt.h".
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 9 Jan 2011 08:00:02 +0000 (00:00 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 9 Jan 2011 08:00:02 +0000 (00:00 -0800)
* ebrowse.c, emacsclient.c: Include <getopt.h>, not "getopt.h".
Since getopt.h is no longer in this directory, there's no point
using the form with double-quotes.

lib-src/ChangeLog
lib-src/ebrowse.c
lib-src/emacsclient.c

index 545b4746b95a20e2e67d9a1fb63ea159bb58c7b1..cdceff66db465f1d8b552d36e02339c40f8aadda 100644 (file)
@@ -1,5 +1,10 @@
 2011-01-09  Paul Eggert  <eggert@cs.ucla.edu>
 
+       Include <getopt.h> not "getopt.h".
+       * ebrowse.c, emacsclient.c: Include <getopt.h>, not "getopt.h".
+       Since getopt.h is no longer in this directory, there's no point
+       using the form with double-quotes.
+
        Remove unused files.
        * getopt.c, getopt1.c, getopt_.h, getopt_int.h: Remove.
        These files are now in ../lib, copied from gnulib.
index 72709503070d943af6df375d4d11bac19d442758..5cb9de5d8f0e9ff7d63dd0d3814894807d82d2f7 100644 (file)
@@ -30,7 +30,7 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <string.h>
 #include <ctype.h>
 #include <assert.h>
-#include "getopt.h"
+#include <getopt.h>
 
 /* The SunOS compiler doesn't have SEEK_END.  */
 #ifndef SEEK_END
index 48ea3d22dc96dfe40f6d6d99f1a964fda88d8182..7bf19d11473eda0348f0c7adca134bedadebf2f3 100644 (file)
@@ -74,7 +74,7 @@ char *w32_getenv (char *);
 #include <stdarg.h>
 #include <ctype.h>
 #include <stdio.h>
-#include "getopt.h"
+#include <getopt.h>
 #ifdef HAVE_UNISTD_H
 # include <unistd.h>
 #endif