From 8ba3ce3e12d8ab79cb98ffd6f12c6d3476a75de9 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Thu, 24 Jun 1993 13:49:30 +0000
Subject: [PATCH] Changed EOF-OR-LOSE to signal the END-OF-FILE condition.

---
 code/sysmacs.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/sysmacs.lisp b/code/sysmacs.lisp
index 9ec1b2964..05040375b 100644
--- a/code/sysmacs.lisp
+++ b/code/sysmacs.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sysmacs.lisp,v 1.13 1993/05/20 13:43:21 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sysmacs.lisp,v 1.14 1993/06/24 13:49:30 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -87,7 +87,7 @@
 
 (defmacro eof-or-lose (stream eof-errorp eof-value)
   `(if ,eof-errorp
-       (error "~S: Stream hit EOF unexpectedly." ,stream)
+       (error 'end-of-file :stream ,stream)
        ,eof-value))
 
 ;;; These macros handle the special cases of t and nil for input and
-- 
GitLab