Skip to content
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

Unexpected interaction between infix forms and function calls #199

Open
shawwn opened this issue Sep 16, 2018 · 0 comments
Open

Unexpected interaction between infix forms and function calls #199

shawwn opened this issue Sep 16, 2018 · 0 comments

Comments

@shawwn
Copy link
Contributor

shawwn commented Sep 16, 2018

It turns out that

((not foo) x y z)

is identical to

(not (foo x y z))

E.g. ((not string?) 42) evaluates to true.

At first I was ready to call this a bug, but it’s a convenient way to negate the result of a function call, since you don’t have to wrap the entire arglist in an extra set of parens.

Still, I’m inclined to file this as a bug since it breaks the macro system. If you define foo as both a macro and a function, then (not (foo x y z)) will expand foo properly, whereas ((not foo) x y z) won’t.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant