Mercurial > hg > xemacs-beta
comparison src/dired.c @ 2297:13a418960a88
[xemacs-hg @ 2004-09-22 02:05:42 by stephent]
various doc patches <87isa7awrh.fsf@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Wed, 22 Sep 2004 02:06:52 +0000 |
parents | 04bc9d2f42c7 |
children | ecf1ebac70d8 |
comparison
equal
deleted
inserted
replaced
2296:a58ea4d0d0cd | 2297:13a418960a88 |
---|---|
58 | 58 |
59 DEFUN ("directory-files", Fdirectory_files, 1, 5, 0, /* | 59 DEFUN ("directory-files", Fdirectory_files, 1, 5, 0, /* |
60 Return a list of names of files in DIRECTORY. | 60 Return a list of names of files in DIRECTORY. |
61 There are four optional arguments: | 61 There are four optional arguments: |
62 If FULL is non-nil, absolute pathnames of the files are returned. | 62 If FULL is non-nil, absolute pathnames of the files are returned. |
63 If MATCH is non-nil, only pathnames containing that regexp are returned. | 63 If MATCH is non-nil, only pathnames whose basename contain that regexp are |
64 returned. | |
64 If NOSORT is non-nil, the list is not sorted--its order is unpredictable. | 65 If NOSORT is non-nil, the list is not sorted--its order is unpredictable. |
65 NOSORT is useful if you plan to sort the result yourself. | 66 NOSORT is useful if you plan to sort the result yourself. |
66 If FILES-ONLY is the symbol t, then only the "files" in the directory | 67 If FILES-ONLY is the symbol t, then only the "files" in the directory |
67 will be returned; subdirectories will be excluded. If FILES-ONLY is not | 68 will be returned; subdirectories will be excluded. If FILES-ONLY is not |
68 nil and not t, then only the subdirectories will be returned. Otherwise, | 69 nil and not t, then only the subdirectories will be returned. Otherwise, |