diff --git a/demos/02-demo.lisp b/demos/02-demo.lisp
index d693a67..cf3ad14 100644
--- a/demos/02-demo.lisp
+++ b/demos/02-demo.lisp
@@ -26,16 +26,16 @@
(name-entry (create-form-element start-form :input :label
(create-label start-form :content "Chat Handle:")))
(ok-button (create-button start-form :content "OK"))
- (p (create-p start-form))
+ (p1 (create-p start-form))
(chat-box (create-form form-box))
- (br (create-br chat-box))
+ (br1 (create-br chat-box))
(messages (create-div chat-box))
- (br (create-br chat-box))
+ (br2 (create-br chat-box))
(out-entry (create-form-element chat-box :input))
(out-ok (create-button chat-box :content "OK"))
- (p (create-p chat-box))
+ (p2 (create-p chat-box))
(user-name))
- (declare (ignore caption)(ignore br)(ignore p))
+ (declare (ignore p1 p2 caption br1 br2))
(setf (hiddenp chat-box) t)
(setf (background-color backdrop) :blue)
(setf (height backdrop) "100vh")
diff --git a/source/clog-auth.lisp b/source/clog-auth.lisp
index 192d2d3..c70b66e 100644
--- a/source/clog-auth.lisp
+++ b/source/clog-auth.lisp
@@ -74,6 +74,7 @@ for CLOG")
(defun set-on-authentication-change (body handler)
(check-type body clog-body)
(set-on-storage (window body) (lambda (obj data)
+ (declare (ignore obj))
(set-on-storage (window body) nil)
(when (equalp (getf data :key)
"clog-auth-token")
diff --git a/source/clog-connection.lisp b/source/clog-connection.lisp
index a41cb47..45edb61 100644
--- a/source/clog-connection.lisp
+++ b/source/clog-connection.lisp
@@ -649,6 +649,7 @@ the browser contents in case of connection loss."
;;;;;;;;;;;;;;;;;;;;;;;;
(defun compiled-boot-html (path content)
+ (declare (ignore path content))
"Returns a compiled version version of boot.html. The compiled boot.html
uses the jQuery CDN instead of the static js files."
"
diff --git a/source/clog-web-themes.lisp b/source/clog-web-themes.lisp
index 4efafb4..19bbd29 100644
--- a/source/clog-web-themes.lisp
+++ b/source/clog-web-themes.lisp
@@ -113,6 +113,7 @@ Page properties:
(new-comment (get-property properties :new-comment nil))
(save-edit (get-property properties :save-edit nil))
(do-delete (get-property properties :do-delete nil)))
+ (declare (ignore anchor))
(when new-comment
(labels ((start-add (obj)
(create-br obj)
diff --git a/test/test-clog.lisp b/test/test-clog.lisp
index 2e5f432..6ff45df 100644
--- a/test/test-clog.lisp
+++ b/test/test-clog.lisp
@@ -20,7 +20,7 @@
(when (draggablep tmp)
(setf (property tmp "innerHTML") "
I am draggable
"))
(setf tmp (create-child win "