diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-11-01 17:09:52 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-11-01 17:09:52 +0200 |
commit | dfc89318ceddaa6801746f53c400cacb9685aabe (patch) | |
tree | f0328b6a8c0b6c08902649c15d25929362fc5c4c /doc/lispref/files.texi | |
parent | a5d79fcfe83e3b87a5f044d062afb8d828bfa7b2 (diff) | |
download | emacs-dfc89318ceddaa6801746f53c400cacb9685aabe.tar.gz emacs-dfc89318ceddaa6801746f53c400cacb9685aabe.tar.bz2 emacs-dfc89318ceddaa6801746f53c400cacb9685aabe.zip |
Improve documentation of 'file-has-changed-p'
* etc/NEWS:
* doc/lispref/files.texi (File Attributes): Improve wording of the
documentation of 'file-has-changed-p'.
Diffstat (limited to 'doc/lispref/files.texi')
-rw-r--r-- | doc/lispref/files.texi | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index 250f7a3f9f5..b7420fc678f 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi @@ -1315,12 +1315,14 @@ on the 19th, @file{aug-20} was written on the 20th, and the file @end defun @defun file-has-changed-p filename -This convenience function is useful when, for instance, parsing files -run-time, and you typically want to re-read a file when it has -changed. This function returns non-@code{nil} the first time it's -called on @var{filename} in an Emacs session, but will return -@code{nil} on subsequent calls in that session (unless the file -changes its modification time). +This function returns non-@code{nil} if the time stamp of +@var{filename} has changed since the last call. When called for the +first time for some @var{filename}, it records the last modification +time of the file and returns non-@code{nil}. Thereafter, when called +for the same @var{filename}, it compares the current time stamp with +the recorded one and returns non-@code{nil} only if they are +different. This is useful when a Lisp program wants to re-read a file +whenever it changes. @end defun @defun file-attributes filename &optional id-format |