aboutsummaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
authorJuanma Barranquero2008-04-12 09:15:10 +0000
committerJuanma Barranquero2008-04-12 09:15:10 +0000
commitf5acc0717259c46dbe2660358dca316957aaa5d7 (patch)
tree799561444d01ddc3520fbebdab495114a5984881 /src/fileio.c
parent5b5a2ea177e799eba183a33aec466d62a1ca949f (diff)
downloademacs-f5acc0717259c46dbe2660358dca316957aaa5d7.tar.gz
emacs-f5acc0717259c46dbe2660358dca316957aaa5d7.zip
(Fexpand_file_name): Add declaration for `p' missing in previous change.
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 26b2ebdeee5..498d2bb192b 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -1545,6 +1545,7 @@ See also the function `substitute-in-file-name'. */)
1545#ifdef WINDOWSNT 1545#ifdef WINDOWSNT
1546 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1])) 1546 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1547 { 1547 {
1548 unsigned char *p;
1548 newdir = strcpy (alloca (strlen (newdir) + 1), newdir); 1549 newdir = strcpy (alloca (strlen (newdir) + 1), newdir);
1549 p = newdir + 2; 1550 p = newdir + 2;
1550 while (*p && !IS_DIRECTORY_SEP (*p)) p++; 1551 while (*p && !IS_DIRECTORY_SEP (*p)) p++;