]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/fileio.c (Ffile_newer_than_file_p): Fix wording (bug#73709).
authorEli Zaretskii <eliz@gnu.org>
Sun, 13 Oct 2024 15:29:34 +0000 (18:29 +0300)
committerEshel Yaron <me@eshelyaron.com>
Tue, 22 Oct 2024 18:49:31 +0000 (20:49 +0200)
(cherry picked from commit ae75ea62324598654b32ed28bf644ec2bc4c04b2)

src/fileio.c

index 291c316102f3d456f875463377cff9a7ea84e788..94bb496f22cf9db58c46b521ef6fc73fc06a9f45 100644 (file)
@@ -3787,8 +3787,8 @@ DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
 
 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
        doc: /* Return t if file FILE1 is newer than file FILE2.
-If FILE1 does not exist, the answer is nil;
-otherwise, if FILE2 does not exist, the answer is t.
+If FILE1 does not exist, the return value is nil;
+if FILE2 does not exist, the return value is t.
 For existing files, this compares their last-modified times.  */)
   (Lisp_Object file1, Lisp_Object file2)
 {