0.9.2.43:
[sbcl.git] / src / code / reader.lisp
index cbdb50d..bf17289 100644 (file)
@@ -18,7 +18,7 @@
 ;;; E for an exponent marker"
 (defvar *read-default-float-format* 'single-float)
 (declaim (type (member short-float single-float double-float long-float)
-              *read-default-float-format*))
+               *read-default-float-format*))
 
 (defvar *readtable*)
 (declaim (type readtable *readtable*))
 
 (defun reader-eof-error (stream context)
   (error 'reader-eof-error
-        :stream stream
-        :context context))
+         :stream stream
+         :context context))
 
 (defun %reader-error (stream control &rest args)
   (error 'reader-error
-        :stream stream
-        :format-control control
-        :format-arguments args))
+         :stream stream
+         :format-control control
+         :format-arguments args))
 \f
 ;;;; macros and functions for character tables
 
@@ -90,9 +90,9 @@
 ;;; a function value represents itself, and a NIL value represents the
 ;;; default behavior.
 (defun get-coerced-cmt-entry (char readtable)
-  (the function 
+  (the function
     (or (get-raw-cmt-entry char readtable)
-       #'read-token)))
+        #'read-token)))
 
 (defun set-cmt-entry (char new-value-designator &optional (rt *readtable*))
   (if (typep char 'base-char)
             (and new-value-designator
                  (%coerce-callable-to-fun new-value-designator)))
       (setf (gethash char (character-macro-hash-table rt))
-       (and new-value-designator
+        (and new-value-designator
                  (%coerce-callable-to-fun new-value-designator)))))
 
 (defun undefined-macro-char (stream char)
 (defun !set-constituent-trait (char trait)
   (aver (typep char 'base-char))
   (setf (elt *constituent-trait-table* (char-code char))
-       trait))
+        trait))
 
 (defun !cold-init-constituent-trait-table ()
   (setq *constituent-trait-table*
-       (make-array base-char-code-limit :element-type '(unsigned-byte 8)
-                   :initial-element +char-attr-constituent+))
+        (make-array base-char-code-limit :element-type '(unsigned-byte 8)
+                    :initial-element +char-attr-constituent+))
   (!set-constituent-trait #\: +char-attr-package-delimiter+)
   (!set-constituent-trait #\. +char-attr-constituent-dot+)
   (!set-constituent-trait #\+ +char-attr-constituent-sign+)
   (!set-constituent-trait #\Space +char-attr-invalid+)
   (!set-constituent-trait #\Newline +char-attr-invalid+)
   (dolist (c (list backspace-char-code tab-char-code form-feed-char-code
-                  return-char-code rubout-char-code))
+                   return-char-code rubout-char-code))
     (!set-constituent-trait (code-char c) +char-attr-invalid+)))
-                  
+
 (defmacro get-constituent-trait (char)
   `(if (typep ,char 'base-char)
        (elt *constituent-trait-table* (char-code ,char))
   (maphash (lambda (k v) (setf (gethash k to) v)) from))
 
 (defun copy-readtable (&optional (from-readtable *readtable*)
-                                to-readtable)
+                                 to-readtable)
   (let ((really-from-readtable (or from-readtable *standard-readtable*))
         (really-to-readtable (or to-readtable (make-readtable))))
     (replace (character-attribute-array really-to-readtable)
-            (character-attribute-array really-from-readtable))
+             (character-attribute-array really-from-readtable))
     (shallow-replace/eql-hash-table
      (character-attribute-hash-table really-to-readtable)
      (character-attribute-hash-table really-from-readtable))
     (replace (character-macro-array really-to-readtable)
-            (character-macro-array really-from-readtable))
+             (character-macro-array really-from-readtable))
     (shallow-replace/eql-hash-table
      (character-macro-hash-table really-to-readtable)
      (character-macro-hash-table really-from-readtable))
     (setf (dispatch-tables really-to-readtable)
-         (mapcar (lambda (pair)
+          (mapcar (lambda (pair)
                     (cons (car pair)
                           (let ((table (make-hash-table)))
                             (shallow-replace/eql-hash-table table (cdr pair))
                             table)))
-                 (dispatch-tables really-from-readtable)))
+                  (dispatch-tables really-from-readtable)))
     (setf (readtable-case really-to-readtable)
-         (readtable-case really-from-readtable))
+          (readtable-case really-from-readtable))
     really-to-readtable))
 
 (defun set-syntax-from-char (to-char from-char &optional
-                                    (to-readtable *readtable*)
-                                    (from-readtable ()))
+                                     (to-readtable *readtable*)
+                                     (from-readtable ()))
   #!+sb-doc
   "Causes the syntax of TO-CHAR to be the same as FROM-CHAR in the
   optional readtable (defaults to the current readtable). The
   FROM-TABLE defaults to the standard Lisp readtable when NIL."
   (let ((really-from-readtable (or from-readtable *standard-readtable*)))
     (let ((att (get-cat-entry from-char really-from-readtable))
-         (mac (get-raw-cmt-entry from-char really-from-readtable))
-         (from-dpair (find from-char (dispatch-tables really-from-readtable)
-                           :test #'char= :key #'car))
-         (to-dpair (find to-char (dispatch-tables to-readtable)
-                         :test #'char= :key #'car)))
+          (mac (get-raw-cmt-entry from-char really-from-readtable))
+          (from-dpair (find from-char (dispatch-tables really-from-readtable)
+                            :test #'char= :key #'car))
+          (to-dpair (find to-char (dispatch-tables to-readtable)
+                          :test #'char= :key #'car)))
       (set-cat-entry to-char att to-readtable)
       (set-cmt-entry to-char mac to-readtable)
       (when from-dpair
-       (cond
-         (to-dpair
-          (let ((table (cdr to-dpair)))
-            (clrhash table)
-            (shallow-replace/eql-hash-table table (cdr from-dpair))))
-         (t
-          (let ((pair (cons to-char (make-hash-table))))
-            (shallow-replace/eql-hash-table (cdr pair) (cdr from-dpair))
-            (setf (dispatch-tables to-readtable)
-                  (push pair (dispatch-tables to-readtable)))))))))
+        (cond
+          (to-dpair
+           (let ((table (cdr to-dpair)))
+             (clrhash table)
+             (shallow-replace/eql-hash-table table (cdr from-dpair))))
+          (t
+           (let ((pair (cons to-char (make-hash-table))))
+             (shallow-replace/eql-hash-table (cdr pair) (cdr from-dpair))
+             (setf (dispatch-tables to-readtable)
+                   (push pair (dispatch-tables to-readtable)))))))))
   t)
 
 (defun set-macro-character (char function &optional
-                                (non-terminatingp nil)
-                                (readtable *readtable*))
+                                 (non-terminatingp nil)
+                                 (readtable *readtable*))
   #!+sb-doc
   "Causes CHAR to be a macro character which invokes FUNCTION when seen
    by the reader. The NON-TERMINATINGP flag can be used to make the macro
    character non-terminating, i.e. embeddable in a symbol name."
   (let ((designated-readtable (or readtable *standard-readtable*)))
     (set-cat-entry char (if non-terminatingp
-                           +char-attr-constituent+
-                           +char-attr-terminating-macro+)
-                  designated-readtable)
+                            +char-attr-constituent+
+                            +char-attr-terminating-macro+)
+                   designated-readtable)
     (set-cmt-entry char function designated-readtable)
     t)) ; (ANSI-specified return value)
 
   T if CHAR is a macro character which is non-terminating, i.e. which can
   be embedded in a symbol name."
   (let* ((designated-readtable (or readtable *standard-readtable*))
-        ;; the first return value: a FUNCTION if CHAR is a macro
-        ;; character, or NIL otherwise
-        (fun-value (get-raw-cmt-entry char designated-readtable)))
+         ;; the first return value: a FUNCTION if CHAR is a macro
+         ;; character, or NIL otherwise
+         (fun-value (get-raw-cmt-entry char designated-readtable)))
     (values fun-value
-           ;; NON-TERMINATING-P return value:
-           (if fun-value
-               (or (constituentp char)
-                   (not (terminating-macrop char)))
-               ;; ANSI's definition of GET-MACRO-CHARACTER says this
-               ;; value is NIL when CHAR is not a macro character.
-               ;; I.e. this value means not just "non-terminating
-               ;; character?" but "non-terminating macro character?".
-               nil))))
+            ;; NON-TERMINATING-P return value:
+            (if fun-value
+                (or (constituentp char)
+                    (not (terminating-macrop char)))
+                ;; ANSI's definition of GET-MACRO-CHARACTER says this
+                ;; value is NIL when CHAR is not a macro character.
+                ;; I.e. this value means not just "non-terminating
+                ;; character?" but "non-terminating macro character?".
+                nil))))
 \f
 ;;;; definitions to support internal programming conventions
 
   ;; non-white one). It always gets an error on end-of-file.
   (let ((stream (in-synonym-of stream)))
     (if (ansi-stream-p stream)
-       (prepare-for-fast-read-char stream
-         (do ((attribute-array (character-attribute-array *readtable*))
+        (prepare-for-fast-read-char stream
+          (do ((attribute-array (character-attribute-array *readtable*))
                (attribute-hash-table
                 (character-attribute-hash-table *readtable*))
-              (char (fast-read-char t) (fast-read-char t)))
-             ((/= (the fixnum
+               (char (fast-read-char t) (fast-read-char t)))
+              ((/= (the fixnum
                      (if (typep char 'base-char)
                          (aref attribute-array (char-code char))
                          (gethash char attribute-hash-table
                                   +char-attr-constituent+)))
-                  +char-attr-whitespace+)
-              (done-with-fast-read-char)
-              char)))
-       ;; CLOS stream
-       (do ((attribute-array (character-attribute-array *readtable*))
+                   +char-attr-whitespace+)
+               (done-with-fast-read-char)
+               char)))
+        ;; CLOS stream
+        (do ((attribute-array (character-attribute-array *readtable*))
              (attribute-hash-table
               (character-attribute-hash-table *readtable*))
-            (char (read-char stream nil :eof) (read-char stream nil :eof)))
-           ((or (eq char :eof)
-                (/= (the fixnum
+             (char (read-char stream nil :eof) (read-char stream nil :eof)))
+            ((or (eq char :eof)
+                 (/= (the fixnum
                        (if (typep char 'base-char)
                            (aref attribute-array (char-code char))
                            (gethash char attribute-hash-table
                                     +char-attr-constituent+)))
-                    +char-attr-whitespace+))
-            (if (eq char :eof)
-                (error 'end-of-file :stream stream)
-                char))))))
+                     +char-attr-whitespace+))
+             (if (eq char :eof)
+                 (error 'end-of-file :stream stream)
+                 char))))))
 \f
 ;;;; temporary initialization hack
 
   (let ((*readtable* *standard-readtable*))
 
     (flet ((whitespaceify (char)
-            (set-cmt-entry char nil)
-            (set-cat-entry char +char-attr-whitespace+)))
+             (set-cmt-entry char nil)
+             (set-cat-entry char +char-attr-whitespace+)))
       (whitespaceify (code-char tab-char-code))
       (whitespaceify #\Newline)
       (whitespaceify #\Space)
 
     ;; all constituents
     (do ((ichar 0 (1+ ichar))
-        (char))
-       ((= ichar base-char-code-limit))
+         (char))
+        ((= ichar base-char-code-limit))
       (setq char (code-char ichar))
       (when (constituentp char *standard-readtable*)
-       (set-cmt-entry char nil)))))
+        (set-cmt-entry char nil)))))
 \f
 ;;;; implementation of the read buffer
 
 (defun grow-read-buffer ()
   (let ((rbl (length (the simple-string *read-buffer*))))
     (setq *read-buffer*
-         (concatenate 'simple-string
-                      *read-buffer*
-                      (make-string rbl)))
+          (concatenate 'simple-string
+                       *read-buffer*
+                       (make-string rbl)))
     (setq *read-buffer-length* (* 2 rbl))))
 
 (defun inchpeek-read-buffer ()
   (if (>= *inch-ptr* *ouch-ptr*)
       *eof-object*
       (prog1
-         (elt *read-buffer* *inch-ptr*)
-       (incf *inch-ptr*))))
+          (elt *read-buffer* *inch-ptr*)
+        (incf *inch-ptr*))))
 
 (defmacro unread-buffer ()
   `(decf *inch-ptr*))
@@ -457,9 +457,9 @@ variables to allow for nested and thread safe reading."
 ;;; sure to leave terminating whitespace in the stream. (This is a
 ;;; COMMON-LISP exported symbol.)
 (defun read-preserving-whitespace (&optional (stream *standard-input*)
-                                            (eof-error-p t)
-                                            (eof-value nil)
-                                            (recursivep nil))
+                                             (eof-error-p t)
+                                             (eof-value nil)
+                                             (recursivep nil))
   #!+sb-doc
   "Read from STREAM and return the value read, preserving any whitespace
    that followed the object."
@@ -474,7 +474,7 @@ variables to allow for nested and thread safe reading."
                        (result (multiple-value-list
                                 (funcall macrofun stream char))))
                   ;; Repeat if macro returned nothing.
-                 (when result
+                  (when result
                     (return (unless *read-suppress* (car result)))))))))
       (with-reader ()
         (let ((*sharp-equal-alist* nil))
@@ -486,35 +486,35 @@ variables to allow for nested and thread safe reading."
 ;;; past them. We assume CHAR is not whitespace.
 (defun read-maybe-nothing (stream char)
   (let ((retval (multiple-value-list
-                (funcall (get-coerced-cmt-entry char *readtable*)
-                         stream
-                         char))))
+                 (funcall (get-coerced-cmt-entry char *readtable*)
+                          stream
+                          char))))
     (if retval (rplacd retval nil))))
 
 (defun read (&optional (stream *standard-input*)
-                      (eof-error-p t)
-                      (eof-value ())
-                      (recursivep ()))
+                       (eof-error-p t)
+                       (eof-value ())
+                       (recursivep ()))
   #!+sb-doc
   "Read the next Lisp value from STREAM, and return it."
   (let ((result (read-preserving-whitespace stream
-                                           eof-error-p
-                                           eof-value
-                                           recursivep)))
+                                            eof-error-p
+                                            eof-value
+                                            recursivep)))
     ;; This function generally discards trailing whitespace. If you
     ;; don't want to discard trailing whitespace, call
     ;; CL:READ-PRESERVING-WHITESPACE instead.
     (unless (or (eql result eof-value) recursivep)
       (let ((next-char (read-char stream nil nil)))
-       (unless (or (null next-char)
-                   (whitespacep next-char))
-         (unread-char next-char stream))))
+        (unless (or (null next-char)
+                    (whitespacep next-char))
+          (unread-char next-char stream))))
     result))
 
 ;;; (This is a COMMON-LISP exported symbol.)
 (defun read-delimited-list (endchar &optional
-                                   (input-stream *standard-input*)
-                                   recursive-p)
+                                    (input-stream *standard-input*)
+                                    recursive-p)
   #!+sb-doc
   "Read Lisp values from INPUT-STREAM until the next character after a
    value's representation is ENDCHAR, and return the objects as a list."
