summaryrefslogtreecommitdiff
path: root/str.lisp
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2022-11-04 00:42:08 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2022-11-04 00:43:40 -0300
commit5b47a21cf818608883c875d0819bb40099d8e4f8 (patch)
tree14fae73e30b8b7f92411b00d5946e776d7721a3c /str.lisp
parenta0bcb57cbcfbfa8070ee617056983b03e8e64c29 (diff)
downloadutils-5b47a21cf818608883c875d0819bb40099d8e4f8.tar.gz
utils-5b47a21cf818608883c875d0819bb40099d8e4f8.zip
Fix bugged type decl
Diffstat (limited to 'str.lisp')
-rw-r--r--str.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/str.lisp b/str.lisp
index cbd6fe3..a8b2a7f 100644
--- a/str.lisp
+++ b/str.lisp
@@ -20,7 +20,7 @@
(queue:add result (subseq input start next)))))
(queue:to-list (split-rec (queue:new) 0)))
-(declaim (ftype (function ((cons char)) (values simple-string) &optional)) from-list)
+(declaim (ftype (function ((cons character)) (values simple-string &optional)) from-list))
(defun from-list (lst)
(let ((str (make-string (length lst)))
(i 0))