Redefine >> macro as >-> in >.el

I created a strangely named Elisp module, >.el, just to appease the CI gods. My
gut tells me that this is a desperate idea and fails the smell test. I'm pretty
eager to pass the linting phase of my Elisp CI, however, and I can always revert
this.
This commit is contained in:
William Carroll 2020-09-01 16:26:39 +01:00
parent 718899c629
commit 75a9a156a0
8 changed files with 53 additions and 26 deletions

View file

@ -29,6 +29,7 @@
(require 'prelude)
(require 'struct)
(require '>)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Library
@ -55,7 +56,7 @@ If X isn't in XS (using `equal'), insert it at the front."
(struct-update
cache
xs
(>> (list-reject (lambda (y) (equal x y)))
(>-> (list-reject (lambda (y) (equal x y)))
(list-cons x))
xs))