aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2008-08-15 20:17:12 +0000
committerChong Yidong2008-08-15 20:17:12 +0000
commite933b15ea327efc3453520f1d5637b8404ff3e89 (patch)
tree313d8777d38aa26ae5f2793bdc544b418bf51685
parent1c319327bea680f83362080c2d711b0318db0233 (diff)
downloademacs-e933b15ea327efc3453520f1d5637b8404ff3e89.tar.gz
emacs-e933b15ea327efc3453520f1d5637b8404ff3e89.zip
(Fdirectory_files): Doc fix.
-rw-r--r--src/dired.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dired.c b/src/dired.c
index 5e82fef0df2..be654670e9d 100644
--- a/src/dired.c
+++ b/src/dired.c
@@ -329,7 +329,8 @@ If FULL is non-nil, return absolute file names. Otherwise return names
329 that are relative to the specified directory. 329 that are relative to the specified directory.
330If MATCH is non-nil, mention only file names that match the regexp MATCH. 330If MATCH is non-nil, mention only file names that match the regexp MATCH.
331If NOSORT is non-nil, the list is not sorted--its order is unpredictable. 331If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
332 NOSORT is useful if you plan to sort the result yourself. */) 332 Otherwise, the list returned is sorted with `stringp-lessp'.
333 NOSORT is useful if you plan to sort the result yourself. */)
333 (directory, full, match, nosort) 334 (directory, full, match, nosort)
334 Lisp_Object directory, full, match, nosort; 335 Lisp_Object directory, full, match, nosort;
335{ 336{