소스 검색

Fix style-warnings for static-pages plugin.

Brit Butler 11 년 전
부모
커밋
975be4236e
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      plugins/static-pages.lisp

+ 1 - 0
plugins/static-pages.lisp

@@ -25,6 +25,7 @@
25 25
 
26 26
 (defmethod render ((object page) &key next prev)
27 27
   ;; For the time being, we'll re-use the normal post theme.
28
+  (declare (ignore next prev))
28 29
   (funcall (theme-fn 'post) (list :config *config*
29 30
                                   :post object)))
30 31