[lice @ some bug fixes, a makefile, autoconf support]
[lice.git] / load.lisp
blob616b885a3f129a42c8ea1901a07029e46389adf3
1 (defpackage :lice
2 (:use :cl))
4 #+sbcl (require :sb-posix)
6 (require 'cl-ncurses)
7 (require 'cl-ppcre)
9 (labels ((cnl (file)
10 (load (compile-file file))))
11 (cnl "wrappers")
12 (cnl "global")
13 (cnl "custom")
14 (cnl "commands")
15 (cnl "keymap")
16 (cnl "major-mode")
17 (cnl "buffer")
18 (cnl "subr")
19 (cnl "files")
20 (cnl "intervals")
21 (cnl "textprop")
22 (cnl "editfns")
23 (cnl "window")
24 (cnl "frame")
25 (cnl "tty-render")
26 (cnl "syntax")
27 (cnl "debugger")
28 (cnl "recursive-edit")
29 (cnl "wm")
30 (cnl "minibuffer")
31 (cnl "simple")
32 (cnl "undo")
33 (cnl "indent")
34 (cnl "lisp-mode")
35 (cnl "search")
36 (cnl "help")
37 (cnl "debug")
38 (cnl "subprocesses")
39 (cnl "lisp-indent")
40 (cnl "input")
41 (cnl "main")
43 (cnl "casefiddle")
44 (cnl "paragraphs")
46 (cnl "text-mode")
47 (cnl "doctor")