Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
OCaml 0.27 KB | None | 0 0
  1.   let unsilenced_files = FilenameMap.filter (fun f ->
  2.     let list = List.map snd (Options.silences options) in
  3.     let path = Sys_utils.normalize_filename_dir_sep (string_of_filename f) in
  4.     not (List.exists (fun rx -> Str.string_match rx path 0) list)
  5.   ) files in
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement