diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2009-10-07 23:28:49 +0200 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2009-10-07 23:28:49 +0200 |
commit | 9d4bc15de89204bfb787e1e922c38122dae041a7 (patch) | |
tree | a2f1322cc8edf539c5557bb1177339adf405dc49 | |
parent | 0c229ebd03ccc935feb9f59316a28f322d8209b8 (diff) |
Fix a mistake related to read-macros.
Ignore-this: 8054711e24061afeccf7465ea01127be
darcs-hash:291dcb790079defb43622fbd03ceea515dd7214d
-rw-r--r-- | main.lisp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -127,6 +127,7 @@ (defun dispatch-user-action () + #.(locally-enable-sql-reader-syntax) (case *action* (:post-comment (with-transaction () (let* ((entry (find-entry *post-number*)) @@ -189,7 +190,8 @@ (:view-atom-feed (show-atom-feed)) (:view-comment-feed (show-comment-feed)) (:view-debugging-page (show-debugging-page)) - (otherwise (show-web-journal)))) + (otherwise (show-web-journal))) + #.(restore-sql-reader-syntax-state)) #+clisp |