diff options
| author | Eli Zaretskii | 2009-05-23 09:10:42 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2009-05-23 09:10:42 +0000 |
| commit | 21f73755fe7c72cc2a66acf46f1e1cc875910f17 (patch) | |
| tree | 4652be97c4de6e3849532ba6b392d537d4e679d5 /src | |
| parent | 70cb3ee246956827b9986fca47b5ad235444bc7e (diff) | |
| download | emacs-21f73755fe7c72cc2a66acf46f1e1cc875910f17.tar.gz emacs-21f73755fe7c72cc2a66acf46f1e1cc875910f17.zip | |
(Ffile_attributes): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/dired.c | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index dbc608cde14..c51bbd52b63 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-05-23 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * dired.c (Ffile_attributes): Doc fix. | ||
| 4 | |||
| 1 | 2009-05-22 Chong Yidong <cyd@stupidchicken.com> | 5 | 2009-05-22 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685). | 7 | * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685). |
diff --git a/src/dired.c b/src/dired.c index 3505448017e..999d6683432 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -934,6 +934,7 @@ Elements of the attribute list are: | |||
| 934 | 3. File gid, likewise. | 934 | 3. File gid, likewise. |
| 935 | 4. Last access time, as a list of two integers. | 935 | 4. Last access time, as a list of two integers. |
| 936 | First integer has high-order 16 bits of time, second has low 16 bits. | 936 | First integer has high-order 16 bits of time, second has low 16 bits. |
| 937 | (See a note below about FAT-based filesystems.) | ||
| 937 | 5. Last modification time, likewise. | 938 | 5. Last modification time, likewise. |
| 938 | 6. Last status change time, likewise. | 939 | 6. Last status change time, likewise. |
| 939 | 7. Size in bytes. | 940 | 7. Size in bytes. |
| @@ -949,7 +950,10 @@ Elements of the attribute list are: | |||
| 949 | a cons cell, similar to the inode number. | 950 | a cons cell, similar to the inode number. |
| 950 | 951 | ||
| 951 | On MS-Windows, performance depends on `w32-get-true-file-attributes', | 952 | On MS-Windows, performance depends on `w32-get-true-file-attributes', |
| 952 | which see. */) | 953 | which see. |
| 954 | |||
| 955 | On some FAT-based filesystems, only the date of last access is recorded, | ||
| 956 | so last access time will always be midnight of that day. */) | ||
| 953 | (filename, id_format) | 957 | (filename, id_format) |
| 954 | Lisp_Object filename, id_format; | 958 | Lisp_Object filename, id_format; |
| 955 | { | 959 | { |