Closed dunn closed 9 years ago
Well, caddr
is an alias for cl-caddr
, but the former is defined in cl.el
, while the latter is defined in cl-lib.el
. pandoc-mode-utils.el
already depends on cl-lib.el
, so I think it makes more sense to replace caddr
with cl-caddr
, which I just did. A quick test suggests that it's solved now.
Thanks for reporting, I still get tripped up by cl.el
/ cl-lib.el
issues from time to time... I wish they'd just fold everything from those packages into Elisp proper and be done with it. 😖
Thanks so much for the quick reply!
Adding
(require 'cl)
topandoc-mode-utils.el
, as suggested in #5 and #35 reduces it to a warning:Is it worth adding
'cl
as a proper requirement?