summaryrefslogtreecommitdiff
path: root/helm-imenu.el
diff options
context:
space:
mode:
Diffstat (limited to 'helm-imenu.el')
-rw-r--r--helm-imenu.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/helm-imenu.el b/helm-imenu.el
index 119ef1a9..19b961e6 100644
--- a/helm-imenu.el
+++ b/helm-imenu.el
@@ -51,7 +51,7 @@
(defun helm-imenu-create-candidates (entry)
"Create candidates with ENTRY."
(if (listp (cdr entry))
- (mapcan
+ (cl-mapcan
(lambda (sub)
(if (consp (cdr sub))
(mapcar
@@ -82,7 +82,7 @@
(setq helm-cached-imenu-tick tick
helm-cached-imenu-candidates
(ignore-errors
- (mapcan
+ (cl-mapcan
'helm-imenu-create-candidates
(setq helm-cached-imenu-alist
(let ((index (imenu--make-index-alist)))
@@ -99,7 +99,7 @@
(helm-log-run-hook 'helm-goto-line-before-hook)
(let ((path (split-string elm helm-imenu-delimiter))
(alist helm-cached-imenu-alist))
- (dolist (elm path)
+ (cl-dolist (elm path)
(setq alist (assoc elm alist)))
(imenu alist)))