diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2002-01-21 12:52:31 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2002-01-21 12:52:31 +0000 |
commit | f8a47ce2cc1f47966f3388337337ea45e1dcafbb (patch) | |
tree | b9f5549b3642fac09393477ed242efa85871bee9 /otherlibs | |
parent | e962b870e8d4daabde4598b02a6ec0e8f2eae415 (diff) |
changement final_tag -> custom_tag
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4293 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs')
-rw-r--r-- | otherlibs/labltk/browser/shell.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/labltk/browser/shell.ml b/otherlibs/labltk/browser/shell.ml index 2963faa14..666ac3b49 100644 --- a/otherlibs/labltk/browser/shell.ml +++ b/otherlibs/labltk/browser/shell.ml @@ -43,7 +43,7 @@ end let dump_handle (h : Unix.file_descr) = let obj = Obj.repr h in - if Obj.is_int obj || Obj.tag obj <> Obj.final_tag then + if Obj.is_int obj || Obj.tag obj <> Obj.custom_tag then invalid_arg "Shell.dump_handle"; Nativeint.format "%x" (Obj.obj obj) |