From aa798d204a904b8054634b37c9bcc6e9a7298fd5 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 4 Oct 1999 11:02:12 +0000 Subject: [PATCH] (exec-installed-p): Add parens. --- ChangeLog | 4 ++++ path-util.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f9c4438..aa34144 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-10-04 Katsumi Yamaoka + + * path-util.el (exec-installed-p): Add parens. + 1999-10-04 Keiichi Suzuki * path-util.el (exec-installed-p): Use `file-executable-p' instead diff --git a/path-util.el b/path-util.el index e6aec37..bfdf7bb 100644 --- a/path-util.el +++ b/path-util.el @@ -142,7 +142,7 @@ If suffixes is omitted, `exec-suffix-list' is used." (let (files) (catch 'tag (while suffixes - (let (suf (car suffixes)) + (let ((suf (car suffixes))) (if (and (not (string= suf "")) (string-match (concat (regexp-quote suf) "$") file)) (progn -- 1.7.10.4