diff options
-rw-r--r-- | lisp/klatre/klatre.lisp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/klatre/klatre.lisp b/lisp/klatre/klatre.lisp index 57ccde70e46b..0b986ac25125 100644 --- a/lisp/klatre/klatre.lisp +++ b/lisp/klatre/klatre.lisp @@ -1,7 +1,8 @@ (in-package #:klatre) (declaim (optimize (safety 3))) -(defmacro comment (&rest _)) +(defmacro comment (&rest _) + (declare (ignore _))) (defun posp (n) (> n 0)) @@ -104,7 +105,7 @@ separated by SEP." "Attempt to parse STR as an integer, returning nil if it is invalid." (check-type str string) (handler-case (parse-integer str) - (sb-int:simple-parse-error (_) nil))) + (sb-int:simple-parse-error (_) (declare (ignore _)) nil))) ;;; ;;; Function utilities |