summaryrefslogtreecommitdiff
path: root/helm-eshell.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2013-11-04 08:39:27 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2013-11-04 08:39:27 +0100
commitb82caa80eaa937adc1246298865bb52cc4534fc1 (patch)
treeb6874f14a385c0085bad02fe10f2624d103d0496 /helm-eshell.el
parent82d3cde7d7708b62b9524a75fdd5fe2ddffbfdd9 (diff)
replace all cl symbol by their cl-lib equivalent.
Diffstat (limited to 'helm-eshell.el')
-rw-r--r--helm-eshell.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/helm-eshell.el b/helm-eshell.el
index 306553fe..82393e2c 100644
--- a/helm-eshell.el
+++ b/helm-eshell.el
@@ -34,14 +34,14 @@
(declare-function eshell-parse-arguments "esh-arg" (beg end))
(defvar helm-eshell-history-map
- (let ((map (make-sparse-keymap)))
+ (let ((cl-map (make-sparse-keymap)))
(set-keymap-parent map helm-map)
(define-key map (kbd "M-p") 'helm-next-line)
map)
"Keymap for `helm-eshell-history'.")
(defvar helm-esh-completion-map
- (let ((map (make-sparse-keymap)))
+ (let ((cl-map (make-sparse-keymap)))
(set-keymap-parent map helm-map)
(define-key map (kbd "TAB") 'helm-next-line)
map)
@@ -58,7 +58,7 @@
(candidates . helm-esh-get-candidates)
(filtered-candidate-transformer
(lambda (candidates _sources)
- (loop for i in candidates collect
+ (cl-loop for i in candidates collect
(cons (abbreviate-file-name i) i))))
(action . helm-ec-insert))
"Helm source for Eshell completion.")
@@ -90,7 +90,7 @@ The function that call this should set `helm-ec-target' to thing at point."
(entry (or (try-completion helm-pattern
(pcomplete-entries))
helm-pattern)))
- (loop ;; expand entry too to be able to compare it with file-cand.
+ (cl-loop ;; expand entry too to be able to compare it with file-cand.
with exp-entry = (and (stringp entry)
(not (string= entry ""))
(file-name-as-directory
@@ -162,7 +162,7 @@ The function that call this should set `helm-ec-target' to thing at point."
;; Use thing-at-point instead of last args value
;; to exclude possible delimiters e.g "(".
(target (thing-at-point 'symbol))
- (first (car args)) ; Maybe lisp delimiter "(".
+ (cl-first (car args)) ; Maybe lisp delimiter "(".
last) ; Will be the last but parsed by pcomplete.
(setq helm-ec-target (or target " ")
end (point)