Closed wasamasa closed 9 years ago
And I think I've found the culprit:
(if-let ((cell (assq :stars (package-desc-extras pkg-desc))))
(setcdr cell counts)
(push (cons :stars counts) (package-desc-extras pkg-desc)))
Not sure what you're on, but I most definitely don't have if-let
here :D
I guess subr-x
provides it in Emacs 25, but you need to take in account that its contents vary depending on the Emacs version and have even been described as unworthy to document. So, if you really want to use if-let
there, at least have the courtesy of providing it for users who don't have it in subr-x
yet (or live without it and rewrite that part).
Sorry about that, try again. :)
Thanks, works now.
I already got a warning about
cell
being an undefined function when installing, but assumed it were a false alarm.