diff options
| author | Ken Raeburn | 2002-07-15 02:14:17 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-07-15 02:14:17 +0000 |
| commit | 437fcd47c684ce81446ded2bfb69707d78cea613 (patch) | |
| tree | f0111629358f52566f5aeda3792b685ce14532c8 /src | |
| parent | 7412b6fdd2a74fe49a4aa8fca84e4ef9afb5d548 (diff) | |
| download | emacs-437fcd47c684ce81446ded2bfb69707d78cea613.tar.gz emacs-437fcd47c684ce81446ded2bfb69707d78cea613.zip | |
* dired.c (directory_files_internal): Use STRING_SET_CHARS.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dired.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dired.c b/src/dired.c index ec1686ffe14..d43c3eb2119 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -275,7 +275,7 @@ directory_files_internal (directory, full, match, nosort, attrs) | |||
| 275 | if (nchars > nbytes) | 275 | if (nchars > nbytes) |
| 276 | abort (); | 276 | abort (); |
| 277 | 277 | ||
| 278 | SCHARS (fullname) = nchars; | 278 | STRING_SET_CHARS (fullname, nchars); |
| 279 | if (nchars == nbytes) | 279 | if (nchars == nbytes) |
| 280 | STRING_SET_UNIBYTE (fullname); | 280 | STRING_SET_UNIBYTE (fullname); |
| 281 | 281 | ||