@@ -538,72 +538,72 @@ variables to allow for nested and thread safe reading."
   (declare (ignore ignore))
   (handler-bind
       ((character-decoding-error
-       #'(lambda (decoding-error)
-           (declare (ignorable decoding-error))
-           (style-warn "Character decoding error in a ;-comment at position ~A reading source file ~A, resyncing." (file-position stream) stream)
-           (invoke-restart 'attempt-resync))))
+        #'(lambda (decoding-error)
+            (declare (ignorable decoding-error))
+            (style-warn "Character decoding error in a ;-comment at position ~A reading source file ~A, resyncing." (file-position stream) stream)
+            (invoke-restart 'attempt-resync))))
     (let ((stream (in-synonym-of stream)))
       (if (ansi-stream-p stream)
-         (prepare-for-fast-read-char stream
-          (do ((char (fast-read-char nil nil)
-                     (fast-read-char nil nil)))
-              ((or (not char) (char= char #\newline))
-               (done-with-fast-read-char))))
-         ;; CLOS stream
-         (do ((char (read-char stream nil :eof) (read-char stream nil :eof)))
-             ((or (eq char :eof) (char= char #\newline)))))))
+          (prepare-for-fast-read-char stream
+           (do ((char (fast-read-char nil nil)
+                      (fast-read-char nil nil)))
+               ((or (not char) (char= char #\newline))
+                (done-with-fast-read-char))))
+          ;; CLOS stream
+          (do ((char (read-char stream nil :eof) (read-char stream nil :eof)))
+              ((or (eq char :eof) (char= char #\newline)))))))
   ;; Don't return anything.
   (values))
 
 (defun read-list (stream ignore)
   (declare (ignore ignore))
   (let* ((thelist (list nil))
-        (listtail thelist))
+         (listtail thelist))
     (do ((firstchar (flush-whitespace stream) (flush-whitespace stream)))
-       ((char= firstchar #\) ) (cdr thelist))
+        ((char= firstchar #\) ) (cdr thelist))
       (when (char= firstchar #\.)
-           (let ((nextchar (read-char stream t)))
-             (cond ((token-delimiterp nextchar)
-                    (cond ((eq listtail thelist)
-                           (unless *read-suppress*
-                             (%reader-error
-                              stream
-                              "Nothing appears before . in list.")))
-                          ((whitespacep nextchar)
-                           (setq nextchar (flush-whitespace stream))))
-                    (rplacd listtail
-                            ;; Return list containing last thing.
-                            (car (read-after-dot stream nextchar)))
-                    (return (cdr thelist)))
-                   ;; Put back NEXTCHAR so that we can read it normally.
-                   (t (unread-char nextchar stream)))))
+            (let ((nextchar (read-char stream t)))
+              (cond ((token-delimiterp nextchar)
+                     (cond ((eq listtail thelist)
+                            (unless *read-suppress*
+                              (%reader-error
+                               stream
+                               "Nothing appears before . in list.")))
+                           ((whitespacep nextchar)
+                            (setq nextchar (flush-whitespace stream))))
+                     (rplacd listtail
+                             ;; Return list containing last thing.
+                             (car (read-after-dot stream nextchar)))
+                     (return (cdr thelist)))
+                    ;; Put back NEXTCHAR so that we can read it normally.
+                    (t (unread-char nextchar stream)))))
       ;; Next thing is not an isolated dot.
       (let ((listobj (read-maybe-nothing stream firstchar)))
-       ;; allows the possibility that a comment was read
-       (when listobj
-             (rplacd listtail listobj)
-             (setq listtail listobj))))))
+        ;; allows the possibility that a comment was read
+        (when listobj
+              (rplacd listtail listobj)
+              (setq listtail listobj))))))
 
 (defun read-after-dot (stream firstchar)
   ;; FIRSTCHAR is non-whitespace!
   (let ((lastobj ()))
     (do ((char firstchar (flush-whitespace stream)))
-       ((char= char #\) )
-        (if *read-suppress*
-            (return-from read-after-dot nil)
-            (%reader-error stream "Nothing appears after . in list.")))
+        ((char= char #\) )
+         (if *read-suppress*
+             (return-from read-after-dot nil)
+             (%reader-error stream "Nothing appears after . in list.")))
       ;; See whether there's something there.
       (setq lastobj (read-maybe-nothing stream char))
       (when lastobj (return t)))
     ;; At least one thing appears after the dot.
     ;; Check for more than one thing following dot.
     (do ((lastchar (flush-whitespace stream)
-                  (flush-whitespace stream)))
-       ((char= lastchar #\) ) lastobj) ;success!
+                   (flush-whitespace stream)))
+        ((char= lastchar #\) ) lastobj) ;success!
       ;; Try reading virtual whitespace.
       (if (and (read-maybe-nothing stream lastchar)
-              (not *read-suppress*))
-         (%reader-error stream "More than one object follows . in list.")))))
+               (not *read-suppress*))
+          (%reader-error stream "More than one object follows . in list.")))))
 
 (defun read-string (stream closech)
   ;; This accumulates chars until it sees same char that invoked it.
@@ -611,22 +611,22 @@ variables to allow for nested and thread safe reading."
   (reset-read-buffer)
   (let ((stream (in-synonym-of stream)))
     (if (ansi-stream-p stream)
-       (prepare-for-fast-read-char stream
-         (do ((char (fast-read-char t) (fast-read-char t)))
-             ((char= char closech)
-              (done-with-fast-read-char))
-           (if (single-escape-p char) (setq char (fast-read-char t)))
-           (ouch-read-buffer char)))
-       ;; CLOS stream
-       (do ((char (read-char stream nil :eof) (read-char stream nil :eof)))
-           ((or (eq char :eof) (char= char closech))
-            (if (eq char :eof)
-                (error 'end-of-file :stream stream)))
-         (when (single-escape-p char)
-           (setq char (read-char stream nil :eof))
-           (if (eq char :eof)
-               (error 'end-of-file :stream stream)))
-         (ouch-read-buffer char))))
+        (prepare-for-fast-read-char stream
+          (do ((char (fast-read-char t) (fast-read-char t)))
+              ((char= char closech)
+               (done-with-fast-read-char))
+            (if (single-escape-p char) (setq char (fast-read-char t)))
+            (ouch-read-buffer char)))
+        ;; CLOS stream
+        (do ((char (read-char stream nil :eof) (read-char stream nil :eof)))
+            ((or (eq char :eof) (char= char closech))
+             (if (eq char :eof)
+                 (error 'end-of-file :stream stream)))
+          (when (single-escape-p char)
+            (setq char (read-char stream nil :eof))
+            (if (eq char :eof)
+                (error 'end-of-file :stream stream)))
+          (ouch-read-buffer char))))
   (read-buffer-to-string))
 
 (defun read-right-paren (stream ignore)
@@ -647,45 +647,45 @@ variables to allow for nested and thread safe reading."
   (do ((char firstchar (read-char stream nil *eof-object*))
        (colon nil))
       ((cond ((eofp char) t)
-            ((token-delimiterp char)
-             (unread-char char stream)
-             t)
-            (t nil))
+             ((token-delimiterp char)
+              (unread-char char stream)
+              t)
+             (t nil))
        (values escapes colon))
     (cond ((single-escape-p char)
-          ;; It can't be a number, even if it's 1\23.
-          ;; Read next char here, so it won't be casified.
-          (push *ouch-ptr* escapes)
-          (let ((nextchar (read-char stream nil *eof-object*)))
-            (if (eofp nextchar)
-                (reader-eof-error stream "after escape character")
-                (ouch-read-buffer nextchar))))
-         ((multiple-escape-p char)
-          ;; Read to next multiple-escape, escaping single chars
-          ;; along the way.
-          (loop
-            (let ((ch (read-char stream nil *eof-object*)))
-              (cond
-               ((eofp ch)
-                (reader-eof-error stream "inside extended token"))
-               ((multiple-escape-p ch) (return))
-               ((single-escape-p ch)
-                (let ((nextchar (read-char stream nil *eof-object*)))
-                  (cond ((eofp nextchar)
-                         (reader-eof-error stream "after escape character"))
-                        (t
-                         (push *ouch-ptr* escapes)
-                         (ouch-read-buffer nextchar)))))
-               (t
-                (push *ouch-ptr* escapes)
-                (ouch-read-buffer ch))))))
-         (t
-          (when (and (constituentp char)
-                     (eql (get-constituent-trait char)
-                          +char-attr-package-delimiter+)
-                     (not colon))
-            (setq colon *ouch-ptr*))
-          (ouch-read-buffer char))))))
+           ;; It can't be a number, even if it's 1\23.
+           ;; Read next char here, so it won't be casified.
+           (push *ouch-ptr* escapes)
+           (let ((nextchar (read-char stream nil *eof-object*)))
+             (if (eofp nextchar)
+                 (reader-eof-error stream "after escape character")
+                 (ouch-read-buffer nextchar))))
+          ((multiple-escape-p char)
+           ;; Read to next multiple-escape, escaping single chars
+           ;; along the way.
+           (loop
+             (let ((ch (read-char stream nil *eof-object*)))
+               (cond
+                ((eofp ch)
+                 (reader-eof-error stream "inside extended token"))
+                ((multiple-escape-p ch) (return))
+                ((single-escape-p ch)
+                 (let ((nextchar (read-char stream nil *eof-object*)))
+                   (cond ((eofp nextchar)
+                          (reader-eof-error stream "after escape character"))
+                         (t
+                          (push *ouch-ptr* escapes)
+                          (ouch-read-buffer nextchar)))))
+                (t
+                 (push *ouch-ptr* escapes)
+                 (ouch-read-buffer ch))))))
+          (t
+           (when (and (constituentp char)
+                      (eql (get-constituent-trait char)
+                           +char-attr-package-delimiter+)
+                      (not colon))
+             (setq colon *ouch-ptr*))
+           (ouch-read-buffer char))))))
 \f
 ;;;; character classes
 
@@ -702,9 +702,9 @@ variables to allow for nested and thread safe reading."
        ((<= att +char-attr-terminating-macro+) +char-attr-delimiter+)
        ((< att +char-attr-constituent+) att)
        (t (setf att (get-constituent-trait ,char))
-         (if (= att +char-attr-invalid+) 
-             (%reader-error stream "invalid constituent")
-             att)))))
+          (if (= att +char-attr-invalid+)
+              (%reader-error stream "invalid constituent")
+              att)))))
 
 ;;; Return the character class for CHAR, which might be part of a
 ;;; rational number.
@@ -717,12 +717,12 @@ variables to allow for nested and thread safe reading."
        ((<= att +char-attr-terminating-macro+) +char-attr-delimiter+)
        ((< att +char-attr-constituent+) att)
        (t (setf att (get-constituent-trait ,char))
-         (cond
-           ((digit-char-p ,char *read-base*) +char-attr-constituent-digit+)
-           ((= att +char-attr-constituent-digit+) +char-attr-constituent+)
-           ((= att +char-attr-invalid+) 
-            (%reader-error stream "invalid constituent"))
-           (t att))))))
+          (cond
+            ((digit-char-p ,char *read-base*) +char-attr-constituent-digit+)
+            ((= att +char-attr-constituent-digit+) +char-attr-constituent+)
+            ((= att +char-attr-invalid+)
+             (%reader-error stream "invalid constituent"))
+            (t att))))))
 
 ;;; Return the character class for a char which might be part of a
 ;;; rational or floating number. (Assume that it is a digit if it
@@ -736,24 +736,24 @@ variables to allow for nested and thread safe reading."
        ((<= att +char-attr-terminating-macro+) +char-attr-delimiter+)
        ((< att +char-attr-constituent+) att)
        (t (setf att (get-constituent-trait ,char))
-         (when possibly-rational
-           (setq possibly-rational
-                 (or (digit-char-p ,char *read-base*)
-                     (= att +char-attr-constituent-slash+))))
-         (when possibly-float
-           (setq possibly-float
-                 (or (digit-char-p ,char 10)
-                     (= att +char-attr-constituent-dot+))))
-         (cond
-           ((digit-char-p ,char (max *read-base* 10))
-            (if (digit-char-p ,char *read-base*)
-                (if (= att +char-attr-constituent-expt+)
-                    +char-attr-constituent-digit-or-expt+
-                    +char-attr-constituent-digit+)
-                +char-attr-constituent-decimal-digit+))
-           ((= att +char-attr-invalid+)
-            (%reader-error stream "invalid constituent"))
-           (t att))))))
+          (when possibly-rational
+            (setq possibly-rational
+                  (or (digit-char-p ,char *read-base*)
+                      (= att +char-attr-constituent-slash+))))
+          (when possibly-float
+            (setq possibly-float
+                  (or (digit-char-p ,char 10)
+                      (= att +char-attr-constituent-dot+))))
+          (cond
+            ((digit-char-p ,char (max *read-base* 10))
+             (if (digit-char-p ,char *read-base*)
+                 (if (= att +char-attr-constituent-expt+)
+                     +char-attr-constituent-digit-or-expt+
+                     +char-attr-constituent-digit+)
+                 +char-attr-constituent-decimal-digit+))
+            ((= att +char-attr-invalid+)
+             (%reader-error stream "invalid constituent"))
+            (t att))))))
 \f
 ;;;; token fetching
 
