From 0fc44ef67b3ee02a0dded895f8d2099b79c074ec Mon Sep 17 00:00:00 2001
From: gerd <gerd>
Date: Mon, 8 Sep 2003 17:34:57 +0000
Subject: [PATCH] Fix formatting.

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

diff --git a/code/reader.lisp b/code/reader.lisp
index f1fb2aa6a..2cbe99f73 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.41 2003/09/08 17:34:25 gerd Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/reader.lisp,v 1.42 2003/09/08 17:34:57 gerd Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1546,15 +1546,15 @@
 	    (cond ((not any-digits)
 		   (if junk-allowed
 		       (values nil real-index)
-		     (error 'simple-parse-error
-			    :format-control "There are no digits in this string: ~S"
-			    :format-arguments (list string))))
-		((and (< index end) (not junk-allowed))
-		 (error 'simple-parse-error
-			:format-control "There's junk in this string: ~S."
-			:format-arguments (list string)))
-		(t
-		 (values (* sign result) real-index)))))))))
+		       (error 'simple-parse-error
+			      :format-control "There are no digits in this string: ~S"
+			      :format-arguments (list string))))
+		  ((and (< index end) (not junk-allowed))
+		   (error 'simple-parse-error
+			  :format-control "There's junk in this string: ~S."
+			  :format-arguments (list string)))
+		  (t
+		   (values (* sign result) real-index)))))))))
 
 
 ;;;; Reader initialization code.
-- 
GitLab