diff options
| author | Eli Zaretskii | 2008-05-10 09:01:28 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-05-10 09:01:28 +0000 |
| commit | 102d70a83d45105b2580fcebbef3360848ddfe18 (patch) | |
| tree | 0360a03af0f3a42bdf1a72733ffa2bf3ae04fd53 | |
| parent | d1712a51db8c8413f7b393103d009d84ae607774 (diff) | |
| download | emacs-102d70a83d45105b2580fcebbef3360848ddfe18.tar.gz emacs-102d70a83d45105b2580fcebbef3360848ddfe18.zip | |
(Fdirectory_files_and_attributes, Ffile_attributes): Mention
w32-get-true-file-attributes in the doc strings.
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/dired.c | 9 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 984c997b544..0cb3994844b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2008-05-10 Eli Zaretskii <eliz@gnu.org> | 1 | 2008-05-10 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * dired.c (Fdirectory_files_and_attributes, Ffile_attributes): | ||
| 4 | Mention w32-get-true-file-attributes in the doc strings. | ||
| 5 | |||
| 3 | * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix. | 6 | * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix. |
| 4 | 7 | ||
| 5 | * w32.c (stat): Fix test of Vw32_get_true_file_attributes against | 8 | * w32.c (stat): Fix test of Vw32_get_true_file_attributes against |
diff --git a/src/dired.c b/src/dired.c index 7936e04a54e..ef6c3e3f9db 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -374,7 +374,9 @@ If MATCH is non-nil, mention only file names that match the regexp MATCH. | |||
| 374 | If NOSORT is non-nil, the list is not sorted--its order is unpredictable. | 374 | If NOSORT is non-nil, the list is not sorted--its order is unpredictable. |
| 375 | NOSORT is useful if you plan to sort the result yourself. | 375 | NOSORT is useful if you plan to sort the result yourself. |
| 376 | ID-FORMAT specifies the preferred format of attributes uid and gid, see | 376 | ID-FORMAT specifies the preferred format of attributes uid and gid, see |
| 377 | `file-attributes' for further documentation. */) | 377 | `file-attributes' for further documentation. |
| 378 | On MS-Windows, performance depends on `w32-get-true-file-attributes', | ||
| 379 | which see. */) | ||
| 378 | (directory, full, match, nosort, id_format) | 380 | (directory, full, match, nosort, id_format) |
| 379 | Lisp_Object directory, full, match, nosort, id_format; | 381 | Lisp_Object directory, full, match, nosort, id_format; |
| 380 | { | 382 | { |
| @@ -921,7 +923,10 @@ Elements of the attribute list are: | |||
| 921 | this is a cons cell containing two integers: first the high part, | 923 | this is a cons cell containing two integers: first the high part, |
| 922 | then the low 16 bits. | 924 | then the low 16 bits. |
| 923 | 11. Device number. If it is larger than the Emacs integer, this is | 925 | 11. Device number. If it is larger than the Emacs integer, this is |
| 924 | a cons cell, similar to the inode number. */) | 926 | a cons cell, similar to the inode number. |
| 927 | |||
| 928 | On MS-Windows, performance depends on `w32-get-true-file-attributes', | ||
| 929 | which see. */) | ||
| 925 | (filename, id_format) | 930 | (filename, id_format) |
| 926 | Lisp_Object filename, id_format; | 931 | Lisp_Object filename, id_format; |
| 927 | { | 932 | { |