aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dired.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/dired.c b/src/dired.c
index 1584b6acf08..442d3aa48fb 100644
--- a/src/dired.c
+++ b/src/dired.c
@@ -293,7 +293,8 @@ DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0,
293There are three optional arguments: 293There are three optional arguments:
294If FULL is non-nil, return absolute file names. Otherwise return names 294If FULL is non-nil, return absolute file names. Otherwise return names
295 that are relative to the specified directory. 295 that are relative to the specified directory.
296If MATCH is non-nil, mention only file names that match the regexp MATCH. 296If MATCH is non-nil, mention only file names which non-directory part
297 matches the regexp MATCH.
297If NOSORT is non-nil, the list is not sorted--its order is unpredictable. 298If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
298 Otherwise, the list returned is sorted with `string-lessp'. 299 Otherwise, the list returned is sorted with `string-lessp'.
299 NOSORT is useful if you plan to sort the result yourself. */) 300 NOSORT is useful if you plan to sort the result yourself. */)
@@ -325,11 +326,12 @@ by `file-attributes'.
325This function accepts four optional arguments: 326This function accepts four optional arguments:
326If FULL is non-nil, return absolute file names. Otherwise return names 327If FULL is non-nil, return absolute file names. Otherwise return names
327 that are relative to the specified directory. 328 that are relative to the specified directory.
328If MATCH is non-nil, mention only file names that match the regexp MATCH. 329If MATCH is non-nil, mention only file names which non-directory part
330 matches the regexp MATCH.
329If 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.
330 NOSORT is useful if you plan to sort the result yourself. 332 NOSORT is useful if you plan to sort the result yourself.
331ID-FORMAT specifies the preferred format of attributes uid and gid, see 333ID-FORMAT specifies the preferred format of attributes uid and gid, see
332`file-attributes' for further documentation. 334 `file-attributes' for further documentation.
333On MS-Windows, performance depends on `w32-get-true-file-attributes', 335On MS-Windows, performance depends on `w32-get-true-file-attributes',
334which see. */) 336which see. */)
335 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, 337 (Lisp_Object directory, Lisp_Object full, Lisp_Object match,