aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2000-08-17 14:11:00 +0000
committerDave Love2000-08-17 14:11:00 +0000
commit232ccf275feae9a686ded89b64bea6b89116a5bd (patch)
tree601de3efad742bd675f012b7af68960d5127155b /src
parent3fb21e7ab8cd3e2f9528b249e8a7eba92698a4ce (diff)
downloademacs-232ccf275feae9a686ded89b64bea6b89116a5bd.tar.gz
emacs-232ccf275feae9a686ded89b64bea6b89116a5bd.zip
Prototype readevalloop, load_unwind,
load_descriptor_unwind. (unreadpure): Give it an arg.
Diffstat (limited to 'src')
-rw-r--r--src/lread.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/lread.c b/src/lread.c
index 3a1bc00c03f..7e6b6a17949 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -530,9 +530,11 @@ DEFUN ("get-file-char", Fget_file_char, Sget_file_char, 0, 0, 0,
530 return val; 530 return val;
531} 531}
532 532
533static void readevalloop (); 533static void readevalloop P_ ((Lisp_Object, FILE*, Lisp_Object,
534static Lisp_Object load_unwind (); 534 Lisp_Object (*) (), int,
535static Lisp_Object load_descriptor_unwind (); 535 Lisp_Object, Lisp_Object));
536static Lisp_Object load_unwind P_ ((Lisp_Object));
537static Lisp_Object load_descriptor_unwind P_ ((Lisp_Object));
536 538
537/* Non-zero means load dangerous compiled Lisp files. */ 539/* Non-zero means load dangerous compiled Lisp files. */
538 540
@@ -1088,7 +1090,8 @@ build_load_history (stream, source)
1088} 1090}
1089 1091
1090Lisp_Object 1092Lisp_Object
1091unreadpure () /* Used as unwind-protect function in readevalloop */ 1093unreadpure (junk) /* Used as unwind-protect function in readevalloop */
1094 Lisp_Object junk;
1092{ 1095{
1093 read_pure = 0; 1096 read_pure = 0;
1094 return Qnil; 1097 return Qnil;