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
Debugger entered--Lisp error: (void-function --each) (--each packages (if (not (package-installed-p it)) (progn (package-install it)))) packages-install((.... init--install-packages()
I've tried this on mac(GNU Emacs 25.1.1) and linux(GNU Emacs 24.5), both got the same error.
I tried the method on bbatsov/prelude#312 , to delete all elc files and recompile. After restart emacs on my mac, it shows:
Debugger entered--Lisp error: (void-variable it) packages-install((... init--install-packages()
both errors refer to the same function packages-install.
packages-install
It seems Emacs does not recognize the --each...it iteration.
--each...it
The text was updated successfully, but these errors were encountered:
I solved this by changing --each to dolist (--each packages ==> (dolist (it packages)
--each
dolist
Sorry, something went wrong.
No branches or pull requests
I've tried this on mac(GNU Emacs 25.1.1) and linux(GNU Emacs 24.5), both got the same error.
I tried the method on bbatsov/prelude#312 ,
to delete all elc files and recompile. After restart emacs on my mac, it shows:
both errors refer to the same function
packages-install
.It seems Emacs does not recognize the
--each...it
iteration.The text was updated successfully, but these errors were encountered: