aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2024-10-13 18:29:34 +0300
committerEli Zaretskii2024-10-13 18:29:34 +0300
commitae75ea62324598654b32ed28bf644ec2bc4c04b2 (patch)
tree6dd0b6568567871d3a5dc545119d9170d6e75586 /src
parentb120397868502e8e4ffc09fdeea6ef4c65662cd1 (diff)
downloademacs-ae75ea62324598654b32ed28bf644ec2bc4c04b2.tar.gz
emacs-ae75ea62324598654b32ed28bf644ec2bc4c04b2.zip
; * src/fileio.c (Ffile_newer_than_file_p): Fix wording (bug#73709).
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 2db2760916b..1b1060d899f 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -3787,8 +3787,8 @@ DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
3787 3787
3788DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0, 3788DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
3789 doc: /* Return t if file FILE1 is newer than file FILE2. 3789 doc: /* Return t if file FILE1 is newer than file FILE2.
3790If FILE1 does not exist, the answer is nil; 3790If FILE1 does not exist, the return value is nil;
3791otherwise, if FILE2 does not exist, the answer is t. 3791if FILE2 does not exist, the return value is t.
3792For existing files, this compares their last-modified times. */) 3792For existing files, this compares their last-modified times. */)
3793 (Lisp_Object file1, Lisp_Object file2) 3793 (Lisp_Object file1, Lisp_Object file2)
3794{ 3794{