changeset 1266:b5a5863da615

[xemacs-hg @ 2003-02-07 00:54:17 by ben] To: xemacs-patches@xemacs.org lread.c: Oops. Plain C can't handle declarations intermixed with statements.
author ben
date Fri, 07 Feb 2003 00:54:20 +0000
parents de6cf052e10b
children c57f32e44416
files src/ChangeLog src/lread.c
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Fri Feb 07 00:49:42 2003 +0000
+++ b/src/ChangeLog	Fri Feb 07 00:54:20 2003 +0000
@@ -1,3 +1,8 @@
+2003-02-06  Ben Wing  <ben@xemacs.org>
+
+	* lread.c (Fload_internal):
+	Oops.  Plain C can't handle declarations intermixed with statements.
+
 2003-02-06  Ben Wing  <ben@xemacs.org>
 
 	* alloc.c:
--- a/src/lread.c	Fri Feb 07 00:49:42 2003 +0000
+++ b/src/lread.c	Fri Feb 07 00:54:20 2003 +0000
@@ -503,10 +503,10 @@
   int message_p = NILP (nomessage) || load_always_display_messages;
   static Lisp_Object last_file_loaded;
   struct stat s1, s2;
-  GCPRO4 (file, newer, older, found);
   Ibyte *spaces = alloca_ibytes (load_in_progress * 2 + 10);
   int i;
 
+  GCPRO4 (file, newer, older, found);
   CHECK_STRING (file);
 
   if (noninteractive)