Remove numbered pkgs version
This commit is contained in:
parent
b2318b6ef0
commit
6defe997ae
28 changed files with 85 additions and 84 deletions
13
pkg/macros.el
Normal file
13
pkg/macros.el
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
;;; macros -- summary
|
||||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
(defmacro -> (&rest body)
|
||||
"Clojure -> macro for BODY."
|
||||
(let ((result (pop body)))
|
||||
(dolist (form body result)
|
||||
(setq result (append (list (car form) result)
|
||||
(cdr form))))))
|
||||
|
||||
(provide 'pkg/macros)
|
||||
;;; macros ends here
|
||||
Loading…
Add table
Add a link
Reference in a new issue