Quellcode durchsuchen

Fix thinko in write-document.

Brit Butler vor 11 Jahren
Ursprung
Commit
5f75afde21
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      src/documents.lisp

+ 1 - 1
src/documents.lisp

@@ -53,7 +53,7 @@ use it as the template passing any RENDER-ARGS."
53 53
   (let ((html (if (or theme-fn render-args)
54 54
                   (apply #'render-page document theme-fn render-args)
55 55
                   (render-page document nil))))
56
-    (write-file (page-path obj) html)))
56
+    (write-file (page-path document) html)))
57 57
 
58 58
 (defun find-all (doc-type)
59 59
   "Return a list of all instances of a given DOC-TYPE."