* lisp/emacs-lisp/cl-extra.el: Add autoloaded declare-function to avoid
rare byte-compilation warning.
Problem reported by Eli Zaretskii <eliz@gnu.org>.
(cherry picked from commit
c18089a6585b319786894262ae0a9034dfbcbcd4)
(if (consp cl-y) (pop cl-y) (aref cl-y cl-i)))))
(when acc
(push val cl-res)))))
- (and acc (nreverse cl-res)))))
+ (and acc (nreverse cl-res)))))
;;;###autoload
(defsubst cl-map (cl-type cl-func cl-seq &rest cl-rest)
TYPE is the sequence type to return.
\n(fn TYPE FUNCTION SEQUENCE...)"
(declare (important-return-value t))
- (let ((cl-res (apply #'cl-mapcar cl-func cl-seq cl-rest)))
+ (let ((cl-res (apply 'cl-mapcar cl-func cl-seq cl-rest)))
(and cl-type (cl-coerce cl-res cl-type))))
;;;###autoload