Mercurial > hg > xemacs-beta
comparison src/lread.c @ 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 | 465bd3c7d932 |
children | 57b76886836d |
comparison
equal
deleted
inserted
replaced
1265:de6cf052e10b | 1266:b5a5863da615 |
---|---|
501 int reading_elc = 0; | 501 int reading_elc = 0; |
502 int from_require = EQ (nomessage, Qrequire); | 502 int from_require = EQ (nomessage, Qrequire); |
503 int message_p = NILP (nomessage) || load_always_display_messages; | 503 int message_p = NILP (nomessage) || load_always_display_messages; |
504 static Lisp_Object last_file_loaded; | 504 static Lisp_Object last_file_loaded; |
505 struct stat s1, s2; | 505 struct stat s1, s2; |
506 GCPRO4 (file, newer, older, found); | |
507 Ibyte *spaces = alloca_ibytes (load_in_progress * 2 + 10); | 506 Ibyte *spaces = alloca_ibytes (load_in_progress * 2 + 10); |
508 int i; | 507 int i; |
509 | 508 |
509 GCPRO4 (file, newer, older, found); | |
510 CHECK_STRING (file); | 510 CHECK_STRING (file); |
511 | 511 |
512 if (noninteractive) | 512 if (noninteractive) |
513 last_file_loaded = file; | 513 last_file_loaded = file; |
514 | 514 |