let rec ppmetasenv ~subst metasenv = function
| [] -> ""
| (i,(name, ctx, ty)) :: tl ->
- let name = match name with Some n -> "(\""^n^"\")" | _ -> "" in
+ let name = match name with Some n -> "("^n^")" | _ -> "" in
ppcontext ~sep:"; " ~subst ~metasenv ctx ^
" ⊢ ?"^string_of_int i^name^" : " ^
ppterm ~metasenv ~subst ~context:ctx ty ^ "\n" ^
let ppobj (u,_,metasenv, subst, o) =
"metasenv:\n" ^ ppmetasenv ~subst metasenv ^ "\n" ^
+ "subst:\n" ^ ppsubst subst ~metasenv ^ "\n" ^
match o with
| NCic.Fixpoint (b, fl, _) ->
"{"^NUri.string_of_uri u^"}\n"^