summaryrefslogtreecommitdiff
path: root/helm-eval.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-eval.el
parent82d3cde7d7708b62b9524a75fdd5fe2ddffbfdd9 (diff)
replace all cl symbol by their cl-lib equivalent.
Diffstat (limited to 'helm-eval.el')
-rw-r--r--helm-eval.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/helm-eval.el b/helm-eval.el
index d5dd40a0..4304a03b 100644
--- a/helm-eval.el
+++ b/helm-eval.el
@@ -50,7 +50,7 @@ Should take one arg: the string to display."
(defvar helm-eldoc-active-minibuffers-list nil)
(defvar helm-eval-expression-map
- (let ((map (make-sparse-keymap)))
+ (let ((cl-map (make-sparse-keymap)))
(set-keymap-parent map helm-map)
(define-key map (kbd "<C-return>") 'helm-eval-new-line-and-indent)
(define-key map (kbd "<tab>") 'lisp-indent-line)
@@ -153,7 +153,7 @@ Should take one arg: the string to display."
(defun helm-eval-expression-with-eldoc ()
"Preconfigured helm for `helm-source-evaluation-result' with `eldoc' support. "
(interactive)
- (declare (special eldoc-idle-delay))
+ (cl-declare (special eldoc-idle-delay))
(let ((timer (run-with-idle-timer
eldoc-idle-delay 'repeat
'helm-eldoc-show-in-eval)))