refactor(3p/lisp/mime4cl): remove be and be*
Seems simple enough to use standard LET and a few parentheses more which stock emacs can indent probably. Change-Id: I0137a532186194f62f3a36f9bf05630af1afcdae Reviewed-on: https://cl.tvl.fyi/c/depot/+/8584 Reviewed-by: sterni <sternenseemann@systemli.org> Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
This commit is contained in:
parent
a06e30e73b
commit
02684f3ac6
6 changed files with 94 additions and 117 deletions
2
third_party/lisp/mime4cl/test/temp-file.lisp
vendored
2
third_party/lisp/mime4cl/test/temp-file.lisp
vendored
|
@ -63,7 +63,7 @@ file, otherwise *TMP-FILE-DEFAULTS* is used."
|
|||
"Execute BODY within a dynamic extent where STREAM is bound to
|
||||
a STREAM open on a unique temporary file name. OPEN-TEMP-ARGS are
|
||||
passed verbatim to OPEN-TEMP-FILE."
|
||||
`(be ,stream (open-temp-file ,@open-temp-args)
|
||||
`(let ((,stream (open-temp-file ,@open-temp-args)))
|
||||
(unwind-protect
|
||||
(progn ,@body)
|
||||
(close ,stream)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue