diff options
author | colin <colin@cicadas.surf> | 2024-12-14 12:29:29 -0800 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2024-12-14 12:29:29 -0800 |
commit | 543704f0f54cbb1de78754ad8a323c482ab6829c (patch) | |
tree | 7528c0105516a2a2800e432de9f4f1a6c3fe506e /src/pre-exit-hooks.lisp | |
parent | 3a2217263d581be9a7f629b10d75aa8e3d581890 (diff) |
Diffstat (limited to 'src/pre-exit-hooks.lisp')
-rw-r--r-- | src/pre-exit-hooks.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pre-exit-hooks.lisp b/src/pre-exit-hooks.lisp index 42e4195..1f14d97 100644 --- a/src/pre-exit-hooks.lisp +++ b/src/pre-exit-hooks.lisp @@ -12,5 +12,5 @@ thunk)) (defun pre-exit-hooks () - (loop for thunk being the hash-value of *pre-exit-hooks* - do (funcall thunk))) + (loop :for thunk :being :the :hash-value :of *pre-exit-hooks* :do + (funcall thunk))) |