diff options
author | Colin Okay <colin@cicadas.surf> | 2022-10-30 18:15:42 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-10-30 18:15:42 -0500 |
commit | 9416cf44e2e687566e16d76c763e6869a610b925 (patch) | |
tree | 020310eff908cce006663d967e7f8c9262809fdf /run.lisp | |
parent | aca3f9e03e5768cce31cbb560fa312a87ab7d49b (diff) |
Fix: run function
Diffstat (limited to 'run.lisp')
-rw-r--r-- | run.lisp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -12,4 +12,5 @@ (defun run-vampire () (let ((conf-file (get-option "--config"))) (start-vampire (config-from-file conf-file))) - (loop while *runningp* do (sleep 1))) + (loop + (sleep 1))) |