aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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))