From 90425b6d4b314f8f4c26cbf61ec24fdffec4c0f7 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 1 Sep 2019 12:40:54 +0200 Subject: [PATCH] better messaging when load native elisp --- src/lread.c | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.39.5