forked from zhef/cl-eshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.el
27 lines (27 loc) · 866 Bytes
/
start.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
(mapc #'(lambda (file)
(find-file file)
(slime-compile-region 1 (length (buffer-string)))
(read-char)
(kill-buffer (current-buffer))
)
'(
"~/cl-eshop/start.lisp"
"~/cl-eshop/eshop-config.lisp"
"~/cl-eshop/errors.lisp"
"~/cl-eshop/spike.lisp"
"~/cl-eshop/classes.lisp"
"~/cl-eshop/serializers.lisp"
"~/cl-eshop/servo.lisp"
"~/cl-eshop/trans.lisp"
"~/cl-eshop/routes.lisp"
"~/cl-eshop/render.lisp"
"~/cl-eshop/cart.lisp"
"~/cl-eshop/generics.lisp"
"~/cl-eshop/gateway.lisp"
"~/cl-eshop/search.lisp"
"~/cl-eshop/xls.lisp"
"~/cl-eshop/yml.lisp"
"~/cl-eshop/newcart.lisp"
"~/cl-eshop/main-page.lisp"
"~/cl-eshop/sitemap.lisp"
))