aboutsummaryrefslogtreecommitdiff
path: root/src/util.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-03-09 16:10:44 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-03-09 16:11:34 -0700
commitac4a7c1246464844ba75f62ce72509c283cd6dc1 (patch)
treedede1456509374c387befaa6762d41fc92b7ccfd /src/util.lisp
parent3a037315b8cb60d8c6da94ba6db7123292592fa1 (diff)
downloadconsfigurator-ac4a7c1246464844ba75f62ce72509c283cd6dc1.tar.gz
replace usages of NOOP & drop the function
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/util.lisp')
-rw-r--r--src/util.lisp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/util.lisp b/src/util.lisp
index f0ca5cb..887ebd1 100644
--- a/src/util.lisp
+++ b/src/util.lisp
@@ -35,11 +35,6 @@
(loop for result in new-results and i upfrom 0
do (nconcf (aref results i) result)))))
-(defun noop (&rest args)
- "Accept any arguments and do nothing."
- (declare (ignore args))
- (values))
-
(defun lines (text &optional trimfun (trimchars '(#\Space #\Tab)))
(with-input-from-string (stream text)
(let (bolp buffer)