We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Suppose you have the macro
(defmacro foo [x] `(list ~@(repeat 40 x)))
Using nrepl's macroexpand on (foo [1 2 3 4 5 6 7]) does what you'd expect.
(foo [1 2 3 4 5 6 7])
If you change foo's definition to repeat x 100 times, however, macroexpanding the above invocation puts this in the macroexpand buffer:
foo
5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7] [1 2 3 4 5 6 7])
It's been truncated from the front.
The text was updated successfully, but these errors were encountered:
oh, duplicate of #253, sorry.
Sorry, something went wrong.
No branches or pull requests
Suppose you have the macro
Using nrepl's macroexpand on
(foo [1 2 3 4 5 6 7])
does what you'd expect.If you change
foo
's definition to repeat x 100 times, however, macroexpanding the above invocation puts this in the macroexpand buffer:It's been truncated from the front.
The text was updated successfully, but these errors were encountered: