summaryrefslogtreecommitdiff
path: root/helm-external.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-external.el
parentb82caa80eaa937adc1246298865bb52cc4534fc1 (diff)
Finish replacing cl symbols and requiring cl-lib, no compile error.
Diffstat (limited to 'helm-external.el')
-rw-r--r--helm-external.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/helm-external.el b/helm-external.el
index 6e9cf745..b1519d2f 100644
--- a/helm-external.el
+++ b/helm-external.el
@@ -17,7 +17,7 @@
;;; Code:
-(eval-when-compile (require 'cl))
+(require 'cl-lib)
(require 'helm)
@@ -85,7 +85,7 @@ If EXE is already running just jump to his window if `helm-raise-command'
is non--nil.
When FILE argument is provided run EXE with FILE.
In this case EXE must be provided as \"EXE %s\"."
- (lexical-let* ((real-com (car (split-string (replace-regexp-in-string
+ (let* ((real-com (car (split-string (replace-regexp-in-string
"%s" "" exe))))
(proc (if file (concat real-com " " file) real-com))
process-connection-type)