-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] condp, if-not, when-not and not= #1
Conversation
Should we rename |
656635e
to
e975234
Compare
Prefer LFE idioms to Clojure, per discussion, i.e. remove the local fun*/2 and its invocations. Reindent the fletrec form manually. Related: - lfe-deprecated/clj#19 - lfe#137
- Rename clj-conditionals -> clj-macros. - Add src/clj.lfe which includes and re-exports the conditional macros. - Move comments into docstrings, since they're now supported.
There are some test errors, so I'm guessing you're still working on this? |
(`(,x . ()) 'false) | ||
(`(,x ,y . ,more) `(not (== ,x ,y ,@more)))) | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is good stuff, man -- I'm super-excited about it :-)
The |
The test failure is due to duplicate definitions between |
No worries on any count. My intent was to make sure I wasn't implicitly blocking a merge in the event you had been expecting one :-) |
Nope. I'll rename the PR then remove "[WIP]" when I think it's ready. |
Per lfe-deprecated/clj#15, lfe-deprecated/clj#10, lfe-deprecated/clj#11, lfe-deprecated/clj#12 and lfe-deprecated/clj#19.