codereport / jsource

J Language Source Code. Livestream links ⬇️
https://www.youtube.com/playlist?list=PLVFrD1dmDdvfVhYLU_iKkV67X9XqCJLWe
Other
38 stars 20 forks source link

Remove `R return` macro #41

Closed codereport closed 3 years ago

codereport commented 3 years ago

In j.h on line 888, there is a macro defined for return:

#define R               return

This should be removed and all instances of R replaced with return.

Note: there are ~4000 references to this, so some regex expression like [^a-zA-Z]R will need to be used to find and replace

juntuu commented 3 years ago

I actually had this already done locally. I'll double check it and add a PR.

codereport commented 3 years ago

I actually had this already done locally. I'll double check it and add a PR.

Awesome! Looking forward to seeing the PR