diff --git a/src/main/scala/sbt/Path.scala b/src/main/scala/sbt/Path.scala
index 4e6c68aba..1a6db396d 100644
--- a/src/main/scala/sbt/Path.scala
+++ b/src/main/scala/sbt/Path.scala
@@ -241,6 +241,7 @@ sealed abstract class PathFinder extends NotNull
/** Constructs a new finder that selects all paths with a name that matches filter and are
* descendents of paths selected by this finder.*/
def **(filter: FileFilter): PathFinder = new DescendentOrSelfPathFinder(this, filter)
+ def *** : PathFinder = **(AllPassFilter)
/** Constructs a new finder that selects all paths with a name that matches filter and are
* immediate children of paths selected by this finder.*/
def *(filter: FileFilter): PathFinder = new ChildPathFinder(this, filter)