aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lread.c b/src/lread.c
index 72283bde8ab..a64a01f8fd6 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -454,8 +454,8 @@ static Lisp_Object
454load_unwind (stream) /* used as unwind-protect function in load */ 454load_unwind (stream) /* used as unwind-protect function in load */
455 Lisp_Object stream; 455 Lisp_Object stream;
456{ 456{
457 fclose (XFASTINT (XCONS (stream)->car) << 16 457 fclose ((FILE *) (XFASTINT (XCONS (stream)->car) << 16
458 | XFASTINT (XCONS (stream)->cdr)); 458 | XFASTINT (XCONS (stream)->cdr)));
459 if (--load_in_progress < 0) load_in_progress = 0; 459 if (--load_in_progress < 0) load_in_progress = 0;
460 return Qnil; 460 return Qnil;
461} 461}