diff options
author | sterni <sternenseemann@systemli.org> | 2023-05-03T14·43+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-05-09T16·44+0000 |
commit | a4b8f14332971c4d9061264a45856076186f181d (patch) | |
tree | 93cf5cf760118f2bcafe94920a58543951cc5bb1 /third_party | |
parent | 891b639db557bf52fd17aca441d2c32de1f4f713 (diff) |
fix(3p/lisp/mime4cl): use OTHERWISE in CASE not T r/6128
Change-Id: Ia674705b27fbc4ae3055973eec563b078a4a873c Reviewed-on: https://cl.tvl.fyi/c/depot/+/8558 Reviewed-by: sterni <sternenseemann@systemli.org> Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/lisp/mime4cl/mime.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/lisp/mime4cl/mime.lisp b/third_party/lisp/mime4cl/mime.lisp index dbf5a25fa4fb..b240b02f717c 100644 --- a/third_party/lisp/mime4cl/mime.lisp +++ b/third_party/lisp/mime4cl/mime.lisp @@ -793,7 +793,7 @@ returns a MIME-MESSAGE object." 'base64-encoder-input-stream) (:quoted-printable 'quoted-printable-encoder-input-stream) - (t + (otherwise '8bit-encoder-input-stream)) :underlying-stream (make-instance 'binary-input-adapter-stream :source body)))) |