
New patches:

[Remove a variable shadowing warning
Ian Lynagh <igloo@earth.li>**20060730163933] {
hunk ./Data/Graph/Inductive/Tree.hs 48
-  mkGraph vs es   = (insEdges' es . insNodes vs) empty
+  mkGraph vs es   = (insEdges' . insNodes vs) empty
hunk ./Data/Graph/Inductive/Tree.hs 50
-          insEdges' es g = foldl' (flip insEdge) g es
+          insEdges' g = foldl' (flip insEdge) g es
}

[Silence warnings.
Ian Lynagh <igloo@earth.li>**20060730164944] {
hunk ./Data/Graph/Inductive/Query/ArtPoint.hs 38
-dfsTree n _ vs      _ g | null vs || isEmpty g = ([],g,n)
+dfsTree n _ []      _ g             = ([],g,n)
+dfsTree n _ _       _ g | isEmpty g = ([],g,n)
hunk ./Data/Graph/Inductive/Query/BFS.hs 53
-leveln vs         g | null vs || isEmpty g = []
+leveln []         _             = []
+leveln _          g | isEmpty g = []
hunk ./Data/Graph/Inductive/Query/DFS.hs 103
-xdfsWith _ _ vs     g | null vs || isEmpty g = []
+xdfsWith _ _ []     _             = []
+xdfsWith _ _ _      g | isEmpty g = []
hunk ./Data/Graph/Inductive/Query/DFS.hs 146
-xdfWith _ _ vs     g | null vs || isEmpty g = ([],g)
+xdfWith _ _ []     g             = ([],g)
+xdfWith _ _ _      g | isEmpty g = ([],g)
}

Context:

[Version June 2006
Martin Erwig <erwig@eecs.oregonstate.edu>**20060718181211] 
[[project @ 2006-01-18 10:54:19 by simonmar]
simonmar**20060118105419
 Stop shadowing a variable
 
 (darcs patch from Ian Lynagh)
] 
[TAG Initial conversion from CVS complete
John Goerzen <jgoerzen@complete.org>**20060112154129] 
Patch bundle hash:
37a74a7c205f370f400f5b539417e0dc328b6cbd
