aboutsummaryrefslogtreecommitdiffstats
path: root/nt/cmdproxy.c
diff options
context:
space:
mode:
authorStefan Monnier2011-03-31 00:24:03 -0400
committerStefan Monnier2011-03-31 00:24:03 -0400
commit40d83b412f584cc02e68d4eac8fd5e6eb769e2fe (patch)
treeb56f27a7e6d75a8c1fd27b00179a27b5efea0a32 /nt/cmdproxy.c
parentf488fb6528738131ef41859e1f04125f2e50efce (diff)
parent44f230aa043ebb222aa0876b44d70484d5dd38db (diff)
downloademacs-40d83b412f584cc02e68d4eac8fd5e6eb769e2fe.tar.gz
emacs-40d83b412f584cc02e68d4eac8fd5e6eb769e2fe.zip
Merge from trunk
Diffstat (limited to 'nt/cmdproxy.c')
-rw-r--r--nt/cmdproxy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nt/cmdproxy.c b/nt/cmdproxy.c
index 9a98e1e5034..b9572570c5f 100644
--- a/nt/cmdproxy.c
+++ b/nt/cmdproxy.c
@@ -33,6 +33,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
33#include <malloc.h> /* alloca */ 33#include <malloc.h> /* alloca */
34#include <stdlib.h> /* getenv */ 34#include <stdlib.h> /* getenv */
35#include <string.h> /* strlen */ 35#include <string.h> /* strlen */
36#include <ctype.h> /* isspace, isalpha */
36 37
37/* We don't want to include stdio.h because we are already duplicating 38/* We don't want to include stdio.h because we are already duplicating
38 lots of it here */ 39 lots of it here */
@@ -251,7 +252,6 @@ make_absolute (const char *prog)
251 char curdir[MAX_PATH]; 252 char curdir[MAX_PATH];
252 char *p, *path; 253 char *p, *path;
253 const char *fname; 254 const char *fname;
254 int i;
255 255
256 /* At least partial absolute path specified; search there. */ 256 /* At least partial absolute path specified; search there. */
257 if ((isalpha (prog[0]) && prog[1] == ':') || 257 if ((isalpha (prog[0]) && prog[1] == ':') ||