diff options
Diffstat (limited to 'util.lisp')
-rw-r--r-- | util.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,5 +10,5 @@ (defun max-length (lists) (reduce (lambda (a x) (max a x)) (mapcar #'length lists))) -(defun empty-p (s) +(defun nonempty-p (s) (not (zerop (length s)))) |