From eac531b760aa805c293339eba78e58b5b89fa211 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Mon, 14 Oct 2019 05:19:37 +0200 Subject: [PATCH] Clarify message about newer source file * src/lread.c (Fload): Mention which file was actually used instead of just saying that the .el is newer than the .elc (bug#10637). --- src/lread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lread.c b/src/lread.c index 1098190ae7c..4ea62029727 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1364,7 +1364,7 @@ Return t if the file exists and loads successfully. */) { Lisp_Object msg_file; msg_file = Fsubstring (found, make_fixnum (0), make_fixnum (-1)); - message_with_string ("Source file `%s' newer than byte-compiled file", + message_with_string ("Source file `%s' newer than byte-compiled file; using older file", msg_file, 1); } } -- 2.39.5