From: Richard M. Stallman Date: Sat, 21 Mar 1998 18:23:09 +0000 (+0000) Subject: (Fdirectory_files): In FULL case, compute number of characters X-Git-Tag: emacs-20.3~1813 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8ec5a40461420a6cac52c9bd089cd8bd01d0c6eb;p=emacs.git (Fdirectory_files): In FULL case, compute number of characters --- diff --git a/src/dired.c b/src/dired.c index 076b42ee40c..090f58b7252 100644 --- a/src/dired.c +++ b/src/dired.c @@ -206,6 +206,7 @@ If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\ int afterdirindex = dirnamelen; int total = len + dirnamelen; int needsep = 0; + int nchars; /* Decide whether we need to add a directory separator. */ #ifndef VMS @@ -221,6 +222,11 @@ If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\ XSTRING (name)->data[afterdirindex++] = DIRECTORY_SEP; bcopy (dp->d_name, XSTRING (name)->data + afterdirindex, len); + nchars = chars_in_text (dp->d_name, + afterdirindex + len); + XSTRING (name)->size = nchars; + if (nchars == STRING_BYTES (XSTRING (name))) + SET_STRING_BYTES (XSTRING (name), -1); } else name = make_string (dp->d_name, len);