You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'll have to think about this a bit. Your proposal seems fine (except for printing the message - I'd rather us simply not do anything then), but I wonder if this can be handled in a better manner - e.g. in batches or something.
When trying to cider-font-lock-as a very large string it is possible to get stack overflow like
This appears to tickle some limitations of large regexps:
Unsurprisingly the culprit is, again, Hacker News...
from https://github.com/swannodette/enlive-tutorial#your-first-scrape-with-enlive--hacker-news
loading
src/tutorial/scrape1.clj
in cider and running this will provoke the bug:I have no idea what the "magic number" is for the biggest string that the regexp
can handle, but 32k seems to work... I propose this patch:
The text was updated successfully, but these errors were encountered: