-
Notifications
You must be signed in to change notification settings - Fork 25
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
Symbol's function definition is void: reduce #9
Comments
(if (featurep 'cl-lib) seems to be the problem. reduce is provided by cl.el but it is only loaded if cl-lib is not present on the system. |
getting the same error. @knowhy do I need to install cl-lib package? using v 24.3.1. cl-lib 1 is built-in. also, installing cl-lib 0.5 from melpa fixes the issue. what gives? |
yes, I think so. reduce is a common lisp function. But you can also google 2014-03-19 7:21 GMT+01:00 srustamo notifications@github.com:
Henrik Tillmann Pingel Reuterstraße 82 0160-4875684 e-mail: pingelhe@gmail.com |
This was fixed in 7035d6d |
7035d6d don't work on my mac os. Manually using cl instead of cl-lib it works fine. |
keyfreq-show returned:
let*: Symbol's function definition is void: reduce
I could fix this either by adding (require 'cl) or by changing reduce to cl-reduce in keyfreq-format-list
The text was updated successfully, but these errors were encountered: