### Eclipse Workspace Patch 1.0 #P org.eclipse.pde.ui Index: src/org/eclipse/pde/internal/ui/wizards/extension/PointSelectionPage.java =================================================================== RCS file: /cvsroot/eclipse/pde/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/wizards/extension/PointSelectionPage.java,v retrieving revision 1.83 diff -u -r1.83 PointSelectionPage.java --- src/org/eclipse/pde/internal/ui/wizards/extension/PointSelectionPage.java 19 Oct 2008 20:26:12 -0000 1.83 +++ src/org/eclipse/pde/internal/ui/wizards/extension/PointSelectionPage.java 4 Apr 2009 16:11:31 -0000 @@ -92,7 +92,7 @@ private String wMatch = "*"; //$NON-NLS-1$ protected void setMatchText(String match) { - if (match.indexOf("*") < 0 & match.indexOf("?") < 0 & match.indexOf(".") < 0) { //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ + if (match.indexOf("*") != 0 & match.indexOf("?") != 0 & match.indexOf(".") != 0) { //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ match = "*" + match; //$NON-NLS-1$ } wMatch = match + "*"; //$NON-NLS-1$