aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorherbelin2003-03-04 13:56:22 +0000
committerherbelin2003-03-04 13:56:22 +0000
commit43a42296efbcb298037448e000280efb0e26e368 (patch)
treefcb8681048eb908e308fa04f6f02fa3f2406a62f
parentd7c0061ceb909e4e7efb1f3eaa39200811d739da (diff)
Bug délimiteur de scope en vieil affichage ast
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3732 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--parsing/esyntax.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/parsing/esyntax.ml b/parsing/esyntax.ml
index c506c1ff25..cc4e60d43f 100644
--- a/parsing/esyntax.ml
+++ b/parsing/esyntax.ml
@@ -187,7 +187,7 @@ let pr_parenthesis inherited se strm =
let print_delimiters inh se strm = function
| None -> pr_parenthesis inh se strm
| Some key ->
- let left = "`"^key^":" and right = "`" in
+ let left = "'"^key^":" and right = "'" in
let lspace =
if is_letter (left.[String.length left -1]) then str " " else mt () in
let rspace =
@@ -241,7 +241,7 @@ let call_primitive_parser rec_pr otherwise inherited scopes (se,env) =
| Some (scopt,key) ->
print_delimiters inherited se
(print_syntax_entry rec_pr (option_cons scopt scopes) env
- {se with syn_hunks = [sub]}) scopt)
+ {se with syn_hunks = [sub]}) key)
| _ ->
pr_parenthesis inherited se (print_syntax_entry rec_pr scopes env se)
)