aboutsummaryrefslogtreecommitdiff
path: root/src/util.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-06-03 12:55:27 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-06-03 13:18:22 -0700
commit8e0b19cb751c3d9976d0a6414cffe9c733652f73 (patch)
tree400c2f4fd5a4c0dd8ebe486aa6a1bb11491149de /src/util.lisp
parent73123bca4266051f6d6819670498ec6baa37699d (diff)
downloadconsfigurator-8e0b19cb751c3d9976d0a6414cffe9c733652f73.tar.gz
WORDS: use DELETE
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/util.lisp')
-rw-r--r--src/util.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.lisp b/src/util.lisp
index 3675698..d1bfcab 100644
--- a/src/util.lisp
+++ b/src/util.lisp
@@ -47,7 +47,7 @@
(format nil "~{~A~%~}" lines))
(defun words (text)
- (remove "" (split-string text) :test #'string=))
+ (delete "" (split-string text) :test #'string=))
(defun unwords (words)
(format nil "~{~A~^ ~}" words))