more correct and complete output of control characters;
authorwenzelm
Fri, 26 May 2017 11:51:45 +0200
changeset 65933 f3e4f9e6c485
parent 65932 db5e701b691a
child 65934 5f202ba9f590
more correct and complete output of control characters;
src/Pure/ML/ml_syntax.ML
--- a/src/Pure/ML/ml_syntax.ML	Fri May 26 11:33:09 2017 +0200
+++ b/src/Pure/ML/ml_syntax.ML	Fri May 26 11:51:45 2017 +0200
@@ -64,9 +64,12 @@
     (case ord s of
       34 => "\\\""
     | 92 => "\\\\"
+    | 7 => "\\a"
+    | 8 => "\\b"
     | 9 => "\\t"
     | 10 => "\\n"
-    | 11 => "\\f"
+    | 11 => "\\v"
+    | 12 => "\\f"
     | 13 => "\\r"
     | c =>
         if c < 32 then "\\^" ^ chr (c + 64)