summaryrefslogtreecommitdiff
path: root/helm-utils.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2013-11-04 09:00:20 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2013-11-04 09:00:20 +0100
commitb740a4b4c12da582bf99d739e8b8acfc64f5ccc7 (patch)
tree729ea259f5ebf3f9c5f7823ff539ac648a45aa3f /helm-utils.el
parentb82caa80eaa937adc1246298865bb52cc4534fc1 (diff)
Finish replacing cl symbols and requiring cl-lib, no compile error.
Diffstat (limited to 'helm-utils.el')
-rw-r--r--helm-utils.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/helm-utils.el b/helm-utils.el
index ef4264e9..9c92a179 100644
--- a/helm-utils.el
+++ b/helm-utils.el
@@ -17,7 +17,7 @@
;;; Code:
-(require 'cl)
+(require 'cl-lib)
(require 'helm)
(require 'compile) ; Fixme: Is this needed?
(require 'dired)
@@ -89,7 +89,7 @@ ARGS is a list of the first N arguments to pass to FUN.
The result is a new function which does the same as FUN, except that
the first N arguments are fixed at the values with which this function
was called."
- (lexical-let ((fun fun) (args1 args))
+ (let ((fun fun) (args1 args))
(lambda (&rest args2) (apply fun (append args1 args2))))))
(unless (fboundp 'assoc-default)