From 4166d64517eb9feb7886bb09aeba5202d5216a8e Mon Sep 17 00:00:00 2001 From: "Thomas M. Hermann" Date: Sat, 27 Apr 2013 17:12:02 -0500 Subject: [PATCH] Ignore CCL FASL files. Trim trailing white space. --- .gitignore | 3 ++- lisp-unit.lisp | 26 +++++++++++++------------- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 417662e..73f35dd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ # Ignore FASL files *.fasl *.lx64fsl -*~ \ No newline at end of file +*.dx64fsl +*~ diff --git a/lisp-unit.lisp b/lisp-unit.lisp index fb74b4e..66a4213 100644 --- a/lisp-unit.lisp +++ b/lisp-unit.lisp @@ -3,22 +3,22 @@ #| Copyright (c) 2004-2005 Christopher K. Riesbeck -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -394,7 +394,7 @@ assertion.") (defmacro assert-expands (expansion form &rest extras) "Assert whether form expands to expansion." - `(expand-assert :macro ,form + `(expand-assert :macro ,form (expand-macro-form ,form nil) ',expansion ,extras)) -- 2.11.4.GIT