src/Pure/ML-Systems/ml_pretty.ML
changeset 61864 3a5992c3410c
parent 61862 e2a9e46ac0fb
child 61869 ba466ac335e3
--- a/src/Pure/ML-Systems/ml_pretty.ML	Sat Dec 19 10:59:14 2015 +0100
+++ b/src/Pure/ML-Systems/ml_pretty.ML	Sat Dec 19 14:47:52 2015 +0100
@@ -8,11 +8,11 @@
 struct
 
 datatype pretty =
-  Block of (string * string) * pretty list * int |
+  Block of (string * string) * pretty list * bool * int |
   String of string * int |
   Break of bool * int * int;
 
-fun block prts = Block (("", ""), prts, 2);
+fun block prts = Block (("", ""), prts, false, 2);
 fun str s = String (s, size s);
 fun brk width = Break (false, width, 0);