comparison src/dired.c @ 103280:0fbfef200acd

(Ffile_attributes): Doc fix.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 23 May 2009 09:09:28 +0000
parents a2aaf6402fc7
children 87554fb2c23c
comparison
equal deleted inserted replaced
103279:75e6ecda8c42 103280:0fbfef200acd
932 2. File uid as a string or a number. If a string value cannot be 932 2. File uid as a string or a number. If a string value cannot be
933 looked up, a numeric value, either an integer or a float, is returned. 933 looked up, a numeric value, either an integer or a float, is returned.
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.
940 This is a floating point number if the size is too large for an integer. 941 This is a floating point number if the size is too large for an integer.
941 8. File modes, as a string of ten letters or dashes as in ls -l. 942 8. File modes, as a string of ten letters or dashes as in ls -l.
947 first the high 24 bits, then middle 24 bits, and finally the low 16 bits. 948 first the high 24 bits, then middle 24 bits, and finally the low 16 bits.
948 11. Device number. If it is larger than the Emacs integer, this is 949 11. Device number. If it is larger than the Emacs integer, this is
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 {
956 Lisp_Object values[12]; 960 Lisp_Object values[12];
957 Lisp_Object encoded; 961 Lisp_Object encoded;