summaryrefslogtreecommitdiff
path: root/util.lisp
diff options
context:
space:
mode:
authorLogan Hunt <loganhunt@simponic.xyz>2022-05-31 23:23:58 -0700
committerLogan Hunt <loganhunt@simponic.xyz>2022-05-31 23:23:58 -0700
commita76bfbf944d8ac89b7581ed378f4782084aa404a (patch)
tree8bc2267a73c9e2c0c7d35cca304dcf406b376851 /util.lisp
parent10d7a20a79f8e7746d965cfadf1757b3e3799858 (diff)
downloadlispruns-a76bfbf944d8ac89b7581ed378f4782084aa404a.tar.gz
lispruns-a76bfbf944d8ac89b7581ed378f4782084aa404a.zip
User can create new category on the CLI
Diffstat (limited to 'util.lisp')
-rw-r--r--util.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.lisp b/util.lisp
index 3369a03..fe2cb69 100644
--- a/util.lisp
+++ b/util.lisp
@@ -10,5 +10,5 @@
(defun max-length (lists)
(reduce (lambda (a x) (max a x)) (mapcar #'length lists)))
-(defun not-empty-string (str)
- (not (zerop (length str))))
+(defun empty-p (s)
+ (not (zerop (length s))))