diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-14 16:34:15 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-14 16:34:15 +0000 |
commit | f8a834c0d24b1c57f14e9f86ec827aad73e4473e (patch) | |
tree | d0a7084400269e42abb9beef2a1a7ed94c22ddbf /packages.lisp | |
parent | 02ff1a3fb3f687160b3164680fd655da56c0eae9 (diff) | |
download | cantedraw-f8a834c0d24b1c57f14e9f86ec827aad73e4473e.tar.gz cantedraw-f8a834c0d24b1c57f14e9f86ec827aad73e4473e.tar.bz2 cantedraw-f8a834c0d24b1c57f14e9f86ec827aad73e4473e.zip |
Rewrote --> to take a placeholder symbol as first argument
Instead of exporting cantedraw.lib.macro._ and making anyone who wants
to use the --> macro _require_ importing that specific symbol, let's
just make it so the user has to supply a placeholder name before they
do anything. This means each package provides its own placeholder
symbol which lowers coupling.
Diffstat (limited to 'packages.lisp')
-rw-r--r-- | packages.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages.lisp b/packages.lisp index 24de212..56d3727 100644 --- a/packages.lisp +++ b/packages.lisp @@ -20,7 +20,7 @@ (defpackage cantedraw.lib.macros (:use :cl) (:export - :_ :--> :->> + :--> :->> :-> :fn :while :alist-val :$)) |