finish unicode string with quote

This commit is contained in:
Greg Beaver 2009-07-30 22:11:43 +00:00
parent ecc90ce5f1
commit af0d0285d6

View File

@ -239,6 +239,7 @@ define ____printzv_contents
if $type == 10
printf "(%d): [%p]: \"", $zvalue->value.str.len, $zvalue->value.str.val
printu $zvalue->value.ustr.val $zvalue->value.str.len
printf "\""
end
if $type > 10
end
@ -448,6 +449,9 @@ define printzn
if $znode->op_type == 8
set $optype = "IS_UNUSED"
end
if $znode->op_type == 16
set $optype = "IS_CV"
end
printf "[0x%08x] %s", $znode, $optype
@ -468,6 +472,9 @@ define printzn
if $znode->op_type == 8
printf "\n"
end
if $znode->op_type == 16
printf "\n"
end
end
document printzn