aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-10-14 05:19:37 +0200
committerLars Ingebrigtsen2019-10-14 05:19:37 +0200
commiteac531b760aa805c293339eba78e58b5b89fa211 (patch)
tree77ad2a277bba3e0af6b5a7ad1dcbbbe588cb8574 /src
parenta590a8058d52c1cbe0f80b7ed0d8b0abed7bf7ef (diff)
downloademacs-eac531b760aa805c293339eba78e58b5b89fa211.tar.gz
emacs-eac531b760aa805c293339eba78e58b5b89fa211.zip
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).
Diffstat (limited to 'src')
-rw-r--r--src/lread.c2
1 files changed, 1 insertions, 1 deletions
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. */)
1364 { 1364 {
1365 Lisp_Object msg_file; 1365 Lisp_Object msg_file;
1366 msg_file = Fsubstring (found, make_fixnum (0), make_fixnum (-1)); 1366 msg_file = Fsubstring (found, make_fixnum (0), make_fixnum (-1));
1367 message_with_string ("Source file `%s' newer than byte-compiled file", 1367 message_with_string ("Source file `%s' newer than byte-compiled file; using older file",
1368 msg_file, 1); 1368 msg_file, 1);
1369 } 1369 }
1370 } 1370 }