Skip to content

Commit

Permalink
fixed a bug in eclim--project-name
Browse files Browse the repository at this point in the history
  • Loading branch information
fred-o committed May 21, 2012
1 parent 70ca7c1 commit 688350a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eclim.el
Expand Up @@ -332,7 +332,7 @@ FILENAME is given, return that file's project name instead."
:test #'string=)
(find project-dir project-list ;; case insensitive
:key (lambda (e) (assoc-default 'path e))
:test (lambda (s1 (downcase s2)))))))))))
:test (lambda (s1 s2) (string= s1 (downcase s2)))))))))))

(defun eclim--find-file (path-to-file)
(if (not (string-match-p "!" path-to-file))
Expand Down

0 comments on commit 688350a

Please sign in to comment.