The name of the repository is “cl-el”; the name of the system is “el”.
Usage examples:
Try to compile and load an Elisp file:
(el-loader:simple-compile-core-library :thunk)
(el-loader:simple-load-core-library :thunk)
;; An example from thunk.el
(let (all)
(let* (var
(delayed (el::thunk-delay (setq var t))))
(push var all)
(push :before-force all)
(el::thunk-force delayed)
(push var all)
(push :after-force all))
all)
;; => (:AFTER-FORCE T :BEFORE-FORCE NIL)
Run some Elisp code:
(el::with-temp-buffer
(el::insert "We'll start the meetup tomorrow")
(el::goto-char (el::point-min))
(el::search-forward "meetup"))
;; => 23
License: GPL
Topics: elisp