Skip to content

Commit 006f315

Browse files
committed
Quicklisp loads project!
1 parent 74a9851 commit 006f315

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main.lisp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
(with-standard-io-syntax
2727
(read in))))
2828

29-
(defparameter lang (read-lang-lisp "/home/davd/clisp/be-it/src/lang.en.lisp"))
29+
(defparameter *lang* (read-lang-lisp "/home/davd/clisp/be-it/src/lang.en.lisp"))
3030

3131
(defun lang-get (key)
3232
"Get the translation for the given key."
33-
(getf lang key))
33+
(getf *lang* key))
3434

3535
;; DEFINE WEB PAGE COMPONENTS
3636

@@ -48,7 +48,7 @@
4848

4949
(defmacro with-page ((&key title) &body body)
5050
`(spinneret:with-html
51-
(:doctype)
51+
(:doctype)
5252
(:html
5353
(:head
5454
(:link :href "./resources/css/cv.css" :rel "stylesheet" :type "text/css")

0 commit comments

Comments
 (0)