Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 709646 | Differences between
and this patch

Collapse All | Expand All

(-)src.orig/files.ml (-1 / +1 lines)
Lines 734-740 Link Here
734
  with End_of_file ->
734
  with End_of_file ->
735
    dirh.System.closedir ()
735
    dirh.System.closedir ()
736
  end;
736
  end;
737
  Sort.list (<) !files
737
  List.sort compare !files
738
738
739
let ls dir pattern =
739
let ls dir pattern =
740
  Util.convertUnixErrorsToTransient
740
  Util.convertUnixErrorsToTransient
(-)src.orig/recon.ml (-2 / +2 lines)
Lines 661-668 Link Here
661
661
662
(* Sorts the paths so that they will be displayed in order                   *)
662
(* Sorts the paths so that they will be displayed in order                   *)
663
let sortPaths pathUpdatesList =
663
let sortPaths pathUpdatesList =
664
  Sort.list
664
  List.sort
665
    (fun (p1, _) (p2, _) -> Path.compare p1 p2 <= 0)
665
    (fun (p1, _) (p2, _) -> Path.compare p1 p2)
666
    pathUpdatesList
666
    pathUpdatesList
667
667
668
let rec enterPath p1 p2 t =
668
let rec enterPath p1 p2 t =
(-)src.orig/system/system_generic.ml (-1 / +1 lines)
Lines 47-53 Link Here
47
let chmod = Unix.chmod
47
let chmod = Unix.chmod
48
let chown = Unix.chown
48
let chown = Unix.chown
49
let utimes = Unix.utimes
49
let utimes = Unix.utimes
50
let link = Unix.link
50
let link s1 s2 = Unix.link s1 s2
51
let openfile = Unix.openfile
51
let openfile = Unix.openfile
52
let opendir f =
52
let opendir f =
53
  let h = Unix.opendir f in
53
  let h = Unix.opendir f in
(-)src.orig/uigtk2.ml (-1 / +1 lines)
Lines 94-100 Link Here
94
let icon =
94
let icon =
95
  let p = GdkPixbuf.create ~width:48 ~height:48 ~has_alpha:true () in
95
  let p = GdkPixbuf.create ~width:48 ~height:48 ~has_alpha:true () in
96
  Gpointer.blit
96
  Gpointer.blit
97
    (Gpointer.region_of_string Pixmaps.icon_data) (GdkPixbuf.get_pixels p);
97
    (Gpointer.region_of_bytes Pixmaps.icon_data) (GdkPixbuf.get_pixels p);
98
  p
98
  p
99
99
100
let leftPtrWatch =
100
let leftPtrWatch =

Return to bug 709646