miniblog

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

commit c6270e1a6f8219f621c124d2cfc6e7ff2a3db3d4
parent 92fcfa2bee5d20794fdb3af88750dc11661ffd5e
Author: Decay <decay@todayiwilllaunchmyinfantsonintoorbit.com>
Date:   Mon, 31 Oct 2022 21:08:05 -0700

Make -l work with pages

Bug caused -l -p not to work unless a start value was passed, this fixes
that.

Diffstat:
Msrc/miniblog.lisp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/miniblog.lisp b/src/miniblog.lisp @@ -486,7 +486,7 @@ (set-config-and-defaults) (make-generators)) -(defun miniblog (&key add get edit delete list start n page move uri children-to-root regen-all help) +(defun miniblog (&key add get edit delete list (start 0) n page move uri children-to-root regen-all help) (declare (ignore help)) (initialize) (apply #'miniblog.db:init *db-config*)