summaryrefslogtreecommitdiff
path: root/package.lisp
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2025-06-23 02:23:36 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2025-06-23 02:23:36 -0300
commit97f8b6d2a990fe2e93704460fcdf08701616d7e4 (patch)
treedec4638301655b0f6a7dea9ed8765a02f1eb94e2 /package.lisp
parentbb4b2bc484ed1d827d707a5a50b234d6994af90c (diff)
downloadutils-97f8b6d2a990fe2e93704460fcdf08701616d7e4.tar.gz
utils-97f8b6d2a990fe2e93704460fcdf08701616d7e4.zip
Update utilsHEADmain
Diffstat (limited to 'package.lisp')
-rw-r--r--package.lisp47
1 files changed, 11 insertions, 36 deletions
diff --git a/package.lisp b/package.lisp
index 5a1af97..d170039 100644
--- a/package.lisp
+++ b/package.lisp
@@ -4,18 +4,16 @@
(defpackage #:char
(:use #:cl)
- (:export #:whitespace?
- #:visible?))
+ (:export #:whitespace?))
-(defpackage #:alien
- (:use #:cl #:sb-alien)
- (:export #:call))
+(defpackage #:symbol
+ (:use #:cl)
+ (:export #:normalize))
(defpackage #:queue
- (:use #:cl)
(:export #:new
- #:add
- #:sub
+ #:push
+ #:pop
#:peek
#:to-list
#:from-list))
@@ -23,39 +21,16 @@
(defpackage #:str
(:use #:cl)
(:export #:split
- #:from-list
+ #:remove-prefix
#:underscore->hyphen
#:pascal->kebab
#:upcase->pascal
- #:read-file))
+ #:read-file
+ #:line-and-column
+ #:context-window))
(defpackage #:small-cl
- (:import-from #:cl
- #:block
- #:catch
- #:eval-when
- #:flet
- #:function
- #:go
- #:if
- #:labels
- #:let
- #:let*
- #:load-time-value
- #:locally
- #:macrolet
- #:multiple-value-call
- #:multiple-value-prog1
- #:progn
- #:progv
- #:quote
- #:return-from
- #:setq
- #:symbol-macrolet
- #:tagbody
- #:the
- #:throw
- #:unwind-protect)
+ (:use #:cl)
(:export #:block
#:catch
#:eval-when