dbx and prettyprint of several values

if I do in dbx a :

[code]

(dbx) print -p r

r =1.414214

[/code]

it calls my db_pretty_print routine and prints it nicly.

But if I do

[code]

(dbx) print -p r,a2

r = {

x = 6521908889953566720U

}

a2 = {

x = 1152921504606846976U

}

[/code]

it prints it without prettyprint.

All the other modifiers to print works whether there is one or several expressions

on the line.

[478 byte] By [willoch] at [2007-11-26 11:52:19]
# 1
It should be fixed in an upcoming Sun Studio Express 3 available in the next few weeks.Message was edited by: MaximKartashev
MaximKartashev at 2007-7-7 12:08:13 > top of Java-index,Development Tools,Solaris and Linux Development Tools...
# 2
I extensively reworked pretty-printing in dbx 7.6. I verified that it works with the below example.You can get a preview version of dbx 7.6 from the SunStudio Express 3 release here: http://developers.sun.com/sunstudio/downloads/express.jsp
IvanIgorovich at 2007-7-7 12:08:13 > top of Java-index,Development Tools,Solaris and Linux Development Tools...