aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib/interface
diff options
context:
space:
mode:
authorGravatar bertot <bertot@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-01-24 09:49:47 +0000
committerGravatar bertot <bertot@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-01-24 09:49:47 +0000
commite79a1fdb9f7cd778aae3274b65b6b015bfc70277 (patch)
tree6eb6d74cf8dc5c93d5bfb38c15f41262b775f7f7 /contrib/interface
parent1b0745d66aab1d06f6f22d7c70f56aad6a2cec36 (diff)
The data constructed when detecting an error in a list of commands must
imperatively be called PARSING_ERROR and not PARSE_ERROR git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3608 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/interface')
-rw-r--r--contrib/interface/parse.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/interface/parse.ml b/contrib/interface/parse.ml
index 854c76db4..b6a0ef659 100644
--- a/contrib/interface/parse.ml
+++ b/contrib/interface/parse.ml
@@ -217,7 +217,7 @@ let parse_command_list reqid stream string_list =
(get_substring_list string_list this_pos
(Stream.count stream))))
*)
- ParseError ("PARSE_ERROR",
+ ParseError ("PARSING_ERROR",
get_substring_list string_list this_pos
(Stream.count stream))
with End_of_file -> ParseOK None
@@ -231,7 +231,7 @@ let parse_command_list reqid stream string_list =
(get_substring_list string_list this_pos
(Stream.count stream))))
*)
- ParseError ("PARSE_ERROR2",
+ ParseError ("PARSING_ERROR2",
get_substring_list string_list this_pos (Stream.count stream))
end in
match first_ast with