浏览代码

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