Commit 0ba056fa authored by Robert Goldman's avatar Robert Goldman
Browse files

Fix missing ELSE error.

Mistakenly removed the else branch from (EQL :OUTPUT) case in
%NORMALIZE-IO-SPECIFIER.
parent 3f27d2a6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -405,7 +405,8 @@ argument to pass to the internal RUN-PROGRAM"
             #+(or abcl allegro clozure cmucl ecl lispworks mkcl sbcl scl)  :output
             (not-implemented-error :error-output-redirect
                                    "Can't send ~a to ~a on this lisp implementation."
                                    role specifier))))
                                    role specifier))
          (parameter-error "~S IO specifier invalid for ~S" specifier role)))
      (otherwise
       (parameter-error "Incorrect I/O specifier ~S for ~S"
                        specifier role))))