ChangeLog: add some numbered bugs I fixed
[maxima.git] / share / sym / load-sym-lisp-files.lisp
blob033f464090eff48429404b064afd32cac121a214
1 ;; Load all Lisp files within WITH-COMPILATION-UNIT macro.
2 ;; This quiets the undefined function warnings from SBCL
3 ;; which are otherwise very voluminous (and this construct
4 ;; is accepted by other CL implementations).
6 #+gcl (unless (macro-function 'with-compilation-unit)
7 (defmacro with-compilation-unit (a &rest b) `(progn ,@b)))
9 (with-compilation-unit nil
10 ($load "macros")
11 ($load "operations")
12 ($load "chbase")
13 ($load "util")
14 ($load "lecteur")
15 ($load "ecrivain")
16 ($operation)
17 ($load "arite")
18 ($load "elem")
19 ($load "pui")
20 ($load "schur")
21 ($load "direct")
22 ($load "kak")
23 ($load "partpol")
24 ($load "multmon")
25 ($load "permut")
26 ($load "treillis")
27 ($load "resolv1")
28 ($load "resolvante")
29 ($load "resolcayley"))