summaryrefslogtreecommitdiffstats
path: root/otherlibs/labltk/support
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/labltk/support')
-rw-r--r--otherlibs/labltk/support/Makefile16
-rw-r--r--otherlibs/labltk/support/Makefile.common20
-rw-r--r--otherlibs/labltk/support/camltk.h2
-rw-r--r--otherlibs/labltk/support/camltkwrap.ml4
-rw-r--r--otherlibs/labltk/support/camltkwrap.mli4
-rw-r--r--otherlibs/labltk/support/cltkCaml.c4
-rw-r--r--otherlibs/labltk/support/cltkDMain.c2
-rw-r--r--otherlibs/labltk/support/cltkEval.c4
-rw-r--r--otherlibs/labltk/support/cltkEvent.c4
-rw-r--r--otherlibs/labltk/support/cltkFile.c4
-rw-r--r--otherlibs/labltk/support/cltkImg.c4
-rw-r--r--otherlibs/labltk/support/cltkMain.c4
-rw-r--r--otherlibs/labltk/support/cltkMisc.c4
-rw-r--r--otherlibs/labltk/support/cltkTimer.c4
-rw-r--r--otherlibs/labltk/support/cltkUtf.c4
-rw-r--r--otherlibs/labltk/support/cltkVar.c4
-rw-r--r--otherlibs/labltk/support/cltkWait.c4
-rw-r--r--otherlibs/labltk/support/fileevent.ml4
-rw-r--r--otherlibs/labltk/support/fileevent.mli4
-rw-r--r--otherlibs/labltk/support/protocol.ml4
-rw-r--r--otherlibs/labltk/support/protocol.mli4
-rw-r--r--otherlibs/labltk/support/rawwidget.ml4
-rw-r--r--otherlibs/labltk/support/rawwidget.mli4
-rw-r--r--otherlibs/labltk/support/slave.ml4
-rw-r--r--otherlibs/labltk/support/support.ml4
-rw-r--r--otherlibs/labltk/support/support.mli4
-rw-r--r--otherlibs/labltk/support/textvariable.ml4
-rw-r--r--otherlibs/labltk/support/textvariable.mli4
-rw-r--r--otherlibs/labltk/support/timer.ml4
-rw-r--r--otherlibs/labltk/support/timer.mli4
-rw-r--r--otherlibs/labltk/support/tkthread.ml4
-rw-r--r--otherlibs/labltk/support/tkthread.mli4
-rw-r--r--otherlibs/labltk/support/tkwait.ml4
-rw-r--r--otherlibs/labltk/support/widget.ml4
-rw-r--r--otherlibs/labltk/support/widget.mli4
35 files changed, 98 insertions, 66 deletions
diff --git a/otherlibs/labltk/support/Makefile b/otherlibs/labltk/support/Makefile
index dd037a2b4..382f12c66 100644
--- a/otherlibs/labltk/support/Makefile
+++ b/otherlibs/labltk/support/Makefile
@@ -1,3 +1,19 @@
+#######################################################################
+# #
+# MLTk, Tcl/Tk interface of OCaml #
+# #
+# Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis #
+# projet Cristal, INRIA Rocquencourt #
+# Jacques Garrigue, Kyoto University RIMS #
+# #
+# Copyright 1999 Institut National de Recherche en Informatique et #
+# en Automatique and Kyoto University. All rights reserved. #
+# This file is distributed under the terms of the GNU Library #
+# General Public License, with the special exception on linking #
+# described in file LICENSE found in the OCaml source tree. #
+# #
+#######################################################################
+
include Makefile.common
all: support.cmo rawwidget.cmo widget.cmo protocol.cmo \
diff --git a/otherlibs/labltk/support/Makefile.common b/otherlibs/labltk/support/Makefile.common
index 56f6fd137..f0aa930d3 100644
--- a/otherlibs/labltk/support/Makefile.common
+++ b/otherlibs/labltk/support/Makefile.common
@@ -1,5 +1,21 @@
+#######################################################################
+# #
+# MLTk, Tcl/Tk interface of OCaml #
+# #
+# Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis #
+# projet Cristal, INRIA Rocquencourt #
+# Jacques Garrigue, Kyoto University RIMS #
+# #
+# Copyright 1999 Institut National de Recherche en Informatique et #
+# en Automatique and Kyoto University. All rights reserved. #
+# This file is distributed under the terms of the GNU Library #
+# General Public License, with the special exception on linking #
+# described in file LICENSE found in the OCaml source tree. #
+# #
+#######################################################################
+
## Paths are relative to subdirectories
-## Where you compiled Objective Caml
+## Where you compiled OCaml
TOPDIR=../../..
## Path to the otherlibs subdirectory
OTHERS=$(TOPDIR)/otherlibs
@@ -10,7 +26,7 @@ include $(TOPDIR)/config/Makefile
INSTALLDIR=$(LIBDIR)/$(LIBNAME)
-## Tools from the Objective Caml distribution
+## Tools from the OCaml distribution
CAMLRUN=$(TOPDIR)/boot/ocamlrun
CAMLC=$(TOPDIR)/ocamlcomp.sh
diff --git a/otherlibs/labltk/support/camltk.h b/otherlibs/labltk/support/camltk.h
index 5be206faa..54671a075 100644
--- a/otherlibs/labltk/support/camltk.h
+++ b/otherlibs/labltk/support/camltk.h
@@ -1,6 +1,6 @@
/*************************************************************************/
/* */
-/* Objective Caml LablTk library */
+/* OCaml LablTk library */
/* */
/* Francois Rouaix, Francois Pessaux and Jun Furuse */
/* projet Cristal, INRIA Rocquencourt */
diff --git a/otherlibs/labltk/support/camltkwrap.ml b/otherlibs/labltk/support/camltkwrap.ml
index 5b49b19f0..635349a31 100644
--- a/otherlibs/labltk/support/camltkwrap.ml
+++ b/otherlibs/labltk/support/camltkwrap.ml
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
module Widget = struct
diff --git a/otherlibs/labltk/support/camltkwrap.mli b/otherlibs/labltk/support/camltkwrap.mli
index 1af566d2c..4fc7e3c15 100644
--- a/otherlibs/labltk/support/camltkwrap.mli
+++ b/otherlibs/labltk/support/camltkwrap.mli
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
module Widget : sig
diff --git a/otherlibs/labltk/support/cltkCaml.c b/otherlibs/labltk/support/cltkCaml.c
index c9bcc80dc..f0372f14b 100644
--- a/otherlibs/labltk/support/cltkCaml.c
+++ b/otherlibs/labltk/support/cltkCaml.c
@@ -1,6 +1,6 @@
/***********************************************************************/
/* */
-/* MLTk, Tcl/Tk interface of Objective Caml */
+/* MLTk, Tcl/Tk interface of OCaml */
/* */
/* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis */
/* projet Cristal, INRIA Rocquencourt */
@@ -10,7 +10,7 @@
/* en Automatique and Kyoto University. All rights reserved. */
/* This file is distributed under the terms of the GNU Library */
/* General Public License, with the special exception on linking */
-/* described in file LICENSE found in the Objective Caml source tree. */
+/* described in file LICENSE found in the OCaml source tree. */
/* */
/***********************************************************************/
diff --git a/otherlibs/labltk/support/cltkDMain.c b/otherlibs/labltk/support/cltkDMain.c
index 3d9a4c2df..7edb92a98 100644
--- a/otherlibs/labltk/support/cltkDMain.c
+++ b/otherlibs/labltk/support/cltkDMain.c
@@ -1,6 +1,6 @@
/*************************************************************************/
/* */
-/* Objective Caml LablTk library */
+/* OCaml LablTk library */
/* */
/* Francois Rouaix, Francois Pessaux and Jun Furuse */
/* projet Cristal, INRIA Rocquencourt */
diff --git a/otherlibs/labltk/support/cltkEval.c b/otherlibs/labltk/support/cltkEval.c
index cdd16a914..282d2f44c 100644
--- a/otherlibs/labltk/support/cltkEval.c
+++ b/otherlibs/labltk/support/cltkEval.c
@@ -1,6 +1,6 @@
/***********************************************************************/
/* */
-/* MLTk, Tcl/Tk interface of Objective Caml */
+/* MLTk, Tcl/Tk interface of OCaml */
/* */
/* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis */
/* projet Cristal, INRIA Rocquencourt */
@@ -10,7 +10,7 @@
/* en Automatique and Kyoto University. All rights reserved. */
/* This file is distributed under the terms of the GNU Library */
/* General Public License, with the special exception on linking */
-/* described in file LICENSE found in the Objective Caml source tree. */
+/* described in file LICENSE found in the OCaml source tree. */
/* */
/***********************************************************************/
diff --git a/otherlibs/labltk/support/cltkEvent.c b/otherlibs/labltk/support/cltkEvent.c
index ad9b4d9ed..4507cf694 100644
--- a/otherlibs/labltk/support/cltkEvent.c
+++ b/otherlibs/labltk/support/cltkEvent.c
@@ -1,6 +1,6 @@
/***********************************************************************/
/* */
-/* MLTk, Tcl/Tk interface of Objective Caml */
+/* MLTk, Tcl/Tk interface of OCaml */
/* */
/* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis */
/* projet Cristal, INRIA Rocquencourt */
@@ -10,7 +10,7 @@
/* en Automatique and Kyoto University. All rights reserved. */
/* This file is distributed under the terms of the GNU Library */
/* General Public License, with the special exception on linking */
-/* described in file LICENSE found in the Objective Caml source tree. */
+/* described in file LICENSE found in the OCaml source tree. */
/* */
/***********************************************************************/
diff --git a/otherlibs/labltk/support/cltkFile.c b/otherlibs/labltk/support/cltkFile.c
index 4fbf9868e..b4ebca614 100644
--- a/otherlibs/labltk/support/cltkFile.c
+++ b/otherlibs/labltk/support/cltkFile.c
@@ -1,6 +1,6 @@
/***********************************************************************/
/* */
-/* MLTk, Tcl/Tk interface of Objective Caml */
+/* MLTk, Tcl/Tk interface of OCaml */
/* */
/* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis */
/* projet Cristal, INRIA Rocquencourt */
@@ -10,7 +10,7 @@
/* en Automatique and Kyoto University. All rights reserved. */
/* This file is distributed under the terms of the GNU Library */
/* General Public License, with the special exception on linking */
-/* described in file LICENSE found in the Objective Caml source tree. */
+/* described in file LICENSE found in the OCaml source tree. */
/* */
/***********************************************************************/
diff --git a/otherlibs/labltk/support/cltkImg.c b/otherlibs/labltk/support/cltkImg.c
index d8d5dd3d0..7f47760df 100644
--- a/otherlibs/labltk/support/cltkImg.c
+++ b/otherlibs/labltk/support/cltkImg.c
@@ -1,6 +1,6 @@
/***********************************************************************/
/* */
-/* MLTk, Tcl/Tk interface of Objective Caml */
+/* MLTk, Tcl/Tk interface of OCaml */
/* */
/* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis */
/* projet Cristal, INRIA Rocquencourt */
@@ -10,7 +10,7 @@
/* en Automatique and Kyoto University. All rights reserved. */
/* This file is distributed under the terms of the GNU Library */
/* General Public License, with the special exception on linking */
-/* described in file LICENSE found in the Objective Caml source tree. */
+/* described in file LICENSE found in the OCaml source tree. */
/* */
/***********************************************************************/
#include <string.h>
diff --git a/otherlibs/labltk/support/cltkMain.c b/otherlibs/labltk/support/cltkMain.c
index eb4617a45..5886e2cc3 100644
--- a/otherlibs/labltk/support/cltkMain.c
+++ b/otherlibs/labltk/support/cltkMain.c
@@ -1,6 +1,6 @@
/***********************************************************************/
/* */
-/* MLTk, Tcl/Tk interface of Objective Caml */
+/* MLTk, Tcl/Tk interface of OCaml */
/* */
/* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis */
/* projet Cristal, INRIA Rocquencourt */
@@ -10,7 +10,7 @@
/* en Automatique and Kyoto University. All rights reserved. */
/* This file is distributed under the terms of the GNU Library */
/* General Public License, with the special exception on linking */
-/* described in file LICENSE found in the Objective Caml source tree. */
+/* described in file LICENSE found in the OCaml source tree. */
/* */
/***********************************************************************/
diff --git a/otherlibs/labltk/support/cltkMisc.c b/otherlibs/labltk/support/cltkMisc.c
index b19713cda..e5360aa20 100644
--- a/otherlibs/labltk/support/cltkMisc.c
+++ b/otherlibs/labltk/support/cltkMisc.c
@@ -1,6 +1,6 @@
/***********************************************************************/
/* */
-/* MLTk, Tcl/Tk interface of Objective Caml */
+/* MLTk, Tcl/Tk interface of OCaml */
/* */
/* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis */
/* projet Cristal, INRIA Rocquencourt */
@@ -10,7 +10,7 @@
/* en Automatique and Kyoto University. All rights reserved. */
/* This file is distributed under the terms of the GNU Library */
/* General Public License, with the special exception on linking */
-/* described in file LICENSE found in the Objective Caml source tree. */
+/* described in file LICENSE found in the OCaml source tree. */
/* */
/***********************************************************************/
diff --git a/otherlibs/labltk/support/cltkTimer.c b/otherlibs/labltk/support/cltkTimer.c
index e0635e850..380dde3ed 100644
--- a/otherlibs/labltk/support/cltkTimer.c
+++ b/otherlibs/labltk/support/cltkTimer.c
@@ -1,6 +1,6 @@
/***********************************************************************/
/* */
-/* MLTk, Tcl/Tk interface of Objective Caml */
+/* MLTk, Tcl/Tk interface of OCaml */
/* */
/* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis */
/* projet Cristal, INRIA Rocquencourt */
@@ -10,7 +10,7 @@
/* en Automatique and Kyoto University. All rights reserved. */
/* This file is distributed under the terms of the GNU Library */
/* General Public License, with the special exception on linking */
-/* described in file LICENSE found in the Objective Caml source tree. */
+/* described in file LICENSE found in the OCaml source tree. */
/* */
/***********************************************************************/
diff --git a/otherlibs/labltk/support/cltkUtf.c b/otherlibs/labltk/support/cltkUtf.c
index fd01bd15a..448e06a1c 100644
--- a/otherlibs/labltk/support/cltkUtf.c
+++ b/otherlibs/labltk/support/cltkUtf.c
@@ -1,6 +1,6 @@
/***********************************************************************/
/* */
-/* MLTk, Tcl/Tk interface of Objective Caml */
+/* MLTk, Tcl/Tk interface of OCaml */
/* */
/* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis */
/* projet Cristal, INRIA Rocquencourt */
@@ -10,7 +10,7 @@
/* en Automatique and Kyoto University. All rights reserved. */
/* This file is distributed under the terms of the GNU Library */
/* General Public License, with the special exception on linking */
-/* described in file LICENSE found in the Objective Caml source tree. */
+/* described in file LICENSE found in the OCaml source tree. */
/* */
/***********************************************************************/
diff --git a/otherlibs/labltk/support/cltkVar.c b/otherlibs/labltk/support/cltkVar.c
index 0411a94cd..96af9d21d 100644
--- a/otherlibs/labltk/support/cltkVar.c
+++ b/otherlibs/labltk/support/cltkVar.c
@@ -1,6 +1,6 @@
/***********************************************************************/
/* */
-/* MLTk, Tcl/Tk interface of Objective Caml */
+/* MLTk, Tcl/Tk interface of OCaml */
/* */
/* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis */
/* projet Cristal, INRIA Rocquencourt */
@@ -10,7 +10,7 @@
/* en Automatique and Kyoto University. All rights reserved. */
/* This file is distributed under the terms of the GNU Library */
/* General Public License, with the special exception on linking */
-/* described in file LICENSE found in the Objective Caml source tree. */
+/* described in file LICENSE found in the OCaml source tree. */
/* */
/***********************************************************************/
diff --git a/otherlibs/labltk/support/cltkWait.c b/otherlibs/labltk/support/cltkWait.c
index 4c126b5d2..a46860b85 100644
--- a/otherlibs/labltk/support/cltkWait.c
+++ b/otherlibs/labltk/support/cltkWait.c
@@ -1,6 +1,6 @@
/***********************************************************************/
/* */
-/* MLTk, Tcl/Tk interface of Objective Caml */
+/* MLTk, Tcl/Tk interface of OCaml */
/* */
/* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis */
/* projet Cristal, INRIA Rocquencourt */
@@ -10,7 +10,7 @@
/* en Automatique and Kyoto University. All rights reserved. */
/* This file is distributed under the terms of the GNU Library */
/* General Public License, with the special exception on linking */
-/* described in file LICENSE found in the Objective Caml source tree. */
+/* described in file LICENSE found in the OCaml source tree. */
/* */
/***********************************************************************/
diff --git a/otherlibs/labltk/support/fileevent.ml b/otherlibs/labltk/support/fileevent.ml
index 846a7519b..ae1cc261a 100644
--- a/otherlibs/labltk/support/fileevent.ml
+++ b/otherlibs/labltk/support/fileevent.ml
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/fileevent.mli b/otherlibs/labltk/support/fileevent.mli
index 34760f0c7..f5468ca59 100644
--- a/otherlibs/labltk/support/fileevent.mli
+++ b/otherlibs/labltk/support/fileevent.mli
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/protocol.ml b/otherlibs/labltk/support/protocol.ml
index 26b97c0bd..28cb4737d 100644
--- a/otherlibs/labltk/support/protocol.ml
+++ b/otherlibs/labltk/support/protocol.ml
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/protocol.mli b/otherlibs/labltk/support/protocol.mli
index 9b5ae3936..1ce6718a8 100644
--- a/otherlibs/labltk/support/protocol.mli
+++ b/otherlibs/labltk/support/protocol.mli
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/rawwidget.ml b/otherlibs/labltk/support/rawwidget.ml
index 99b1dce1a..f216df726 100644
--- a/otherlibs/labltk/support/rawwidget.ml
+++ b/otherlibs/labltk/support/rawwidget.ml
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/rawwidget.mli b/otherlibs/labltk/support/rawwidget.mli
index 4eda7311c..e9f82ef2c 100644
--- a/otherlibs/labltk/support/rawwidget.mli
+++ b/otherlibs/labltk/support/rawwidget.mli
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/slave.ml b/otherlibs/labltk/support/slave.ml
index 51eae853b..44349c05c 100644
--- a/otherlibs/labltk/support/slave.ml
+++ b/otherlibs/labltk/support/slave.ml
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/support.ml b/otherlibs/labltk/support/support.ml
index fa650e8a9..7d019967c 100644
--- a/otherlibs/labltk/support/support.ml
+++ b/otherlibs/labltk/support/support.ml
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/support.mli b/otherlibs/labltk/support/support.mli
index 95a2255cb..fe30208ac 100644
--- a/otherlibs/labltk/support/support.mli
+++ b/otherlibs/labltk/support/support.mli
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/textvariable.ml b/otherlibs/labltk/support/textvariable.ml
index ad9033d45..4e17a008a 100644
--- a/otherlibs/labltk/support/textvariable.ml
+++ b/otherlibs/labltk/support/textvariable.ml
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/textvariable.mli b/otherlibs/labltk/support/textvariable.mli
index dfa511a29..f18f6cc86 100644
--- a/otherlibs/labltk/support/textvariable.mli
+++ b/otherlibs/labltk/support/textvariable.mli
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/timer.ml b/otherlibs/labltk/support/timer.ml
index a6ef8c299..d5bd176aa 100644
--- a/otherlibs/labltk/support/timer.ml
+++ b/otherlibs/labltk/support/timer.ml
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/timer.mli b/otherlibs/labltk/support/timer.mli
index a45e1c9d2..4b31668c9 100644
--- a/otherlibs/labltk/support/timer.mli
+++ b/otherlibs/labltk/support/timer.mli
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/tkthread.ml b/otherlibs/labltk/support/tkthread.ml
index ecdf61460..4ae36685c 100644
--- a/otherlibs/labltk/support/tkthread.ml
+++ b/otherlibs/labltk/support/tkthread.ml
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* LablTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Jacques Garrigue, Nagoya University Mathematics Dept. *)
(* *)
@@ -8,7 +8,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/tkthread.mli b/otherlibs/labltk/support/tkthread.mli
index 4f20e6140..2bc104da2 100644
--- a/otherlibs/labltk/support/tkthread.mli
+++ b/otherlibs/labltk/support/tkthread.mli
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* LablTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Jacques Garrigue, Nagoya University Mathematics Dept. *)
(* *)
@@ -8,7 +8,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/tkwait.ml b/otherlibs/labltk/support/tkwait.ml
index 97a0b0eb8..34f6908de 100644
--- a/otherlibs/labltk/support/tkwait.ml
+++ b/otherlibs/labltk/support/tkwait.ml
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/widget.ml b/otherlibs/labltk/support/widget.ml
index 65e0d26a9..083e4b96c 100644
--- a/otherlibs/labltk/support/widget.ml
+++ b/otherlibs/labltk/support/widget.ml
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
diff --git a/otherlibs/labltk/support/widget.mli b/otherlibs/labltk/support/widget.mli
index f9c832783..7761f2f2c 100644
--- a/otherlibs/labltk/support/widget.mli
+++ b/otherlibs/labltk/support/widget.mli
@@ -1,6 +1,6 @@
(***********************************************************************)
(* *)
-(* MLTk, Tcl/Tk interface of Objective Caml *)
+(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
@@ -10,7 +10,7 @@
(* en Automatique and Kyoto University. All rights reserved. *)
(* This file is distributed under the terms of the GNU Library *)
(* General Public License, with the special exception on linking *)
-(* described in file LICENSE found in the Objective Caml source tree. *)
+(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)