Skip to content

Commit

Permalink
fixed regress bug in v4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Chen Bin committed Mar 26, 2016
1 parent c91547e commit 78c4053
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
* find-file-in-project (v4.7)
* find-file-in-project (v4.8)
Find files in a project quickly, on *any operating system*.

This program provides a couple methods for quickly finding any file in a given project. It depends on [[http://www.gnu.org/software/findutils/][GNU Find]].
Expand Down
6 changes: 3 additions & 3 deletions find-file-in-project.el
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;; Copyright (C) 2006-2009, 2011-2012, 2015
;; Phil Hagelberg, Doug Alcorn, and Will Farrington
;;
;; Version: 4.7
;; Version: 4.8
;; Author: Phil Hagelberg, Doug Alcorn, and Will Farrington
;; Maintainer: Chen Bin <chenbin.sh@gmail.com>
;; URL: https://github.com/technomancy/find-file-in-project
Expand Down Expand Up @@ -338,8 +338,8 @@ If CHECK-ONLY is true, only do the check."
((setq rlt (ffip--guess-gnu-find-on-windows "e" ":\\\\msys64\\\\usr\\\\bin\\\\find")))
((setq rlt (ffip--guess-gnu-find-on-windows "c" ":\\\\msys32\\\\usr\\\\bin\\\\find")))
((setq rlt (ffip--guess-gnu-find-on-windows "d" ":\\\\msys32\\\\usr\\\\bin\\\\find")))
((setq rlt (ffip--guess-gnu-find-on-windows "e" ":\\\\msys32\\\\usr\\\\bin\\\\find")))
(t (setq rlt "find"))))
((setq rlt (ffip--guess-gnu-find-on-windows "e" ":\\\\msys32\\\\usr\\\\bin\\\\find")))))
(unless rlt (setq rlt "find"))
rlt))

(defun ffip--join-patterns (patterns)
Expand Down
2 changes: 1 addition & 1 deletion pkg.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
name=find-file-in-project
version=4.7
version=4.8
pkg=$name-$version
mkdir $pkg
cp *.el $pkg
Expand Down

0 comments on commit 78c4053

Please sign in to comment.