diff options
author | sterni <sternenseemann@systemli.org> | 2023-05-16T14·22+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-05-18T16·16+0000 |
commit | a06e30e73b89c6fe92cf55d00c03d7ef6aaa6f5c (patch) | |
tree | 7a6c57b2d22cc6a32ff9822a6d8e95ac80833c9e /third_party/lisp/mime4cl/package.lisp | |
parent | 734cec2e3bb24799869462e57853f99b8d89b294 (diff) |
refactor(sterni/mblog): move REDIRECT-STREAM into mime4cl r/6154
Eventually, we'll want to replace dump-stream-binary with something more efficient—given that we have flexi-streams we can use something that only does matching element types no problem. REDIRECT-STREAM is much more efficient thanks to using an internal buffer. streams.lisp gets a new section at the beginning for grouping utilities that don't have any real (internal) dependencies. Change-Id: I141cd36440d532131f389be2768fdaa54e7c7218 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8583 Reviewed-by: sterni <sternenseemann@systemli.org> Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
Diffstat (limited to 'third_party/lisp/mime4cl/package.lisp')
-rw-r--r-- | third_party/lisp/mime4cl/package.lisp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/third_party/lisp/mime4cl/package.lisp b/third_party/lisp/mime4cl/package.lisp index e9ff14510d2b..1ab598eeb8e1 100644 --- a/third_party/lisp/mime4cl/package.lisp +++ b/third_party/lisp/mime4cl/package.lisp @@ -99,4 +99,7 @@ ;; address.lisp #:parse-addresses #:mailboxes-only #:mailbox #:mbx-description #:mbx-user #:mbx-host #:mbx-domain #:mbx-domain-name #:mbx-address - #:mailbox-group #:mbxg-name #:mbxg-mailboxes)) + #:mailbox-group #:mbxg-name #:mbxg-mailboxes + ;; streams.lisp + #:redirect-stream + )) |