diff options
| author | Glenn Morris | 2018-01-30 07:50:25 -0800 |
|---|---|---|
| committer | Glenn Morris | 2018-01-30 07:50:25 -0800 |
| commit | 084cfae0e624469ebca78b155ffe4e2c20f2b205 (patch) | |
| tree | 090f0efbf80386248f99a054e45be8206d174b15 /doc/lispref/files.texi | |
| parent | 84055bda91d48dd603110b0805560cf1df205a83 (diff) | |
| parent | bc8dc37f1cd6dcede1f5f409a3aeb8fb345d642e (diff) | |
| download | emacs-084cfae0e624469ebca78b155ffe4e2c20f2b205.tar.gz emacs-084cfae0e624469ebca78b155ffe4e2c20f2b205.zip | |
Merge from origin/emacs-26
bc8dc37 (origin/emacs-26) Minor copyedits in "Distribution" chapter o...
1c7a936 Minor copyedits in "Entering" chapter of Emacs manual.
1d4498b Minor wording change in the Emacs manual
2bf49e7 Fix a typo in the Emacs manual
f3546a2 Improve the "Basic" chapter of the Emacs manual
691431e Resurrect lost text in lispref
956807b * lisp/emacs-lisp/rx.el (rx): Fix the definition of 'blank'.
7d90d2e Proofread os.texi and files.texi
490c736 Minor improvements in the "International" chapter of Emacs ma...
79252d3 Minor improvement in "Text" chapter of Emacs manual
Diffstat (limited to 'doc/lispref/files.texi')
| -rw-r--r-- | doc/lispref/files.texi | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index 021a62a56ab..6a0312bd2f3 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi | |||
| @@ -1170,14 +1170,14 @@ Sometimes file names or their parts need to be compared as strings, in | |||
| 1170 | which case it's important to know whether the underlying filesystem is | 1170 | which case it's important to know whether the underlying filesystem is |
| 1171 | case-insensitive. This function returns @code{t} if file | 1171 | case-insensitive. This function returns @code{t} if file |
| 1172 | @var{filename} is on a case-insensitive filesystem. It always returns | 1172 | @var{filename} is on a case-insensitive filesystem. It always returns |
| 1173 | @code{t} on MS-DOS and MS-Windows. On Cygwin and Mac OS X, | 1173 | @code{t} on MS-DOS and MS-Windows. On Cygwin and macOS, |
| 1174 | filesystems may or may not be case-insensitive, and the function tries | 1174 | filesystems may or may not be case-insensitive, and the function tries |
| 1175 | to determine case-sensitivity by a runtime test. If the test is | 1175 | to determine case-sensitivity by a runtime test. If the test is |
| 1176 | inconclusive, the function returns @code{t} on Cygwin and @code{nil} | 1176 | inconclusive, the function returns @code{t} on Cygwin and @code{nil} |
| 1177 | on Mac OS X. | 1177 | on macOS. |
| 1178 | 1178 | ||
| 1179 | Currently this function always returns @code{nil} on platforms other | 1179 | Currently this function always returns @code{nil} on platforms other |
| 1180 | than MS-DOS, MS-Windows, Cygwin, and Mac OS X. It does not detect | 1180 | than MS-DOS, MS-Windows, Cygwin, and macOS. It does not detect |
| 1181 | case-insensitivity of mounted filesystems, such as Samba shares or | 1181 | case-insensitivity of mounted filesystems, such as Samba shares or |
| 1182 | NFS-mounted Windows volumes. On remote hosts, it assumes @code{t} for | 1182 | NFS-mounted Windows volumes. On remote hosts, it assumes @code{t} for |
| 1183 | the @samp{smb} method. For all other connection methods, runtime | 1183 | the @samp{smb} method. For all other connection methods, runtime |
| @@ -1297,9 +1297,10 @@ The file's @acronym{GID}, likewise (@code{file-attribute-group-id}). | |||
| 1297 | The time of last access, as a list of four integers | 1297 | The time of last access, as a list of four integers |
| 1298 | @code{(@var{sec-high} @var{sec-low} @var{microsec} @var{picosec})} | 1298 | @code{(@var{sec-high} @var{sec-low} @var{microsec} @var{picosec})} |
| 1299 | (@code{file-attribute-access-time}). (This is similar to the value of | 1299 | (@code{file-attribute-access-time}). (This is similar to the value of |
| 1300 | @code{current-time}; see @ref{Time of Day}.) Note that on some | 1300 | @code{current-time}; see @ref{Time of Day}.) The value is truncated |
| 1301 | to that of the filesystem's timestamp resolution; for example, on some | ||
| 1301 | FAT-based filesystems, only the date of last access is recorded, so | 1302 | FAT-based filesystems, only the date of last access is recorded, so |
| 1302 | this time will always hold the midnight of the day of last access. | 1303 | this time will always hold the midnight of the day of the last access. |
| 1303 | 1304 | ||
| 1304 | @cindex modification time of file | 1305 | @cindex modification time of file |
| 1305 | @item | 1306 | @item |