├── .gitignore ├── BUGS ├── COPYING ├── HACKING ├── HOWTO ├── INSTALL ├── Makefile ├── README ├── README.md ├── contrib ├── closette │ ├── README │ ├── closette-tests.lisp │ └── closette.lisp ├── gabriel │ ├── CHANGES │ ├── README │ ├── benchmark.lisp │ ├── boyer.lisp │ ├── browse.lisp │ ├── control.lisp │ ├── ctak.lisp │ ├── dderiv.lisp │ ├── deriv.lisp │ ├── destru-mod.lisp │ ├── destru.lisp │ ├── div2.lisp │ ├── fft-mod.lisp │ ├── fft.lisp │ ├── fprint.lisp │ ├── fread.lisp │ ├── frpoly-mod.lisp │ ├── frpoly.lisp │ ├── integer.lisp │ ├── make-declare.lsp │ ├── puzzle-mod-noproclaim.lisp │ ├── puzzle-mod.lisp │ ├── puzzle-mod1.lisp │ ├── puzzle-mod2.lisp │ ├── puzzle-noproclaim.lisp │ ├── puzzle-sda.lisp │ ├── puzzle.lisp │ ├── stak.lisp │ ├── tak-mod.lisp │ ├── tak.lisp │ ├── takl.lisp │ ├── takr.lisp │ ├── tprint.lisp │ ├── traverse.lisp │ ├── triang-mod.lisp │ ├── triang-old-mod.lisp │ └── triang.lisp └── iclm.el ├── emacs-cl-pkg.el └── src ├── Makefile ├── batch.el ├── cl-arrays.el ├── cl-characters.el ├── cl-compile.el ├── cl-conditions.el ├── cl-conses.el ├── cl-environment.el ├── cl-eval.el ├── cl-evaluation.el ├── cl-filenames.el ├── cl-files.el ├── cl-flow.el ├── cl-format.el ├── cl-hash.el ├── cl-iteration.el ├── cl-loop.el ├── cl-numbers.el ├── cl-objects.el ├── cl-packages.el ├── cl-printer.el ├── cl-reader.el ├── cl-sequences.el ├── cl-streams.el ├── cl-strings.el ├── cl-structures.el ├── cl-subtypep.el ├── cl-symbols.el ├── cl-system.el ├── cl-typep.el ├── cl-types.el ├── emacs-cl ├── func.el ├── interaction.el ├── load-cl.el ├── populate.el ├── tests.el ├── tests.lisp └── utils.el /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.elc 3 | emacs-cl-* 4 | -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/BUGS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/COPYING -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/HACKING -------------------------------------------------------------------------------- /HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/HOWTO -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/README.md -------------------------------------------------------------------------------- /contrib/closette/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/closette/README -------------------------------------------------------------------------------- /contrib/closette/closette-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/closette/closette-tests.lisp -------------------------------------------------------------------------------- /contrib/closette/closette.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/closette/closette.lisp -------------------------------------------------------------------------------- /contrib/gabriel/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/CHANGES -------------------------------------------------------------------------------- /contrib/gabriel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/README -------------------------------------------------------------------------------- /contrib/gabriel/benchmark.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/benchmark.lisp -------------------------------------------------------------------------------- /contrib/gabriel/boyer.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/boyer.lisp -------------------------------------------------------------------------------- /contrib/gabriel/browse.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/browse.lisp -------------------------------------------------------------------------------- /contrib/gabriel/control.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/control.lisp -------------------------------------------------------------------------------- /contrib/gabriel/ctak.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/ctak.lisp -------------------------------------------------------------------------------- /contrib/gabriel/dderiv.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/dderiv.lisp -------------------------------------------------------------------------------- /contrib/gabriel/deriv.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/deriv.lisp -------------------------------------------------------------------------------- /contrib/gabriel/destru-mod.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/destru-mod.lisp -------------------------------------------------------------------------------- /contrib/gabriel/destru.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/destru.lisp -------------------------------------------------------------------------------- /contrib/gabriel/div2.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/div2.lisp -------------------------------------------------------------------------------- /contrib/gabriel/fft-mod.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/fft-mod.lisp -------------------------------------------------------------------------------- /contrib/gabriel/fft.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/fft.lisp -------------------------------------------------------------------------------- /contrib/gabriel/fprint.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/fprint.lisp -------------------------------------------------------------------------------- /contrib/gabriel/fread.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/fread.lisp -------------------------------------------------------------------------------- /contrib/gabriel/frpoly-mod.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/frpoly-mod.lisp -------------------------------------------------------------------------------- /contrib/gabriel/frpoly.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/frpoly.lisp -------------------------------------------------------------------------------- /contrib/gabriel/integer.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/integer.lisp -------------------------------------------------------------------------------- /contrib/gabriel/make-declare.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/make-declare.lsp -------------------------------------------------------------------------------- /contrib/gabriel/puzzle-mod-noproclaim.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/puzzle-mod-noproclaim.lisp -------------------------------------------------------------------------------- /contrib/gabriel/puzzle-mod.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/puzzle-mod.lisp -------------------------------------------------------------------------------- /contrib/gabriel/puzzle-mod1.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/puzzle-mod1.lisp -------------------------------------------------------------------------------- /contrib/gabriel/puzzle-mod2.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/puzzle-mod2.lisp -------------------------------------------------------------------------------- /contrib/gabriel/puzzle-noproclaim.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/puzzle-noproclaim.lisp -------------------------------------------------------------------------------- /contrib/gabriel/puzzle-sda.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/puzzle-sda.lisp -------------------------------------------------------------------------------- /contrib/gabriel/puzzle.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/puzzle.lisp -------------------------------------------------------------------------------- /contrib/gabriel/stak.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/stak.lisp -------------------------------------------------------------------------------- /contrib/gabriel/tak-mod.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/tak-mod.lisp -------------------------------------------------------------------------------- /contrib/gabriel/tak.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/tak.lisp -------------------------------------------------------------------------------- /contrib/gabriel/takl.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/takl.lisp -------------------------------------------------------------------------------- /contrib/gabriel/takr.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/takr.lisp -------------------------------------------------------------------------------- /contrib/gabriel/tprint.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/tprint.lisp -------------------------------------------------------------------------------- /contrib/gabriel/traverse.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/traverse.lisp -------------------------------------------------------------------------------- /contrib/gabriel/triang-mod.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/triang-mod.lisp -------------------------------------------------------------------------------- /contrib/gabriel/triang-old-mod.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/triang-old-mod.lisp -------------------------------------------------------------------------------- /contrib/gabriel/triang.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/gabriel/triang.lisp -------------------------------------------------------------------------------- /contrib/iclm.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/contrib/iclm.el -------------------------------------------------------------------------------- /emacs-cl-pkg.el: -------------------------------------------------------------------------------- 1 | (define-package "emacs-cl" "VERSION" 2 | "Emacs Common Lisp") 3 | -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/batch.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/batch.el -------------------------------------------------------------------------------- /src/cl-arrays.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-arrays.el -------------------------------------------------------------------------------- /src/cl-characters.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-characters.el -------------------------------------------------------------------------------- /src/cl-compile.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-compile.el -------------------------------------------------------------------------------- /src/cl-conditions.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-conditions.el -------------------------------------------------------------------------------- /src/cl-conses.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-conses.el -------------------------------------------------------------------------------- /src/cl-environment.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-environment.el -------------------------------------------------------------------------------- /src/cl-eval.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-eval.el -------------------------------------------------------------------------------- /src/cl-evaluation.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-evaluation.el -------------------------------------------------------------------------------- /src/cl-filenames.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-filenames.el -------------------------------------------------------------------------------- /src/cl-files.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-files.el -------------------------------------------------------------------------------- /src/cl-flow.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-flow.el -------------------------------------------------------------------------------- /src/cl-format.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-format.el -------------------------------------------------------------------------------- /src/cl-hash.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-hash.el -------------------------------------------------------------------------------- /src/cl-iteration.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-iteration.el -------------------------------------------------------------------------------- /src/cl-loop.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-loop.el -------------------------------------------------------------------------------- /src/cl-numbers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-numbers.el -------------------------------------------------------------------------------- /src/cl-objects.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-objects.el -------------------------------------------------------------------------------- /src/cl-packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-packages.el -------------------------------------------------------------------------------- /src/cl-printer.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-printer.el -------------------------------------------------------------------------------- /src/cl-reader.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-reader.el -------------------------------------------------------------------------------- /src/cl-sequences.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-sequences.el -------------------------------------------------------------------------------- /src/cl-streams.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-streams.el -------------------------------------------------------------------------------- /src/cl-strings.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-strings.el -------------------------------------------------------------------------------- /src/cl-structures.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-structures.el -------------------------------------------------------------------------------- /src/cl-subtypep.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-subtypep.el -------------------------------------------------------------------------------- /src/cl-symbols.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-symbols.el -------------------------------------------------------------------------------- /src/cl-system.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-system.el -------------------------------------------------------------------------------- /src/cl-typep.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-typep.el -------------------------------------------------------------------------------- /src/cl-types.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/cl-types.el -------------------------------------------------------------------------------- /src/emacs-cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/emacs-cl -------------------------------------------------------------------------------- /src/func.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/func.el -------------------------------------------------------------------------------- /src/interaction.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/interaction.el -------------------------------------------------------------------------------- /src/load-cl.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/load-cl.el -------------------------------------------------------------------------------- /src/populate.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/populate.el -------------------------------------------------------------------------------- /src/tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/tests.el -------------------------------------------------------------------------------- /src/tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/tests.lisp -------------------------------------------------------------------------------- /src/utils.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsbrinkhoff/emacs-cl/HEAD/src/utils.el --------------------------------------------------------------------------------