# HG changeset patch # User Simon Marshall # Date 877618705 0 # Node ID 13074c25ab06f4a73ef8d44d2478d8635f501632 # Parent 5bd2ed765d526a58467ff267e5638f00514c87e2 Indicate in messages if source code is being loaded. diff -r 5bd2ed765d52 -r 13074c25ab06 lisp/international/mule.el --- a/lisp/international/mule.el Thu Oct 23 13:43:14 1997 +0000 +++ b/lisp/international/mule.el Thu Oct 23 14:58:25 1997 +0000 @@ -49,10 +49,14 @@ ;; We can't use `generate-new-buffer' because files.el ;; is not yet loaded. (get-buffer-create (generate-new-buffer-name " *load*")))) - (load-in-progress t)) - (or nomessage (message "Loading %s..." file)) - (if purify-flag - (setq preloaded-file-list (cons file preloaded-file-list))) + (load-in-progress t) + (source (save-match-data (string-match "\\.el\\'" fullname)))) + (unless nomessage + (if source + (message "Loading %s (source)..." file) + (message "Loading %s..." file))) + (when purify-flag + (setq preloaded-file-list (cons file preloaded-file-list))) (unwind-protect (let ((load-file-name fullname) (inhibit-file-name-operation nil)) @@ -68,10 +72,12 @@ (let (kill-buffer-hook kill-buffer-query-functions) (kill-buffer buffer))) (let ((hook (assoc file after-load-alist))) - (if hook - (mapcar (function eval) (cdr hook)))) - (or nomessage noninteractive - (message "Loading %s...done" file)) + (when hook + (mapcar (function eval) (cdr hook)))) + (unless (or nomessage noninteractive) + (if source + (message "Loading %s (source)...done" file) + (message "Loading %s...done" file))) t))) ;; API (Application Program Interface) for charsets. diff -r 5bd2ed765d52 -r 13074c25ab06 src/lread.c --- a/src/lread.c Thu Oct 23 13:43:14 1997 +0000 +++ b/src/lread.c Thu Oct 23 14:58:25 1997 +0000 @@ -534,12 +534,12 @@ if (NILP (nomessage)) { - if (newer) + if (!compiled) + message ("Loading %s (source)...", XSTRING (file)->data); + else if (newer) message ("Loading %s (compiled; note, source file is newer)...", XSTRING (file)->data); - else if (compiled) - message ("Loading %s (compiled)...", XSTRING (file)->data); - else + else /* The typical case; compiled file newer than source file. */ message ("Loading %s...", XSTRING (file)->data); } @@ -570,12 +570,12 @@ if (!noninteractive && NILP (nomessage)) { - if (newer) + if (!compiled) + message ("Loading %s (source)...done", XSTRING (file)->data); + else if (newer) message ("Loading %s (compiled; note, source file is newer)...done", XSTRING (file)->data); - else if (compiled) - message ("Loading %s (compiled)...done", XSTRING (file)->data); - else + else /* The typical case; compiled file newer than source file. */ message ("Loading %s...done", XSTRING (file)->data); } return Qt;