Major_Biscuit has quit [Ping timeout: 240 seconds]
badkins has joined #racket
louis771 has joined #racket
tomaw has quit [Quit: Quitting]
tomaw has joined #racket
casaca has quit [Ping timeout: 272 seconds]
badkins has quit [Remote host closed the connection]
badkins has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
phillbush has joined #racket
badkins has quit [Ping timeout: 240 seconds]
badkins has joined #racket
endformationage has quit [Quit: WeeChat 2.9]
endformationage has joined #racket
endformationage has quit [Client Quit]
srandon111 has quit [Quit: leaving]
srandon111 has joined #racket
<bremner>
has anybody else noticed problems with the test coverage checker in racket-mode? I think it might be related to programming in 'plait'
m455 has joined #racket
badkins has quit [Remote host closed the connection]
badkins has joined #racket
endformationage has joined #racket
dbmikus has quit [Ping timeout: 240 seconds]
phillbush_ has joined #racket
phillbush has quit [Ping timeout: 264 seconds]
casaca has joined #racket
dbmikus has joined #racket
phillbush_ has quit [Quit: Leaving]
phillbush has joined #racket
louis771 has quit [Quit: My M1 has gone to sleep. ZZZzzz…]
louis771 has joined #racket
narimiran has quit [Ping timeout: 264 seconds]
louis771 has quit [Quit: My M1 has gone to sleep. ZZZzzz…]
nullcone has quit [Quit: Connection closed for inactivity]
rgherdt has quit [Remote host closed the connection]
rgherdt has joined #racket
dbmikus has quit [Ping timeout: 246 seconds]
louis771 has joined #racket
louis771 has quit [Client Quit]
louis771 has joined #racket
louis771 has quit [Client Quit]
louis771 has joined #racket
badkins has quit [Remote host closed the connection]
vraid has joined #racket
badkins has joined #racket
gracefu has joined #racket
<gracefu>
anyone know how you can rename (or add a new name for) a syntax transformer? in the sense that you can rename a to b with `(define b a)` but if i do `(define-syntax b a)` it tries to expand a, which is wrong
dbmikus has joined #racket
dbmikus has quit [Ping timeout: 256 seconds]
srandon111 has quit [Quit: leaving]
dbmikus has joined #racket
louis771 has quit [Quit: My M1 has gone to sleep. ZZZzzz…]
<jcowan>
(define-syntax b (syntax-rules () (b . _) (a . _)))
<jcowan>
should do it, but you have to leave a alone, not use it for something else because b is just an alias, not a true copy.