From 47e2e5e3bdf764919bb7f513a0ec710ae9d4b3f0 Mon Sep 17 00:00:00 2001 From: Lucian Mogosanu Date: Tue, 2 Jul 2019 16:57:09 +0300 Subject: [PATCH] config.lisp: Use standard Lisp-style comments --- config.lisp.example | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config.lisp.example b/config.lisp.example index 7b70ffa..1daf509 100644 --- a/config.lisp.example +++ b/config.lisp.example @@ -1,12 +1,12 @@ -;; Tarpit Lisp Blog Scaffolding -;; -;; A static blog generator, config file +;;;; Tarpit Lisp Blog Scaffolding +;;;; +;;;; A static blog generator, config file -; The site installation's base directory +;; The site installation's base directory (defvar *lbs-base* "/home/thetarpit/") -; A list of paths where we look for Lisp dependencies, e.g. libraries +;; A list of paths where we look for Lisp dependencies, e.g. libraries (defvar *lbs-path* nil) -; Path to the directory where the static site will be spat +;; Path to the directory where the static site will be spat (defvar *lbs-site* (concatenate 'string *lbs-base* "_site/")) -- 1.7.10.4