summaryrefslogtreecommitdiff
path: root/lisp/queue/queue.lisp
diff options
context:
space:
mode:
authorckonstanski <carlos.konstanski@olo.com>2026-01-08 08:06:55 -0700
committerckonstanski <carlos.konstanski@olo.com>2026-01-08 08:06:55 -0700
commitcf23b9594b3902181861f4ffa08f06fad758d5c0 (patch)
tree38b93ffd7ce2c91711a7c246d6bfce64cbdb8439 /lisp/queue/queue.lisp
parent9ad155313346f4e79d2490b4abc286c5ac9e20f8 (diff)
cleaning up unused variables
Diffstat (limited to 'lisp/queue/queue.lisp')
-rw-r--r--lisp/queue/queue.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/queue/queue.lisp b/lisp/queue/queue.lisp
index ecd517f..47b9e65 100644
--- a/lisp/queue/queue.lisp
+++ b/lisp/queue/queue.lisp
@@ -12,7 +12,7 @@
(defvar *queue-mutex* (sb-thread:make-mutex))
(defmacro with-error-handled-thread ((thread-name level) &body body)
- "`level' is either :warning or :critical."
+ (declare (ignore level))
(let ((thread-fn (intern (string-upcase thread-name) *package*)))
`(progn
(defun ,thread-fn ()