option for line numbers for report macro
#1
Closed
opened 10 years ago by AlexKnauth
·
2 comments
Loading…
Reference in New Issue
There is no content yet.
Delete Branch '%!s(<nil>)'
Deleting a branch is permanent. It CANNOT be undone. Continue?
I think something like this would be a nice option to have:
Or maybe this:
Or maybe something where drracket can show one of those octagons with 'x's in them like it shows if you do this in drracket: (if it's possible without messing it up for other stuff)
Interesting suggestion, though I have had difficulty getting keyword arguments to work smoothly in macros (perhaps it could just be
(report-with-line ...)
.Does
parameterize
work with macros? I thought it was strictly a way of manipulating the runtime namespace.For parameterize, it can expand to code that would do something different depending on the value of the parameter.
For keywords, it might be easier with syntax-parse and the seq-no-order pkg, or a
report-with-line
would be just as good.