-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Substantial reengineering, some incompatible
defpackage is now a shim for define-package. define-package is extensible. The system is now in multiple files, finally.
- Loading branch information
Showing
8 changed files
with
705 additions
and
294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.0.0 | ||
4.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
;;;; Define the CL/CONDUITS package and a user package. | ||
;;; | ||
;;; There used to be elaborate EVAL-WHEN hair here when this was all | ||
;;; in one file. No more! | ||
;;; | ||
|
||
(in-package :org.tfeb.conduit-packages) | ||
|
||
(define-package :org.tfeb.cl/conduits | ||
;; This is CL but with conduits. It doesn't include any of the | ||
;; fancy stuff | ||
(:use) | ||
(:nicknames :org.tfeb.clc) | ||
(:extends/excluding :cl | ||
#:export #:unexport #:defpackage | ||
#:delete-package #:rename-package) | ||
(:extends/including :org.tfeb.conduit-packages | ||
#:export #:unexport #:defpackage | ||
#:delete-package #:rename-package)) | ||
|
||
(define-package :org.tfeb.cl-user/conduits | ||
;; CL-USER but with conduits | ||
(:nicknames :org.tfeb.clc-user) | ||
(:use :org.tfeb.clc)) | ||
|
||
(provide :org.tfeb.conduit-packages) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.