Skip to content

Instantly share code, notes, and snippets.

@yanateras
Created February 26, 2024 07:09
Show Gist options
  • Save yanateras/e1fd79afc56677c84fefaa8c46664216 to your computer and use it in GitHub Desktop.
Save yanateras/e1fd79afc56677c84fefaa8c46664216 to your computer and use it in GitHub Desktop.
Threading macro for Emacs Lisp
(defmacro -> (&rest forms)
(cl-reduce #'(lambda (xs x) (append x (list xs))) forms))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment