emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108970: lib-src/emacsclient.c (w32_e


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108970: lib-src/emacsclient.c (w32_execvp): Declare execvp to silence the compiler.
Date: Mon, 09 Jul 2012 16:01:41 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108970
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Mon 2012-07-09 16:01:41 +0200
message:
  lib-src/emacsclient.c (w32_execvp): Declare execvp to silence the compiler.
modified:
  lib-src/ChangeLog
  lib-src/emacsclient.c
=== modified file 'lib-src/ChangeLog'
--- a/lib-src/ChangeLog 2012-07-09 04:21:55 +0000
+++ b/lib-src/ChangeLog 2012-07-09 14:01:41 +0000
@@ -1,5 +1,9 @@
 2012-07-09  Juanma Barranquero  <address@hidden>
 
+       * emacsclient.c (w32_execvp): Declare execvp to silence the compiler.
+
+2012-07-09  Juanma Barranquero  <address@hidden>
+
        * makefile.w32-in ($(BLD)/test-distrib.exe): Use LIB_SRC, not SRC.
        (LIB_SRC, NT_INC, GNU_LIB, MS_W32_H, CONFIG_H, INTTYPES_H, NTLIB_H)
        (SYSTIME_H): New macros.

=== modified file 'lib-src/emacsclient.c'
--- a/lib-src/emacsclient.c     2012-07-09 14:00:31 +0000
+++ b/lib-src/emacsclient.c     2012-07-09 14:01:41 +0000
@@ -463,6 +463,7 @@
 w32_execvp (const char *path, char **argv)
 {
   int i;
+  extern int execvp (const char*, char **);
 
   /* Required to allow a .BAT script as alternate editor.  */
   argv[0] = (char *) alternate_editor;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]