aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGeoff Voelker1998-11-03 02:26:21 +0000
committerGeoff Voelker1998-11-03 02:26:21 +0000
commit4488d7e15cc117238967ba30a8694b62ec64987a (patch)
treeea206ce889e89d66b9ea97ca5b3bac0ea3f2f628 /src
parent0f1057e9e8c9aa43c00b59b4752f9b3ce7927144 (diff)
downloademacs-4488d7e15cc117238967ba30a8694b62ec64987a.tar.gz
emacs-4488d7e15cc117238967ba30a8694b62ec64987a.zip
(Fsubstitute_in_file_name) [DOS_NT]: Fix typo.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 79b535adc80..4e6b620e324 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -2111,7 +2111,7 @@ duplicates what `expand-file-name' does.")
2111 xnm = p; 2111 xnm = p;
2112#ifdef DOS_NT 2112#ifdef DOS_NT
2113 else if (IS_DRIVE (p[0]) && p[1] == ':' 2113 else if (IS_DRIVE (p[0]) && p[1] == ':'
2114 && p > nm && IS_DIRECTORY_SEP (p[-1])) 2114 && p > xnm && IS_DIRECTORY_SEP (p[-1]))
2115 xnm = p; 2115 xnm = p;
2116#endif 2116#endif
2117 2117