src/Pure/PIDE/markup.ML
changeset 63474 f66e3c3b0fb1
parent 63347 e344dc82f6c2
child 63475 31016a88197b
--- a/src/Pure/PIDE/markup.ML	Wed Jul 13 14:28:15 2016 +0200
+++ b/src/Pure/PIDE/markup.ML	Wed Jul 13 15:19:16 2016 +0200
@@ -155,6 +155,7 @@
   val parse_command_timing_properties:
     Properties.T -> ({file: string, offset: int, name: string} * Time.time) option
   val timingN: string val timing: {elapsed: Time.time, cpu: Time.time, gc: Time.time} -> T
+  val command_indentN: string val command_indent: int -> T
   val subgoalsN: string
   val proof_stateN: string val proof_state: int -> T
   val goalN: string val goal: T
@@ -576,7 +577,12 @@
   | _ => NONE);
 
 
-(* toplevel *)
+(* indentation *)
+
+val (command_indentN, command_indent) = markup_int "command_indent" indentN;
+
+
+(* goals *)
 
 val subgoalsN = "subgoals";
 val (proof_stateN, proof_state) = markup_int "proof_state" subgoalsN;