aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-11-09 15:42:35 +0000
committerGerd Moellmann2000-11-09 15:42:35 +0000
commitcb1544262aabd4048c7247bed9dc57a179a79040 (patch)
tree1e3f07c522c85f394a04b76f35baa3ad4d068e95 /src
parent388ac0988905ef41e8613496e41a524505ed637c (diff)
downloademacs-cb1544262aabd4048c7247bed9dc57a179a79040.tar.gz
emacs-cb1544262aabd4048c7247bed9dc57a179a79040.zip
(directory_files_internal): Fix a braino.
Diffstat (limited to 'src')
-rw-r--r--src/dired.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dired.c b/src/dired.c
index c6466bb967a..9fd9bffc4f1 100644
--- a/src/dired.c
+++ b/src/dired.c
@@ -251,8 +251,7 @@ directory_files_internal (directory, full, match, nosort, attrs)
251 directory_nbytes); 251 directory_nbytes);
252 252
253 if (needsep) 253 if (needsep)
254 XSTRING (fullname)->data[directory_nbytes + 1] 254 XSTRING (fullname)->data[directory_nbytes] = DIRECTORY_SEP;
255 = DIRECTORY_SEP;
256 255
257 bcopy (XSTRING (name)->data, 256 bcopy (XSTRING (name)->data,
258 XSTRING (fullname)->data + directory_nbytes + needsep, 257 XSTRING (fullname)->data + directory_nbytes + needsep,