X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=blobdiff_plain;f=src%2Fxpath%2Fast.ml;h=9a0d4d72811b489c697be0aa7adb1357b4f4ef7b;hp=7810a0eccc16b69a12d327debe8e8704b9d8f7c5;hb=fa7e819743a4a6d008ec086dfdeb2e30df2da701;hpb=566b96d016a9b81cea73d019551af2ab60b54ca8 diff --git a/src/xpath/ast.ml b/src/xpath/ast.ml index 7810a0e..9a0d4d7 100644 --- a/src/xpath/ast.ml +++ b/src/xpath/ast.ml @@ -128,14 +128,14 @@ and print_test fmt (ts,kind) = | Element | Attribute -> pp fmt "%s" begin if ts == star then "*" - else QName.to_string (QNameSet.choose ts) + else QName.to_string (QName.remove_prefix (QNameSet.choose ts)) end | Comment -> pp fmt "%s" "comment()" | ProcessingInstruction -> pp fmt "processing-instruction(%s)" begin if ts == star then "" - else "'" ^ (QName.to_string (QNameSet.choose ts)) ^ "'" + else "\"" ^ (QName.to_string (QName.remove_prefix (QNameSet.choose ts))) ^ "\"" end | Node -> pp fmt "%s" "node()" | Document -> pp fmt "%s" ""