From: Eli Zaretskii Date: Fri, 27 Apr 2007 13:33:33 +0000 (+0000) Subject: Add item about support for large files on MS-Windows. X-Git-Tag: emacs-pretest-23.0.90~12784 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=81e4af5f191df8f589b80825b18c27ff3fb6b1c8;p=emacs.git Add item about support for large files on MS-Windows. --- diff --git a/etc/TODO b/etc/TODO index 0c778c7b7be..50fb4a19484 100644 --- a/etc/TODO +++ b/etc/TODO @@ -484,6 +484,13 @@ when the body only calls primitives. the definition of `file-attributes' and `directory-files-and-attributes' and from the calls. +** Modify the emulation of `stat' for MS-Windows to support large files. + The current version uses the stock Windows definition of `struct + stat', where the file's size is returned as a 32-bit integer. That + overflows for files larger than 4GB. To fix, modify `stat' to use + 64-bit size, and use a declaration of `struct stat' that supports + such sizes. + ** Make language-info-alist customizable. Currently a user can customize only the variable `current-language-environment'.