From 8ea45fdb238952fa92d57979d71db61de105f59e Mon Sep 17 00:00:00 2001 From: shoshin Date: Wed, 7 Dec 2022 21:46:38 -0600 Subject: Fix: format nil instead of t for stylesheet filename --- style.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'style.lisp') diff --git a/style.lisp b/style.lisp index f214980..dc1d695 100644 --- a/style.lisp +++ b/style.lisp @@ -5,4 +5,4 @@ (defvar css-version "2") (defun include-style (body) - (load-css (html-document body) (format t "/css/main-~a.css" css-version) :load-only-once nil)) + (load-css (html-document body) (format nil "/css/main-~a.css" css-version) :load-only-once nil)) -- cgit v1.2.3