diff options
| author | Dmitry Antipov | 2014-09-02 07:47:54 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2014-09-02 07:47:54 +0400 |
| commit | 068c8b7d6aa777b44032c71a869d799107644574 (patch) | |
| tree | 40137e8ea660726fb78c17f71b47097c17cf434a /src | |
| parent | 50e9e580077869b2f2ced5916299bade6b4f4efd (diff) | |
| download | emacs-068c8b7d6aa777b44032c71a869d799107644574.tar.gz emacs-068c8b7d6aa777b44032c71a869d799107644574.zip | |
* fileio.c (Fexpand_file_name): Fix MS-Windows build failure.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index d4929184cee..2842839f2b3 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -1342,7 +1342,7 @@ filesystem tree, not (expand-file-name ".." dirname). */) | |||
| 1342 | memcpy (adir, SSDATA (tem), newdirlen + 1); | 1342 | memcpy (adir, SSDATA (tem), newdirlen + 1); |
| 1343 | } | 1343 | } |
| 1344 | else | 1344 | else |
| 1345 | newdirlen = strlen (aidr); | 1345 | newdirlen = strlen (adir); |
| 1346 | newdir = adir; | 1346 | newdir = adir; |
| 1347 | } | 1347 | } |
| 1348 | 1348 | ||