diff options
| author | Andrea Corallo | 2019-09-01 12:40:54 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2020-01-01 11:37:41 +0100 |
| commit | 90425b6d4b314f8f4c26cbf61ec24fdffec4c0f7 (patch) | |
| tree | a3f0f2069b54eca510455d2a90145e2bc90a1a5b /src/lread.c | |
| parent | a102f471b3973d46d6954bc31c6170ddffd508da (diff) | |
| download | emacs-90425b6d4b314f8f4c26cbf61ec24fdffec4c0f7.tar.gz emacs-90425b6d4b314f8f4c26cbf61ec24fdffec4c0f7.zip | |
better messaging when load native elisp
Diffstat (limited to 'src/lread.c')
| -rw-r--r-- | src/lread.c | 2 |
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. */) | |||
| 1534 | file, 1); | 1534 | file, 1); |
| 1535 | else if (is_module) | 1535 | else if (is_module) |
| 1536 | message_with_string ("Loading %s (module)...done", file, 1); | 1536 | message_with_string ("Loading %s (module)...done", file, 1); |
| 1537 | else if (is_native_elisp) | ||
| 1538 | message_with_string ("Loading %s (native compiled elisp)...done", file, 1); | ||
| 1537 | else if (!compiled) | 1539 | else if (!compiled) |
| 1538 | message_with_string ("Loading %s (source)...done", file, 1); | 1540 | message_with_string ("Loading %s (source)...done", file, 1); |
| 1539 | else if (newer) | 1541 | else if (newer) |