summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xjournal.lisp4
1 files changed, 3 insertions, 1 deletions
diff --git a/journal.lisp b/journal.lisp
index face2a2..ed2dd87 100755
--- a/journal.lisp
+++ b/journal.lisp
@@ -763,6 +763,7 @@
(<:pre (<:as-html (prin1-to-string y))))))))
(defun show-site-map ()
+ #.(locally-enable-sql-reader-syntax)
(with-xml-output (*standard-output* :encoding "utf-8")
(with-tag ("sitemap" '(("xmlns" "http://www.sitemaps.org/schemas/sitemap/0.9")))
(with-tag ("url")
@@ -776,7 +777,8 @@
:flatp t))
(with-tag ("url")
(emit-simple-tags :loc (link-to :view :post-id id)
- :priority "0.7"))))))
+ :priority "0.7")))))
+ #.(restore-sql-reader-syntax-state))
(defun update-journal ()
(format t "~&Updating index page...")