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.

