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
eros--make-result-overlay calls backward-sexp which calls (forward-sexp -1) whose documentation says:
If unable to move over a sexp, signal scan-error with three arguments: ...
This means when you try to use eros--make-result-overlay when the cursor is at the start of a sexp, you can get a scan error, for example:
With the cursor on the f of (function arg arg), it fails with scan-error.
I just wrapped backward-sexp in ignore-errors, I don't know if there's a better fix. bo-tato@b255f9d
The text was updated successfully, but these errors were encountered:
eros--make-result-overlay calls backward-sexp which calls (forward-sexp -1) whose documentation says:
This means when you try to use eros--make-result-overlay when the cursor is at the start of a sexp, you can get a scan error, for example:
With the cursor on the f of
(function arg arg)
, it fails with scan-error.I just wrapped backward-sexp in ignore-errors, I don't know if there's a better fix.
bo-tato@b255f9d
The text was updated successfully, but these errors were encountered: