aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2008-05-10 08:35:15 +0000
committerEli Zaretskii2008-05-10 08:35:15 +0000
commit6c5665e9c472bcca38284bef6142a60e19d96447 (patch)
tree55958738223c4c795c9093865d5d6c5e6d0384df /src
parented4c17bb826f4903fc1ca0a815f5074bf0702f2a (diff)
downloademacs-6c5665e9c472bcca38284bef6142a60e19d96447.tar.gz
emacs-6c5665e9c472bcca38284bef6142a60e19d96447.zip
(Ffile_attributes, Fdirectory_files_and_attributes): Mention
w32-get-true-file-attributes in doc string.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/dired.c9
2 files changed, 10 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a8c2686ae99..7cdd8cc69ca 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12008-05-10 Eli Zaretskii <eliz@gnu.org> 12008-05-10 Eli Zaretskii <eliz@gnu.org>
2 2
3 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
4 Mention w32-get-true-file-attributes in doc string.
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
52008-05-09 Glenn Morris <rgm@gnu.org> 82008-05-09 Glenn Morris <rgm@gnu.org>
diff --git a/src/dired.c b/src/dired.c
index 7b4c9166545..f54418a0810 100644
--- a/src/dired.c
+++ b/src/dired.c
@@ -377,7 +377,9 @@ If MATCH is non-nil, mention only file names that match the regexp MATCH.
377If NOSORT is non-nil, the list is not sorted--its order is unpredictable. 377If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
378 NOSORT is useful if you plan to sort the result yourself. 378 NOSORT is useful if you plan to sort the result yourself.
379ID-FORMAT specifies the preferred format of attributes uid and gid, see 379ID-FORMAT specifies the preferred format of attributes uid and gid, see
380`file-attributes' for further documentation. */) 380`file-attributes' for further documentation.
381On MS-Windows, performance depends on `w32-get-true-file-attributes',
382which see. */)
381 (directory, full, match, nosort, id_format) 383 (directory, full, match, nosort, id_format)
382 Lisp_Object directory, full, match, nosort, id_format; 384 Lisp_Object directory, full, match, nosort, id_format;
383{ 385{
@@ -958,7 +960,10 @@ Elements of the attribute list are:
958 is wider than 32 bits, this is a cons cell containing three integers: 960 is wider than 32 bits, this is a cons cell containing three integers:
959 first the high 24 bits, then middle 24 bits, and finally the low 16 bits. 961 first the high 24 bits, then middle 24 bits, and finally the low 16 bits.
96011. Device number. If it is larger than the Emacs integer, this is 96211. Device number. If it is larger than the Emacs integer, this is
961 a cons cell, similar to the inode number. */) 963 a cons cell, similar to the inode number.
964
965On MS-Windows, performance depends on `w32-get-true-file-attributes',
966which see. */)
962 (filename, id_format) 967 (filename, id_format)
963 Lisp_Object filename, id_format; 968 Lisp_Object filename, id_format;
964{ 969{