@@ -774,42 +774,42 @@ variables to allow for nested and thread safe reading."
     (cond
      ((and (null escapes) (eq case :upcase))
       (dotimes (i *ouch-ptr*)
-       (setf (schar *read-buffer* i)
-             (char-upcase (schar *read-buffer* i)))))
+        (setf (schar *read-buffer* i)
+              (char-upcase (schar *read-buffer* i)))))
      ((eq case :preserve))
      (t
       (macrolet ((skip-esc (&body body)
-                  `(do ((i (1- *ouch-ptr*) (1- i))
-                        (escapes escapes))
-                       ((minusp i))
-                     (declare (fixnum i))
-                     (when (or (null escapes)
-                               (let ((esc (first escapes)))
-                                 (declare (fixnum esc))
-                                 (cond ((< esc i) t)
-                                       (t
-                                        (aver (= esc i))
-                                        (pop escapes)
-                                        nil))))
-                       (let ((ch (schar *read-buffer* i)))
-                         ,@body)))))
-       (flet ((lower-em ()
-                (skip-esc (setf (schar *read-buffer* i) (char-downcase ch))))
-              (raise-em ()
-                (skip-esc (setf (schar *read-buffer* i) (char-upcase ch)))))
-         (ecase case
-           (:upcase (raise-em))
-           (:downcase (lower-em))
-           (:invert
-            (let ((all-upper t)
-                  (all-lower t))
-              (skip-esc
-                (when (both-case-p ch)
-                  (if (upper-case-p ch)
-                      (setq all-lower nil)
-                      (setq all-upper nil))))
-              (cond (all-lower (raise-em))
-                    (all-upper (lower-em))))))))))))
+                   `(do ((i (1- *ouch-ptr*) (1- i))
+                         (escapes escapes))
+                        ((minusp i))
+                      (declare (fixnum i))
+                      (when (or (null escapes)
+                                (let ((esc (first escapes)))
+                                  (declare (fixnum esc))
+                                  (cond ((< esc i) t)
+                                        (t
+                                         (aver (= esc i))
+                                         (pop escapes)
+                                         nil))))
+                        (let ((ch (schar *read-buffer* i)))
+                          ,@body)))))
+        (flet ((lower-em ()
+                 (skip-esc (setf (schar *read-buffer* i) (char-downcase ch))))
+               (raise-em ()
+                 (skip-esc (setf (schar *read-buffer* i) (char-upcase ch)))))
+          (ecase case
+            (:upcase (raise-em))
+            (:downcase (lower-em))
+            (:invert
+             (let ((all-upper t)
+                   (all-lower t))
+               (skip-esc
+                 (when (both-case-p ch)
+                   (if (upper-case-p ch)
+                       (setq all-lower nil)
+                       (setq all-upper nil))))
+               (cond (all-lower (raise-em))
+                     (all-upper (lower-em))))))))))))
 
 (defun read-token (stream firstchar)
   #!+sb-doc
@@ -826,378 +826,378 @@ variables to allow for nested and thread safe reading."
     (return-from read-token nil))
   (let ((attribute-array (character-attribute-array *readtable*))
         (attribute-hash-table (character-attribute-hash-table *readtable*))
-       (package-designator nil)
-       (colons 0)
-       (possibly-rational t)
-       (seen-digit-or-expt nil)
-       (possibly-float t)
-       (was-possibly-float nil)
-       (escapes ())
-       (seen-multiple-escapes nil))
+        (package-designator nil)
+        (colons 0)
+        (possibly-rational t)
+        (seen-digit-or-expt nil)
+        (possibly-float t)
+        (was-possibly-float nil)
+        (escapes ())
+        (seen-multiple-escapes nil))
     (reset-read-buffer)
     (prog ((char firstchar))
       (case (char-class3 char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-sign+ (go SIGN))
-       (#.+char-attr-constituent-digit+ (go LEFTDIGIT))
-       (#.+char-attr-constituent-digit-or-expt+
-        (setq seen-digit-or-expt t)
-        (go LEFTDIGIT))
-       (#.+char-attr-constituent-decimal-digit+ (go LEFTDECIMALDIGIT))
-       (#.+char-attr-constituent-dot+ (go FRONTDOT))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-invalid+ (%reader-error stream "invalid constituent"))
-       ;; can't have eof, whitespace, or terminating macro as first char!
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-sign+ (go SIGN))
+        (#.+char-attr-constituent-digit+ (go LEFTDIGIT))
+        (#.+char-attr-constituent-digit-or-expt+
+         (setq seen-digit-or-expt t)
+         (go LEFTDIGIT))
+        (#.+char-attr-constituent-decimal-digit+ (go LEFTDECIMALDIGIT))
+        (#.+char-attr-constituent-dot+ (go FRONTDOT))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-invalid+ (%reader-error stream "invalid constituent"))
+        ;; can't have eof, whitespace, or terminating macro as first char!
+        (t (go SYMBOL)))
      SIGN ; saw "sign"
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (go RETURN-SYMBOL))
       (setq possibly-rational t
-           possibly-float t)
+            possibly-float t)
       (case (char-class3 char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-digit+ (go LEFTDIGIT))
-       (#.+char-attr-constituent-digit-or-expt+
-        (setq seen-digit-or-expt t)
-        (go LEFTDIGIT))
-       (#.+char-attr-constituent-decimal-digit+ (go LEFTDECIMALDIGIT))
-       (#.+char-attr-constituent-dot+ (go SIGNDOT))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))        
-       (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-digit+ (go LEFTDIGIT))
+        (#.+char-attr-constituent-digit-or-expt+
+         (setq seen-digit-or-expt t)
+         (go LEFTDIGIT))
+        (#.+char-attr-constituent-decimal-digit+ (go LEFTDECIMALDIGIT))
+        (#.+char-attr-constituent-dot+ (go SIGNDOT))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
+        (t (go SYMBOL)))
      LEFTDIGIT ; saw "[sign] {digit}+"
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (return (make-integer)))
       (setq was-possibly-float possibly-float)
       (case (char-class3 char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-digit+ (go LEFTDIGIT))
-       (#.+char-attr-constituent-decimal-digit+ (if possibly-float
-                                                    (go LEFTDECIMALDIGIT)
-                                                    (go SYMBOL)))
-       (#.+char-attr-constituent-dot+ (if possibly-float
-                                          (go MIDDLEDOT)
-                                          (go SYMBOL)))
-       (#.+char-attr-constituent-digit-or-expt+
-        (if (or seen-digit-or-expt (not was-possibly-float))
-            (progn (setq seen-digit-or-expt t) (go LEFTDIGIT))
-            (progn (setq seen-digit-or-expt t) (go LEFTDIGIT-OR-EXPT))))
-       (#.+char-attr-constituent-expt+
-        (if was-possibly-float
-            (go EXPONENT)
-            (go SYMBOL)))
-       (#.+char-attr-constituent-slash+ (if possibly-rational
-                                            (go RATIO)
-                                            (go SYMBOL)))
-       (#.+char-attr-delimiter+ (unread-char char stream)
-                                (return (make-integer)))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-digit+ (go LEFTDIGIT))
+        (#.+char-attr-constituent-decimal-digit+ (if possibly-float
+                                                     (go LEFTDECIMALDIGIT)
+                                                     (go SYMBOL)))
+        (#.+char-attr-constituent-dot+ (if possibly-float
+                                           (go MIDDLEDOT)
+                                           (go SYMBOL)))
+        (#.+char-attr-constituent-digit-or-expt+
+         (if (or seen-digit-or-expt (not was-possibly-float))
+             (progn (setq seen-digit-or-expt t) (go LEFTDIGIT))
+             (progn (setq seen-digit-or-expt t) (go LEFTDIGIT-OR-EXPT))))
+        (#.+char-attr-constituent-expt+
+         (if was-possibly-float
+             (go EXPONENT)
+             (go SYMBOL)))
+        (#.+char-attr-constituent-slash+ (if possibly-rational
+                                             (go RATIO)
+                                             (go SYMBOL)))
+        (#.+char-attr-delimiter+ (unread-char char stream)
+                                 (return (make-integer)))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
      LEFTDIGIT-OR-EXPT
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (return (make-integer)))
       (case (char-class3 char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-digit+ (go LEFTDIGIT))
-       (#.+char-attr-constituent-decimal-digit+ (bug "impossible!"))
-       (#.+char-attr-constituent-dot+ (go SYMBOL))
-       (#.+char-attr-constituent-digit-or-expt+ (go LEFTDIGIT))
-       (#.+char-attr-constituent-expt+ (go SYMBOL))
-       (#.+char-attr-constituent-sign+ (go EXPTSIGN))
-       (#.+char-attr-constituent-slash+ (if possibly-rational
-                                            (go RATIO)
-                                            (go SYMBOL)))
-       (#.+char-attr-delimiter+ (unread-char char stream)
-                                (return (make-integer)))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-digit+ (go LEFTDIGIT))
+        (#.+char-attr-constituent-decimal-digit+ (bug "impossible!"))
+        (#.+char-attr-constituent-dot+ (go SYMBOL))
+        (#.+char-attr-constituent-digit-or-expt+ (go LEFTDIGIT))
+        (#.+char-attr-constituent-expt+ (go SYMBOL))
+        (#.+char-attr-constituent-sign+ (go EXPTSIGN))
+        (#.+char-attr-constituent-slash+ (if possibly-rational
+                                             (go RATIO)
+                                             (go SYMBOL)))
+        (#.+char-attr-delimiter+ (unread-char char stream)
+                                 (return (make-integer)))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
      LEFTDECIMALDIGIT ; saw "[sign] {decimal-digit}+"
       (aver possibly-float)
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (go RETURN-SYMBOL))
       (case (char-class char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-digit+ (go LEFTDECIMALDIGIT))
-       (#.+char-attr-constituent-dot+ (go MIDDLEDOT))
-       (#.+char-attr-constituent-expt+ (go EXPONENT))
-       (#.+char-attr-constituent-slash+ (aver (not possibly-rational))
-                                        (go SYMBOL))
-       (#.+char-attr-delimiter+ (unread-char char stream)
-                                (go RETURN-SYMBOL))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-digit+ (go LEFTDECIMALDIGIT))
+        (#.+char-attr-constituent-dot+ (go MIDDLEDOT))
+        (#.+char-attr-constituent-expt+ (go EXPONENT))
+        (#.+char-attr-constituent-slash+ (aver (not possibly-rational))
+                                         (go SYMBOL))
+        (#.+char-attr-delimiter+ (unread-char char stream)
+                                 (go RETURN-SYMBOL))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
      MIDDLEDOT ; saw "[sign] {digit}+ dot"
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (return (let ((*read-base* 10))
-                            (make-integer))))
+                             (make-integer))))
       (case (char-class char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-digit+ (go RIGHTDIGIT))
-       (#.+char-attr-constituent-expt+ (go EXPONENT))
-       (#.+char-attr-delimiter+
-        (unread-char char stream)
-        (return (let ((*read-base* 10))
-                  (make-integer))))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-digit+ (go RIGHTDIGIT))
+        (#.+char-attr-constituent-expt+ (go EXPONENT))
+        (#.+char-attr-delimiter+
+         (unread-char char stream)
+         (return (let ((*read-base* 10))
+                   (make-integer))))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
      RIGHTDIGIT ; saw "[sign] {decimal-digit}* dot {digit}+"
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (return (make-float stream)))
       (case (char-class char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-digit+ (go RIGHTDIGIT))
-       (#.+char-attr-constituent-expt+ (go EXPONENT))
-       (#.+char-attr-delimiter+
-        (unread-char char stream)
-        (return (make-float stream)))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-digit+ (go RIGHTDIGIT))
+        (#.+char-attr-constituent-expt+ (go EXPONENT))
+        (#.+char-attr-delimiter+
+         (unread-char char stream)
+         (return (make-float stream)))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
      SIGNDOT ; saw "[sign] dot"
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (go RETURN-SYMBOL))
       (case (char-class char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-digit+ (go RIGHTDIGIT))
-       (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-digit+ (go RIGHTDIGIT))
+        (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (t (go SYMBOL)))
      FRONTDOT ; saw "dot"
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (%reader-error stream "dot context error"))
       (case (char-class char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-digit+ (go RIGHTDIGIT))
-       (#.+char-attr-constituent-dot+ (go DOTS))
-       (#.+char-attr-delimiter+  (%reader-error stream "dot context error"))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-digit+ (go RIGHTDIGIT))
+        (#.+char-attr-constituent-dot+ (go DOTS))
+        (#.+char-attr-delimiter+  (%reader-error stream "dot context error"))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
      EXPONENT
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (go RETURN-SYMBOL))
       (setq possibly-float t)
       (case (char-class char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-sign+ (go EXPTSIGN))
-       (#.+char-attr-constituent-digit+ (go EXPTDIGIT))
-       (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-sign+ (go EXPTSIGN))
+        (#.+char-attr-constituent-digit+ (go EXPTDIGIT))
+        (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
      EXPTSIGN ; got to EXPONENT, and saw a sign character
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (go RETURN-SYMBOL))
       (case (char-class char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-digit+ (go EXPTDIGIT))
-       (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-digit+ (go EXPTDIGIT))
+        (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
      EXPTDIGIT ; got to EXPONENT, saw "[sign] {digit}+"
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (return (make-float stream)))
       (case (char-class char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-digit+ (go EXPTDIGIT))
-       (#.+char-attr-delimiter+
-        (unread-char char stream)
-        (return (make-float stream)))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-digit+ (go EXPTDIGIT))
+        (#.+char-attr-delimiter+
+         (unread-char char stream)
+         (return (make-float stream)))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
      RATIO ; saw "[sign] {digit}+ slash"
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (go RETURN-SYMBOL))
       (case (char-class2 char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-digit+ (go RATIODIGIT))
-       (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-digit+ (go RATIODIGIT))
+        (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
      RATIODIGIT ; saw "[sign] {digit}+ slash {digit}+"
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (return (make-ratio stream)))
       (case (char-class2 char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-digit+ (go RATIODIGIT))
-       (#.+char-attr-delimiter+
-        (unread-char char stream)
-        (return (make-ratio stream)))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-digit+ (go RATIODIGIT))
+        (#.+char-attr-delimiter+
+         (unread-char char stream)
+         (return (make-ratio stream)))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
      DOTS ; saw "dot {dot}+"
       (ouch-read-buffer char)
       (setq char (read-char stream nil nil))
       (unless char (%reader-error stream "too many dots"))
       (case (char-class char attribute-array attribute-hash-table)
-       (#.+char-attr-constituent-dot+ (go DOTS))
-       (#.+char-attr-delimiter+
-        (unread-char char stream)
-        (%reader-error stream "too many dots"))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-constituent-dot+ (go DOTS))
+        (#.+char-attr-delimiter+
+         (unread-char char stream)
+         (%reader-error stream "too many dots"))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
      SYMBOL ; not a dot, dots, or number
       (let ((stream (in-synonym-of stream)))
-       (if (ansi-stream-p stream)
-           (prepare-for-fast-read-char stream
-             (prog ()
-              SYMBOL-LOOP
-              (ouch-read-buffer char)
-              (setq char (fast-read-char nil nil))
-              (unless char (go RETURN-SYMBOL))
-              (case (char-class char attribute-array attribute-hash-table)
-                (#.+char-attr-single-escape+ (done-with-fast-read-char)
-                                             (go SINGLE-ESCAPE))
-                (#.+char-attr-delimiter+ (done-with-fast-read-char)
-                                         (unread-char char stream)
-                                         (go RETURN-SYMBOL))
-                (#.+char-attr-multiple-escape+ (done-with-fast-read-char)
-                                               (go MULT-ESCAPE))
-                (#.+char-attr-package-delimiter+ (done-with-fast-read-char)
-                                                 (go COLON))
-                (t (go SYMBOL-LOOP)))))
-           ;; CLOS stream
-           (prog ()
-            SYMBOL-LOOP
-            (ouch-read-buffer char)
-            (setq char (read-char stream nil :eof))
-            (when (eq char :eof) (go RETURN-SYMBOL))
-            (case (char-class char attribute-array attribute-hash-table)
-              (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-              (#.+char-attr-delimiter+ (unread-char char stream)
-                           (go RETURN-SYMBOL))
-              (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-              (#.+char-attr-package-delimiter+ (go COLON))
-              (t (go SYMBOL-LOOP))))))
+        (if (ansi-stream-p stream)
+            (prepare-for-fast-read-char stream
+              (prog ()
+               SYMBOL-LOOP
+               (ouch-read-buffer char)
+               (setq char (fast-read-char nil nil))
+               (unless char (go RETURN-SYMBOL))
+               (case (char-class char attribute-array attribute-hash-table)
+                 (#.+char-attr-single-escape+ (done-with-fast-read-char)
+                                              (go SINGLE-ESCAPE))
+                 (#.+char-attr-delimiter+ (done-with-fast-read-char)
+                                          (unread-char char stream)
+                                          (go RETURN-SYMBOL))
+                 (#.+char-attr-multiple-escape+ (done-with-fast-read-char)
+                                                (go MULT-ESCAPE))
+                 (#.+char-attr-package-delimiter+ (done-with-fast-read-char)
+                                                  (go COLON))
+                 (t (go SYMBOL-LOOP)))))
+            ;; CLOS stream
+            (prog ()
+             SYMBOL-LOOP
+             (ouch-read-buffer char)
+             (setq char (read-char stream nil :eof))
+             (when (eq char :eof) (go RETURN-SYMBOL))
+             (case (char-class char attribute-array attribute-hash-table)
+               (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+               (#.+char-attr-delimiter+ (unread-char char stream)
+                            (go RETURN-SYMBOL))
+               (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+               (#.+char-attr-package-delimiter+ (go COLON))
+               (t (go SYMBOL-LOOP))))))
      SINGLE-ESCAPE ; saw a single-escape
       ;; Don't put the escape character in the read buffer.
       ;; READ-NEXT CHAR, put in buffer (no case conversion).
       (let ((nextchar (read-char stream nil nil)))
-       (unless nextchar
-         (reader-eof-error stream "after single-escape character"))
-       (push *ouch-ptr* escapes)
-       (ouch-read-buffer nextchar))
+        (unless nextchar
+          (reader-eof-error stream "after single-escape character"))
+        (push *ouch-ptr* escapes)
+        (ouch-read-buffer nextchar))
       (setq char (read-char stream nil nil))
       (unless char (go RETURN-SYMBOL))
       (case (char-class char attribute-array attribute-hash-table)
-       (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
       MULT-ESCAPE
       (setq seen-multiple-escapes t)
       (do ((char (read-char stream t) (read-char stream t)))
-         ((multiple-escape-p char))
-       (if (single-escape-p char) (setq char (read-char stream t)))
-       (push *ouch-ptr* escapes)
-       (ouch-read-buffer char))
+          ((multiple-escape-p char))
+        (if (single-escape-p char) (setq char (read-char stream t)))
+        (push *ouch-ptr* escapes)
+        (ouch-read-buffer char))
       (setq char (read-char stream nil nil))
       (unless char (go RETURN-SYMBOL))
       (case (char-class char attribute-array attribute-hash-table)
-       (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go COLON))
-       (t (go SYMBOL)))
+        (#.+char-attr-delimiter+ (unread-char char stream) (go RETURN-SYMBOL))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go COLON))
+        (t (go SYMBOL)))
       COLON
       (casify-read-buffer escapes)
       (unless (zerop colons)
-       (%reader-error stream "too many colons in ~S"
-                     (read-buffer-to-string)))
+        (%reader-error stream "too many colons in ~S"
+                      (read-buffer-to-string)))
       (setq colons 1)
       (setq package-designator
-           (if (plusp *ouch-ptr*)
-               ;; FIXME: It seems inefficient to cons up a package
-               ;; designator string every time we read a symbol with an
-               ;; explicit package prefix. Perhaps we could implement
-               ;; a FIND-PACKAGE* function analogous to INTERN*
-               ;; and friends?
-               (read-buffer-to-string)
-               (if seen-multiple-escapes
-                   (read-buffer-to-string)
-                   *keyword-package*)))
+            (if (plusp *ouch-ptr*)
+                ;; FIXME: It seems inefficient to cons up a package
+                ;; designator string every time we read a symbol with an
+                ;; explicit package prefix. Perhaps we could implement
+                ;; a FIND-PACKAGE* function analogous to INTERN*
+                ;; and friends?
+                (read-buffer-to-string)
+                (if seen-multiple-escapes
+                    (read-buffer-to-string)
+                    *keyword-package*)))
       (reset-read-buffer)
       (setq escapes ())
       (setq char (read-char stream nil nil))
       (unless char (reader-eof-error stream "after reading a colon"))
       (case (char-class char attribute-array attribute-hash-table)
-       (#.+char-attr-delimiter+
-        (unread-char char stream)
-        (%reader-error stream
-                       "illegal terminating character after a colon: ~S"
-                       char))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+ (go INTERN))
-       (t (go SYMBOL)))
+        (#.+char-attr-delimiter+
+         (unread-char char stream)
+         (%reader-error stream
+                        "illegal terminating character after a colon: ~S"
+                        char))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+ (go INTERN))
+        (t (go SYMBOL)))
       INTERN
       (setq colons 2)
       (setq char (read-char stream nil nil))
       (unless char
-       (reader-eof-error stream "after reading a colon"))
+        (reader-eof-error stream "after reading a colon"))
       (case (char-class char attribute-array attribute-hash-table)
-       (#.+char-attr-delimiter+
-        (unread-char char stream)
-        (%reader-error stream
-                       "illegal terminating character after a colon: ~S"
-                       char))
-       (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
-       (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
-       (#.+char-attr-package-delimiter+
-        (%reader-error stream
-                       "too many colons after ~S name"
-                       package-designator))
-       (t (go SYMBOL)))
+        (#.+char-attr-delimiter+
+         (unread-char char stream)
+         (%reader-error stream
+                        "illegal terminating character after a colon: ~S"
+                        char))
+        (#.+char-attr-single-escape+ (go SINGLE-ESCAPE))
+        (#.+char-attr-multiple-escape+ (go MULT-ESCAPE))
+        (#.+char-attr-package-delimiter+
+         (%reader-error stream
+                        "too many colons after ~S name"
+                        package-designator))
+        (t (go SYMBOL)))
       RETURN-SYMBOL
       (casify-read-buffer escapes)
       (let ((found (if package-designator
-                      (find-package package-designator)
-                      (sane-package))))
-       (unless found
-         (error 'reader-package-error :stream stream
-                :format-arguments (list package-designator)
-                :format-control "package ~S not found"))
-
-       (if (or (zerop colons) (= colons 2) (eq found *keyword-package*))
-           (return (intern* *read-buffer* *ouch-ptr* found))
-           (multiple-value-bind (symbol test)
-               (find-symbol* *read-buffer* *ouch-ptr* found)
-             (when (eq test :external) (return symbol))
-             (let ((name (read-buffer-to-string)))
-               (with-simple-restart (continue "Use symbol anyway.")
-                 (error 'reader-package-error :stream stream
-                        :format-arguments (list name (package-name found))
-                        :format-control
-                        (if test
-                            "The symbol ~S is not external in the ~A package."
-                            "Symbol ~S not found in the ~A package.")))
-               (return (intern name found)))))))))
+                       (find-package package-designator)
+                       (sane-package))))
+        (unless found
+          (error 'reader-package-error :stream stream
+                 :format-arguments (list package-designator)
+                 :format-control "package ~S not found"))
+
+        (if (or (zerop colons) (= colons 2) (eq found *keyword-package*))
+            (return (intern* *read-buffer* *ouch-ptr* found))
+            (multiple-value-bind (symbol test)
+                (find-symbol* *read-buffer* *ouch-ptr* found)
+              (when (eq test :external) (return symbol))
+              (let ((name (read-buffer-to-string)))
+                (with-simple-restart (continue "Use symbol anyway.")
+                  (error 'reader-package-error :stream stream
+                         :format-arguments (list name (package-name found))
+                         :format-control
+                         (if test
+                             "The symbol ~S is not external in the ~A package."
+                             "Symbol ~S not found in the ~A package.")))
+                (return (intern name found)))))))))
 
 ;;; for semi-external use:
 ;;;
@@ -1207,12 +1207,12 @@ variables to allow for nested and thread safe reading."
 (defun read-extended-token (stream &optional (*readtable* *readtable*))
   (let ((first-char (read-char stream nil nil t)))
     (cond (first-char
-          (multiple-value-bind (escapes colon)
+           (multiple-value-bind (escapes colon)
                (internal-read-extended-token stream first-char nil)
-            (casify-read-buffer escapes)
-            (values (read-buffer-to-string) (not (null escapes)) colon)))
-         (t
-          (values "" nil nil)))))
+             (casify-read-buffer escapes)
+             (values (read-buffer-to-string) (not (null escapes)) colon)))
+          (t
+           (values "" nil nil)))))
 
 ;;; for semi-external use:
 ;;;
@@ -1257,20 +1257,20 @@ variables to allow for nested and thread safe reading."
   #!+sb-doc
   "the largest fixnum power of the base for MAKE-INTEGER")
 (declaim (simple-vector *integer-reader-safe-digits*
-                       *integer-reader-base-power*))
+                        *integer-reader-base-power*))
 #|
 (defun !cold-init-integer-reader ()
   (do ((base 2 (1+ base)))
       ((> base 36))
     (let ((digits
-         (do ((fix (truncate most-positive-fixnum base)
-                   (truncate fix base))
-              (digits 0 (1+ digits)))
-             ((zerop fix) digits))))
+          (do ((fix (truncate most-positive-fixnum base)
+                    (truncate fix base))
+               (digits 0 (1+ digits)))
+              ((zerop fix) digits))))
       (setf (aref *integer-reader-safe-digits* base)
-           digits
-           (aref *integer-reader-base-power* base)
-           (expt base digits)))))
+            digits
+            (aref *integer-reader-base-power* base)
+            (expt base digits)))))
 |#
 
 (defun make-integer ()
@@ -1278,31 +1278,31 @@ variables to allow for nested and thread safe reading."
   "Minimizes bignum-fixnum multiplies by reading a 'safe' number of digits,
   then multiplying by a power of the base and adding."
   (let* ((base *read-base*)
-        (digits-per (aref *integer-reader-safe-digits* base))
-        (base-power (aref *integer-reader-base-power* base))
-        (negativep nil)
-        (number 0))
+         (digits-per (aref *integer-reader-safe-digits* base))
+         (base-power (aref *integer-reader-base-power* base))
+         (negativep nil)
+         (number 0))
     (declare (type index digits-per base-power))
     (read-unwind-read-buffer)
     (let ((char (inch-read-buffer)))
       (cond ((char= char #\-)
-            (setq negativep t))
-           ((char= char #\+))
-           (t (unread-buffer))))
+             (setq negativep t))
+            ((char= char #\+))
+            (t (unread-buffer))))
     (loop
      (let ((num 0))
        (declare (type index num))
        (dotimes (digit digits-per)
-        (let* ((ch (inch-read-buffer)))
-          (cond ((or (eofp ch) (char= ch #\.))
-                 (return-from make-integer
-                              (let ((res
-                                     (if (zerop number) num
-                                         (+ num (* number
-                                                   (expt base digit))))))
-                                (if negativep (- res) res))))
-                (t (setq num (+ (digit-char-p ch base)
-                                (the index (* num base))))))))
+         (let* ((ch (inch-read-buffer)))
+           (cond ((or (eofp ch) (char= ch #\.))
+                  (return-from make-integer
+                               (let ((res
+                                      (if (zerop number) num
+                                          (+ num (* number
+                                                    (expt base digit))))))
+                                 (if negativep (- res) res))))
+                 (t (setq num (+ (digit-char-p ch base)
+                                 (the index (* num base))))))))
        (setq number (+ num (* number base-power)))))))
 
 (defun make-float (stream)
@@ -1310,74 +1310,74 @@ variables to allow for nested and thread safe reading."
   ;; else after it.
   (read-unwind-read-buffer)
   (let ((negative-fraction nil)
-       (number 0)
-       (divisor 1)
-       (negative-exponent nil)
-       (exponent 0)
-       (float-char ())
-       (char (inch-read-buffer)))
+        (number 0)
+        (divisor 1)
+        (negative-exponent nil)
+        (exponent 0)
+        (float-char ())
+        (char (inch-read-buffer)))
     (if (cond ((char= char #\+) t)
-             ((char= char #\-) (setq negative-fraction t)))
-       ;; Flush it.
-       (setq char (inch-read-buffer)))
+              ((char= char #\-) (setq negative-fraction t)))
+        ;; Flush it.
+        (setq char (inch-read-buffer)))
     ;; Read digits before the dot.
     (do* ((ch char (inch-read-buffer))
-         (dig (digit-char-p ch) (digit-char-p ch)))
-        ((not dig) (setq char ch))
+          (dig (digit-char-p ch) (digit-char-p ch)))
+         ((not dig) (setq char ch))
       (setq number (+ (* number 10) dig)))
     ;; Deal with the dot, if it's there.
     (when (char= char #\.)
       (setq char (inch-read-buffer))
       ;; Read digits after the dot.
       (do* ((ch char (inch-read-buffer))
-           (dig (and (not (eofp ch)) (digit-char-p ch))
-                (and (not (eofp ch)) (digit-char-p ch))))
-          ((not dig) (setq char ch))
-       (setq divisor (* divisor 10))
-       (setq number (+ (* number 10) dig))))
+            (dig (and (not (eofp ch)) (digit-char-p ch))
+                 (and (not (eofp ch)) (digit-char-p ch))))
+           ((not dig) (setq char ch))
+        (setq divisor (* divisor 10))
+        (setq number (+ (* number 10) dig))))
     ;; Is there an exponent letter?
     (cond ((eofp char)
-          ;; If not, we've read the whole number.
-          (let ((num (make-float-aux number divisor
-                                     *read-default-float-format*
-                                     stream)))
-            (return-from make-float (if negative-fraction (- num) num))))
-         ((exponent-letterp char)
-          (setq float-char char)
-          ;; Build exponent.
-          (setq char (inch-read-buffer))
-          ;; Check leading sign.
-          (if (cond ((char= char #\+) t)
-                    ((char= char #\-) (setq negative-exponent t)))
-              ;; Flush sign.
-              (setq char (inch-read-buffer)))
-          ;; Read digits for exponent.
-          (do* ((ch char (inch-read-buffer))
-                (dig (and (not (eofp ch)) (digit-char-p ch))
-                     (and (not (eofp ch)) (digit-char-p ch))))
-               ((not dig)
-                (setq exponent (if negative-exponent (- exponent) exponent)))
-            (setq exponent (+ (* exponent 10) dig)))
-          ;; Generate and return the float, depending on FLOAT-CHAR:
-          (let* ((float-format (case (char-upcase float-char)
-                                 (#\E *read-default-float-format*)
-                                 (#\S 'short-float)
-                                 (#\F 'single-float)
-                                 (#\D 'double-float)
-                                 (#\L 'long-float)))
-                 (result (make-float-aux (* (expt 10 exponent) number)
-                                         divisor float-format stream)))
-            (return-from make-float
-              (if negative-fraction (- result) result))))
-         (t (bug "bad fallthrough in floating point reader")))))
+           ;; If not, we've read the whole number.
+           (let ((num (make-float-aux number divisor
+                                      *read-default-float-format*
+                                      stream)))
+             (return-from make-float (if negative-fraction (- num) num))))
+          ((exponent-letterp char)
+           (setq float-char char)
+           ;; Build exponent.
+           (setq char (inch-read-buffer))
+           ;; Check leading sign.
+           (if (cond ((char= char #\+) t)
+                     ((char= char #\-) (setq negative-exponent t)))
+               ;; Flush sign.
+               (setq char (inch-read-buffer)))
+           ;; Read digits for exponent.
+           (do* ((ch char (inch-read-buffer))
+                 (dig (and (not (eofp ch)) (digit-char-p ch))
+                      (and (not (eofp ch)) (digit-char-p ch))))
+                ((not dig)
+                 (setq exponent (if negative-exponent (- exponent) exponent)))
+             (setq exponent (+ (* exponent 10) dig)))
+           ;; Generate and return the float, depending on FLOAT-CHAR:
+           (let* ((float-format (case (char-upcase float-char)
+                                  (#\E *read-default-float-format*)
+                                  (#\S 'short-float)
+                                  (#\F 'single-float)
+                                  (#\D 'double-float)
+                                  (#\L 'long-float)))
+                  (result (make-float-aux (* (expt 10 exponent) number)
+                                          divisor float-format stream)))
+             (return-from make-float
+               (if negative-fraction (- result) result))))
+          (t (bug "bad fallthrough in floating point reader")))))
 
 (defun make-float-aux (number divisor float-format stream)
   (handler-case
       (coerce (/ number divisor) float-format)
     (type-error (c)
       (error 'reader-impossible-number-error
-            :error c :stream stream
-            :format-control "failed to build float"))))
+             :error c :stream stream
+             :format-control "failed to build float"))))
 
 (defun make-ratio (stream)
   ;; Assume *READ-BUFFER* contains a legal ratio. Build the number from
@@ -1388,27 +1388,27 @@ variables to allow for nested and thread safe reading."
     (read-unwind-read-buffer)
     (setq char (inch-read-buffer))
     (cond ((char= char #\+)
-          (setq char (inch-read-buffer)))
-         ((char= char #\-)
-          (setq char (inch-read-buffer))
-          (setq negative-number t)))
+           (setq char (inch-read-buffer)))
+          ((char= char #\-)
+           (setq char (inch-read-buffer))
+           (setq negative-number t)))
     ;; Get numerator.
     (do* ((ch char (inch-read-buffer))
-         (dig (digit-char-p ch *read-base*)
-              (digit-char-p ch *read-base*)))
-        ((not dig))
-        (setq numerator (+ (* numerator *read-base*) dig)))
+          (dig (digit-char-p ch *read-base*)
+               (digit-char-p ch *read-base*)))
+         ((not dig))
+         (setq numerator (+ (* numerator *read-base*) dig)))
     ;; Get denominator.
     (do* ((ch (inch-read-buffer) (inch-read-buffer))
-         (dig ()))
-        ((or (eofp ch) (not (setq dig (digit-char-p ch *read-base*)))))
-        (setq denominator (+ (* denominator *read-base*) dig)))
+          (dig ()))
+         ((or (eofp ch) (not (setq dig (digit-char-p ch *read-base*)))))
+         (setq denominator (+ (* denominator *read-base*) dig)))
     (let ((num (handler-case
-                  (/ numerator denominator)
-                (arithmetic-error (c)
-                  (error 'reader-impossible-number-error
-                         :error c :stream stream
-                         :format-control "failed to build ratio")))))
+                   (/ numerator denominator)
+                 (arithmetic-error (c)
+                   (error 'reader-impossible-number-error
+                          :error c :stream stream
+                          :format-control "failed to build ratio")))))
       (if negative-number (- num) num))))
 \f
 ;;;; cruft for dispatch macros
@@ -1423,20 +1423,20 @@ variables to allow for nested and thread safe reading."
       (%reader-error stream "no dispatch function defined for ~S" sub-char)))
 
 (defun make-dispatch-macro-character (char &optional
-                                          (non-terminating-p nil)
-                                          (rt *readtable*))
+                                           (non-terminating-p nil)
+                                           (rt *readtable*))
   #!+sb-doc
   "Cause CHAR to become a dispatching macro character in readtable (which
    defaults to the current readtable). If NON-TERMINATING-P, the char will
    be non-terminating."
   (set-macro-character char #'read-dispatch-char non-terminating-p rt)
   (let* ((dalist (dispatch-tables rt))
-        (dtable (cdr (find char dalist :test #'char= :key #'car))))
+         (dtable (cdr (find char dalist :test #'char= :key #'car))))
     (cond (dtable
-          (error "The dispatch character ~S already exists." char))
-         (t
-          (setf (dispatch-tables rt)
-                (push (cons char (make-char-dispatch-table)) dalist)))))
+           (error "The dispatch character ~S already exists." char))
+          (t
+           (setf (dispatch-tables rt)
+                 (push (cons char (make-char-dispatch-table)) dalist)))))
   t)
 
 (defun set-dispatch-macro-character (disp-char sub-char function
@@ -1450,11 +1450,11 @@ variables to allow for nested and thread safe reading."
     (error "SUB-CHAR must not be a decimal digit: ~S" sub-char))
   (let* ((sub-char (char-upcase sub-char))
          (rt (or rt *standard-readtable*))
-        (dpair (find disp-char (dispatch-tables rt)
-                     :test #'char= :key #'car)))
+         (dpair (find disp-char (dispatch-tables rt)
+                      :test #'char= :key #'car)))
     (if dpair
-       (setf (gethash sub-char (cdr dpair)) (coerce function 'function))
-       (error "~S is not a dispatch char." disp-char))))
+        (setf (gethash sub-char (cdr dpair)) (coerce function 'function))
+        (error "~S is not a dispatch char." disp-char))))
 
 (defun get-dispatch-macro-character (disp-char sub-char
                                      &optional (rt *readtable*))
@@ -1472,41 +1472,41 @@ variables to allow for nested and thread safe reading."
 (defun read-dispatch-char (stream char)
   ;; Read some digits.
   (let ((numargp nil)
-       (numarg 0)
-       (sub-char ()))
+        (numarg 0)
+        (sub-char ()))
     (do* ((ch (read-char stream nil *eof-object*)
-             (read-char stream nil *eof-object*))
-         (dig ()))
-        ((or (eofp ch)
-             (not (setq dig (digit-char-p ch))))
-         ;; Take care of the extra char.
-         (if (eofp ch)
-             (reader-eof-error stream "inside dispatch character")
-             (setq sub-char (char-upcase ch))))
+              (read-char stream nil *eof-object*))
+          (dig ()))
+         ((or (eofp ch)
+              (not (setq dig (digit-char-p ch))))
+          ;; Take care of the extra char.
+          (if (eofp ch)
+              (reader-eof-error stream "inside dispatch character")
+              (setq sub-char (char-upcase ch))))
       (setq numargp t)
       (setq numarg (+ (* numarg 10) dig)))
     ;; Look up the function and call it.
     (let ((dpair (find char (dispatch-tables *readtable*)
-                      :test #'char= :key #'car)))
+                       :test #'char= :key #'car)))
       (if dpair
-         (funcall (the function
+          (funcall (the function
                      (gethash sub-char (cdr dpair) #'dispatch-char-error))
-                  stream sub-char (if numargp numarg nil))
-         (%reader-error stream "no dispatch table for dispatch char")))))
+                   stream sub-char (if numargp numarg nil))
+          (%reader-error stream "no dispatch table for dispatch char")))))
 \f
 ;;;; READ-FROM-STRING
 
 (defun read-from-string (string &optional (eof-error-p t) eof-value
-                               &key (start 0) end
-                               preserve-whitespace)
+                                &key (start 0) end
+                                preserve-whitespace)
   #!+sb-doc
   "The characters of string are successively given to the lisp reader
    and the lisp object built by the reader is returned. Macro chars
    will take effect."
   (declare (string string))
   (with-array-data ((string string :offset-var offset)
-                   (start start)
-                   (end (%check-vector-sequence-bounds string start end)))
+                    (start start)
+                    (end (%check-vector-sequence-bounds string start end)))
     (let ((stream (make-string-input-stream string start end)))
       (values (if preserve-whitespace
                   (read-preserving-whitespace stream eof-error-p eof-value)
@@ -1522,54 +1522,54 @@ variables to allow for nested and thread safe reading."
   whitespace characters and then tries to parse an integer. The
   radix parameter must be between 2 and 36."
   (macrolet ((parse-error (format-control)
-              `(error 'simple-parse-error
-                      :format-control ,format-control
-                      :format-arguments (list string))))
+               `(error 'simple-parse-error
+                       :format-control ,format-control
+                       :format-arguments (list string))))
     (with-array-data ((string string :offset-var offset)
-                     (start start)
-                     (end (%check-vector-sequence-bounds string start end)))
+                      (start start)
+                      (end (%check-vector-sequence-bounds string start end)))
       (let ((index (do ((i start (1+ i)))
-                      ((= i end)
-                       (if junk-allowed
-                           (return-from parse-integer (values nil end))
-                           (parse-error "no non-whitespace characters in string ~S.")))
-                    (declare (fixnum i))
-                    (unless (whitespacep (char string i)) (return i))))
-           (minusp nil)
-           (found-digit nil)
-           (result 0))
-       (declare (fixnum index))
-       (let ((char (char string index)))
-         (cond ((char= char #\-)
-                (setq minusp t)
-                (incf index))
-               ((char= char #\+)
-                (incf index))))
-       (loop
-        (when (= index end) (return nil))
-        (let* ((char (char string index))
-               (weight (digit-char-p char radix)))
-          (cond (weight
-                 (setq result (+ weight (* result radix))
-                       found-digit t))
-                (junk-allowed (return nil))
-                ((whitespacep char)
+                       ((= i end)
+                        (if junk-allowed
+                            (return-from parse-integer (values nil end))
+                            (parse-error "no non-whitespace characters in string ~S.")))
+                     (declare (fixnum i))
+                     (unless (whitespacep (char string i)) (return i))))
+            (minusp nil)
+            (found-digit nil)
+            (result 0))
+        (declare (fixnum index))
+        (let ((char (char string index)))
+          (cond ((char= char #\-)
+                 (setq minusp t)
+                 (incf index))
+                ((char= char #\+)
+                 (incf index))))
+        (loop
+         (when (= index end) (return nil))
+         (let* ((char (char string index))
+                (weight (digit-char-p char radix)))
+           (cond (weight
+                  (setq result (+ weight (* result radix))
+                        found-digit t))
+                 (junk-allowed (return nil))
+                 ((whitespacep char)
                   (loop
                    (incf index)
                    (when (= index end) (return))
                    (unless (whitespacep (char string index))
-                     (parse-error "junk in string ~S")))
-                 (return nil))
-                (t
-                 (parse-error "junk in string ~S"))))
-        (incf index))
-       (values
-        (if found-digit
-            (if minusp (- result) result)
-            (if junk-allowed
-                nil
-                (parse-error "no digits in string ~S")))
-        (- index offset))))))
+                      (parse-error "junk in string ~S")))
+                  (return nil))
+                 (t
+                  (parse-error "junk in string ~S"))))
+         (incf index))
+        (values
+         (if found-digit
+             (if minusp (- result) result)
+             (if junk-allowed
+                 nil
+                 (parse-error "no digits in string ~S")))
+         (- index offset))))))
 \f
 ;;;; reader initialization code