miniblog

Miniblog: A command-line static blog system in Common Lisp
Log | Files | Refs | README | LICENSE

commit d527301792b800f931f7b68ee977057afc72db6a
parent 60571d5b0bc28ce8411330577f80933e236476af
Author: Decay <decaydjk@tilde.town>
Date:   Sun,  9 Feb 2020 01:13:46 +0000

Fixing a miss in the previous commit

Diffstat:
Msrc/content.lisp | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/content.lisp b/src/content.lisp @@ -83,10 +83,10 @@ (content '())) (loop for year-month in archive-date-list do (let ((month-content - (gen-month rest-entries (car year-month) (cdr year-month) - :archive-date-list archive-date-list - :generator generator - :tz tz))) + (gen-month-impl rest-entries archive-date-list + (car year-month) (cdr year-month) + :generator generator + :tz tz))) (setf rest-entries (cdr month-content)) (setf content (nconc content (list (car month-content))))))