aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2009-05-23 09:10:42 +0000
committerEli Zaretskii2009-05-23 09:10:42 +0000
commit21f73755fe7c72cc2a66acf46f1e1cc875910f17 (patch)
tree4652be97c4de6e3849532ba6b392d537d4e679d5 /src
parent70cb3ee246956827b9986fca47b5ad235444bc7e (diff)
downloademacs-21f73755fe7c72cc2a66acf46f1e1cc875910f17.tar.gz
emacs-21f73755fe7c72cc2a66acf46f1e1cc875910f17.zip
(Ffile_attributes): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/dired.c6
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 @@
12009-05-23 Eli Zaretskii <eliz@gnu.org>
2
3 * dired.c (Ffile_attributes): Doc fix.
4
12009-05-22 Chong Yidong <cyd@stupidchicken.com> 52009-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
951On MS-Windows, performance depends on `w32-get-true-file-attributes', 952On MS-Windows, performance depends on `w32-get-true-file-attributes',
952which see. */) 953which see.
954
955On some FAT-based filesystems, only the date of last access is recorded,
956so 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{