-
Notifications
You must be signed in to change notification settings - Fork 21
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
Problem emulating load with eval #53
Comments
Having the same problem here. More specifically, it always fails with the following error:
|
Oh, I didn't realize load had special variables. I added the customize variable esup-depth for controlling the depth. So, set |
There's a couple ways to handle this:
|
Just dynamically bind |
Getting exactly this same error just by initializing package.el:
Would be nice is a fix was made so esup can be used with package.el at all 😄 |
Please fix it! This bug makes A crappy workaround this bug:
|
Ping, is there workaround for this that I can set in |
Any luck with this? |
It seems commit 81f5f4d changed
esup-child.el
to use advice on theload
function. The advised function then steps through the code one sexp at at time doing aneval
. This causes problems with the files automatically generated bypackage-install
, which all contain lines such as:The
#$
construct is handled byload
, but generates an error witheval
.On a related note, since my esup only works when
esup-child-max-depth
is0
, how does one set this variable?The text was updated successfully, but these errors were encountered: