X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Floop.impure.lisp;h=f553ac78c9fa18caf6123106e295bdaf049ce5c7;hb=9f29c03145c7fdefc5f54939d67ee8e00cd85f14;hp=14401657ad3262b012e6f39606d54806ab43c982;hpb=2d75f4246b8451a9c2c95cd36673d98c82c9845f;p=sbcl.git diff --git a/tests/loop.impure.lisp b/tests/loop.impure.lisp index 1440165..f553ac7 100644 --- a/tests/loop.impure.lisp +++ b/tests/loop.impure.lisp @@ -6,7 +6,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. @@ -22,14 +22,13 @@ (let ((blah2 (intern "blah2" package))) (export blah2 package)) (assert (equal '("blah" "blah2") - (sort (loop for sym being each present-symbol of package - for sym-name = (symbol-name sym) - collect sym-name) - #'string<))) + (sort (loop for sym being each present-symbol of package + for sym-name = (symbol-name sym) + collect sym-name) + #'string<))) (assert (equal '("blah2") - (sort (loop for sym being each external-symbol of package for - sym-name = (symbol-name sym) collect sym-name) - (function string<))))) + (sort (loop for sym being each external-symbol of package for + sym-name = (symbol-name sym) collect sym-name) + (function string<))))) ;;; success -(quit :unix-status 104)