diff src/lread.c @ 1275:57b76886836d

[xemacs-hg @ 2003-02-08 02:29:52 by ben] fixes to hyper-apropos, menubar-items, text-props, update-elc, lread.c; see log msg in lisp/ChangeLog
author ben
date Sat, 08 Feb 2003 02:29:55 +0000
parents b5a5863da615
children f3437b56874d
line wrap: on
line diff
--- a/src/lread.c	Sat Feb 08 02:28:15 2003 +0000
+++ b/src/lread.c	Sat Feb 08 02:29:55 2003 +0000
@@ -501,7 +501,6 @@
   int reading_elc = 0;
   int from_require = EQ (nomessage, Qrequire);
   int message_p = NILP (nomessage) || load_always_display_messages;
-  static Lisp_Object last_file_loaded;
   struct stat s1, s2;
   Ibyte *spaces = alloca_ibytes (load_in_progress * 2 + 10);
   int i;
@@ -509,9 +508,6 @@
   GCPRO4 (file, newer, older, found);
   CHECK_STRING (file);
 
-  if (noninteractive)
-    last_file_loaded = file;
-
   /* If file name is magic, call the handler.  */
   handler = Ffind_file_name_handler (file, Qload);
   if (!NILP (handler))
@@ -752,14 +748,6 @@
       }
   }
 
-  if (message_p && noninteractive && !EQ (last_file_loaded, file))
-    {
-      if (from_require)
-	message ("%sRequiring %s ...done", spaces, XSTRING_DATA (file));
-      else
-	message ("%sLoading %s ...done", spaces, XSTRING_DATA (file));
-    }
-
   if (!noninteractive)
     PRINT_LOADING_MESSAGE ("done");