(ISeq x, Writer w)
| 2053 | } |
| 2054 | |
| 2055 | private static void printInnerSeq(ISeq x, Writer w) throws IOException{ |
| 2056 | for(ISeq s = x; s != null; s = s.next()) { |
| 2057 | print(s.first(), w); |
| 2058 | if(s.next() != null) |
| 2059 | w.write(' '); |
| 2060 | } |
| 2061 | } |
| 2062 | |
| 2063 | static public void formatAesthetic(Writer w, Object obj) throws IOException{ |
| 2064 | if(obj == null) |