Skip to content

Commit

Permalink
Produce less noise from canonicalize-whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
snuglas committed Jul 7, 2017
1 parent 77f1c7b commit 9eb07a2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools-for-build/canonicalize-whitespace.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

;;; Stream and single-file functions

(progn
(defun whitespace-p (character)
(member character '(#\Space #\Tab) :test #'char=))

Expand Down Expand Up @@ -82,7 +83,8 @@
(with-open-file (stream *stamp-file*
:direction :output
:if-exists :supersede)
(declare (ignorable stream))))
(declare (ignorable stream))
(values)))

;;; Repository-level functions

Expand All @@ -109,6 +111,7 @@
(files (remove-if #'skip-p (directory pattern))))
(mapc #'canonicalize-whitespace/file files))))
(write-stamp-file)))
) ; end PROGN

;;; Entry point

Expand Down

0 comments on commit 9eb07a2

Please sign in to comment.