From 38d83c4696fbcfc8e69c350f81e7eaade958c794 Mon Sep 17 00:00:00 2001
From: pw <pw>
Date: Thu, 26 Mar 1998 13:20:48 +0000
Subject: [PATCH] Change condition READER-ERROR to be a subclass of PARSE-ERROR
 as required by ANSI spec.

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

diff --git a/code/reader.lisp b/code/reader.lisp
index 8b70a3e5a..e139a88c7 100644
--- a/code/reader.lisp
+++ b/code/reader.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/reader.lisp,v 1.22 1997/03/20 21:53:49 pw Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/reader.lisp,v 1.23 1998/03/26 13:20:48 pw Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -42,7 +42,7 @@
 
 ;;;; Reader errors:
 
-(define-condition reader-error (simple-condition stream-error) ()
+(define-condition reader-error (parse-error stream-error) ()
   (:report
    (lambda (condition stream)
      (let ((error-stream (stream-error-stream condition)))
-- 
GitLab