summaryrefslogtreecommitdiff
path: root/src/lread.c
diff options
context:
space:
mode:
authorAndrea Corallo <andrea_corallo@yahoo.it>2019-09-01 12:40:54 +0200
committerAndrea Corallo <akrl@sdf.org>2020-01-01 11:37:41 +0100
commit90425b6d4b314f8f4c26cbf61ec24fdffec4c0f7 (patch)
treea3f0f2069b54eca510455d2a90145e2bc90a1a5b /src/lread.c
parenta102f471b3973d46d6954bc31c6170ddffd508da (diff)
downloademacs-90425b6d4b314f8f4c26cbf61ec24fdffec4c0f7.tar.gz
emacs-90425b6d4b314f8f4c26cbf61ec24fdffec4c0f7.tar.bz2
emacs-90425b6d4b314f8f4c26cbf61ec24fdffec4c0f7.zip
better messaging when load native elisp
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lread.c b/src/lread.c
index 1a5074cb70b..b10743f980c 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -1534,6 +1534,8 @@ Return t if the file exists and loads successfully. */)
file, 1);
else if (is_module)
message_with_string ("Loading %s (module)...done", file, 1);
+ else if (is_native_elisp)
+ message_with_string ("Loading %s (native compiled elisp)...done", file, 1);
else if (!compiled)
message_with_string ("Loading %s (source)...done", file, 1);
else if (newer)