aboutsummaryrefslogtreecommitdiff
path: root/toplevel
diff options
context:
space:
mode:
authorherbelin2004-07-17 13:26:02 +0000
committerherbelin2004-07-17 13:26:02 +0000
commit5eb4ec77dbcc7f4fdbc342db67eeefd93af26d81 (patch)
tree8156aadcb88c034e6dabd25f8a0f2d88c06ad3db /toplevel
parente80e6ca53b0ea97bcc41efc1757c557e8a5344e6 (diff)
Backtrack sur l'utilisation de pa_macro car n'existait pas en 3.06
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5941 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'toplevel')
-rw-r--r--toplevel/mltop.ml44
1 files changed, 2 insertions, 2 deletions
diff --git a/toplevel/mltop.ml4 b/toplevel/mltop.ml4
index 52f2436100..8562038c5e 100644
--- a/toplevel/mltop.ml4
+++ b/toplevel/mltop.ml4
@@ -99,7 +99,7 @@ let dir_ml_load s =
str s; str" to Coq code." >])
(* TO DO: .cma loading without toplevel *)
| WithoutTop ->
- IFDEF Byte THEN
+ ifdef Byte then
let _,gname = where_in_path !coq_mlpath_copy s in
try
Dynlink.loadfile gname;
@@ -109,7 +109,7 @@ let dir_ml_load s =
[Filename.dirname gname]
with | Dynlink.Error a ->
errorlabstrm "Mltop.load_object" [< str (Dynlink.error_message a) >]
- ELSE () END
+ else ()
| Native ->
errorlabstrm "Mltop.no_load_object"
[< str"Loading of ML object file forbidden in a native Coq" >]