branch: elpa/helm
commit d178e52895c091c26221f18b9b1236f985c79226
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Prefer eq in helm-browse-project
---
helm-files.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/helm-files.el b/helm-files.el
index 6196a0c24f..62c6ff59ed 100644
--- a/helm-files.el
+++ b/helm-files.el
@@ -7137,13 +7137,13 @@ Needed dependencies for VCS (not mandatory, pickup what
you need):
(cl-flet ((push-to-hist (root)
(setq helm-browse-project-history
(cons root (delete root helm-browse-project-history)))))
- (helm-acond ((and (equal project-type 'Git) git-project)
+ (helm-acond ((and (eq project-type 'Git) git-project)
(push-to-hist it)
(helm-ls-git))
- ((and (equal project-type 'Hg) hg-project)
+ ((and (eq project-type 'Hg) hg-project)
(push-to-hist it)
(helm-hg-find-files-in-project))
- ((and (equal project-type 'Svn) svn-project)
+ ((and (eq project-type 'Svn) svn-project)
(push-to-hist it)
(helm-ls-svn-ls))
((helm-browse-project-get--root-dir (helm-current-directory))