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

(-)a/Makefile.OCaml (-1 / +1 lines)
Lines 95-101 buildexecutable:: Link Here
95
### Default parameters
95
### Default parameters
96
96
97
# Generate backtrace information for exceptions
97
# Generate backtrace information for exceptions
98
CAMLFLAGS+=-g
98
CAMLFLAGS+=-g -unsafe-string
99
99
100
INCLFLAGS=-I lwt -I ubase -I system
100
INCLFLAGS=-I lwt -I ubase -I system
101
CAMLFLAGS+=$(INCLFLAGS)
101
CAMLFLAGS+=$(INCLFLAGS)
(-)a/files.ml (-1 / +1 lines)
Lines 722-728 let get_files_in_directory dir = Link Here
722
  with End_of_file ->
722
  with End_of_file ->
723
    dirh.System.closedir ()
723
    dirh.System.closedir ()
724
  end;
724
  end;
725
  Sort.list (<) !files
725
  List.sort compare !files
726
726
727
let ls dir pattern =
727
let ls dir pattern =
728
  Util.convertUnixErrorsToTransient
728
  Util.convertUnixErrorsToTransient
(-)a/recon.ml (-2 / +2 lines)
Lines 651-658 let rec reconcile Link Here
651
651
652
(* Sorts the paths so that they will be displayed in order                   *)
652
(* Sorts the paths so that they will be displayed in order                   *)
653
let sortPaths pathUpdatesList =
653
let sortPaths pathUpdatesList =
654
  Sort.list
654
  List.sort
655
    (fun (p1, _) (p2, _) -> Path.compare p1 p2 <= 0)
655
    (fun (p1, _) (p2, _) -> Path.compare p1 p2)
656
    pathUpdatesList
656
    pathUpdatesList
657
657
658
let rec enterPath p1 p2 t =
658
let rec enterPath p1 p2 t =
(-)a/system/system_generic.ml (-1 / +1 lines)
Lines 47-53 let open_out_gen = open_out_gen 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
(-)a/uigtk2.ml (-1 / +1 lines)
Lines 94-100 let icon = 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