aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2005-03-30 22:33:00 +0000
committerStefan Monnier2005-03-30 22:33:00 +0000
commitf34574c6d51766120439a80da418a2700309c798 (patch)
tree1dedea3938d470fa5e91bcfa99c6faa4849c87a3 /src
parentec503c284c7c59d1f0b57fccad0f8ebc89f82d05 (diff)
downloademacs-f34574c6d51766120439a80da418a2700309c798.tar.gz
emacs-f34574c6d51766120439a80da418a2700309c798.zip
(search_embedded_absfilename): Fix last change.
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 58efa38c254..7e24c94783b 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -2078,7 +2078,7 @@ search_embedded_absfilename (nm, endp)
2078#if defined (APOLLO) || defined (WINDOWSNT) || defined(CYGWIN) 2078#if defined (APOLLO) || defined (WINDOWSNT) || defined(CYGWIN)
2079 /* // at start of file name is meaningful in Apollo, 2079 /* // at start of file name is meaningful in Apollo,
2080 WindowsNT and Cygwin systems. */ 2080 WindowsNT and Cygwin systems. */
2081 && !(IS_DIRECTORY_SEP (p[0]) && p - 1 != nm) 2081 && !(IS_DIRECTORY_SEP (p[0]) && p - 1 == nm)
2082#endif /* not (APOLLO || WINDOWSNT || CYGWIN) */ 2082#endif /* not (APOLLO || WINDOWSNT || CYGWIN) */
2083 ) 2083 )
2084 { 2084 {