diff -r 8a4ef4e001d3 -r c7c777385a15 src/share/vm/utilities/ostream.hpp --- a/src/share/vm/utilities/ostream.hpp Fri Mar 28 09:00:39 2008 -0700 +++ b/src/share/vm/utilities/ostream.hpp Wed Apr 02 12:09:59 2008 -0700 @@ -59,6 +59,7 @@ int indentation() const { return _indentation; } void set_indentation(int i) { _indentation = i; } void fill_to(int col); + void move_to(int col, int slop = 6, int min_space = 2); // sizing int width() const { return _width; } @@ -78,7 +79,7 @@ void print_raw_cr(const char* str) { write(str, strlen(str)); cr(); } void print_raw_cr(const char* str, int len){ write(str, len); cr(); } void put(char ch); - void sp(); + void sp(int count = 1); void cr(); void bol() { if (_position > 0) cr(); }