diff options
| author | Dave Love | 2000-08-17 14:11:00 +0000 |
|---|---|---|
| committer | Dave Love | 2000-08-17 14:11:00 +0000 |
| commit | 232ccf275feae9a686ded89b64bea6b89116a5bd (patch) | |
| tree | 601de3efad742bd675f012b7af68960d5127155b | |
| parent | 3fb21e7ab8cd3e2f9528b249e8a7eba92698a4ce (diff) | |
| download | emacs-232ccf275feae9a686ded89b64bea6b89116a5bd.tar.gz emacs-232ccf275feae9a686ded89b64bea6b89116a5bd.zip | |
Prototype readevalloop, load_unwind,
load_descriptor_unwind.
(unreadpure): Give it an arg.
| -rw-r--r-- | src/lread.c | 11 |
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 | ||
| 533 | static void readevalloop (); | 533 | static void readevalloop P_ ((Lisp_Object, FILE*, Lisp_Object, |
| 534 | static Lisp_Object load_unwind (); | 534 | Lisp_Object (*) (), int, |
| 535 | static Lisp_Object load_descriptor_unwind (); | 535 | Lisp_Object, Lisp_Object)); |
| 536 | static Lisp_Object load_unwind P_ ((Lisp_Object)); | ||
| 537 | static 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 | ||
| 1090 | Lisp_Object | 1092 | Lisp_Object |
| 1091 | unreadpure () /* Used as unwind-protect function in readevalloop */ | 1093 | unreadpure (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; |