X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Freader.impure.lisp;h=5b35f78e0a36b0308568acfddaa0db93d3997bf6;hb=2b0710d31c3fa1e5448ec842504d5276842e394f;hp=1d90ae191b4ac84c9a58f57c4bf57fc1f761e3f6;hpb=15ecd1ada227a60bcb3a660a4924c8d9449cb997;p=sbcl.git diff --git a/tests/reader.impure.lisp b/tests/reader.impure.lisp index 1d90ae1..5b35f78 100644 --- a/tests/reader.impure.lisp +++ b/tests/reader.impure.lisp @@ -8,7 +8,7 @@ ;;;; While most of SBCL is derived from the CMU CL system, the test ;;;; files (like this one) were written from scratch after the fork ;;;; from CMU CL. -;;;; +;;;; ;;;; This software is in the public domain and is provided with ;;;; absolutely no warranty. See the COPYING and CREDITS files for ;;;; more information. @@ -81,7 +81,7 @@ ;;; reported by Henrik Motakef (defpackage "") (assert (eq (symbol-package (read-from-string "||::FOO")) - (find-package ""))) + (find-package ""))) ;;; test nested reads, test case by Helmut Eller for cmucl (defclass my-in-stream (sb-gray:fundamental-character-input-stream) @@ -93,8 +93,8 @@ (with-input-from-string (s "b") (read s)) (with-slots (last-char) s (cond (last-char (prog1 last-char (setf last-char nil))) - (t (prog1 (aref string i) - (setq i (mod (1+ i) (length string))))))))) + (t (prog1 (aref string i) + (setq i (mod (1+ i) (length string))))))))) (defmethod sb-gray:stream-unread-char ((s my-in-stream) char) (setf (slot-value s 'last-char) char) @@ -103,4 +103,3 @@ (assert (eq 'a (read (make-instance 'my-in-stream :last-char nil)))) ;;; success -(quit :unix-status 104)