diff options
| author | Maxime Dénès | 2017-02-20 16:01:29 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2017-02-20 16:01:29 +0100 |
| commit | 2b4f249ed0a28cde876f18aacf19f646d8af8fae (patch) | |
| tree | 785019647a01b9eaa0e662e08422df294ebb8dca /interp/ppextend.ml | |
| parent | 278cebe6835512a5646eafcb13e1f020c0dc5d91 (diff) | |
| parent | 9907e296e21fdd9dc3fab2b84fe7159b35af654c (diff) | |
Merge PR#189: Remove tabulation support from pretty-printing.
Diffstat (limited to 'interp/ppextend.ml')
| -rw-r--r-- | interp/ppextend.ml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/interp/ppextend.ml b/interp/ppextend.ml index 37bbe0ce87..87ca253253 100644 --- a/interp/ppextend.ml +++ b/interp/ppextend.ml @@ -23,12 +23,9 @@ type ppbox = | PpHOVB of int | PpHVB of int | PpVB of int - | PpTB type ppcut = | PpBrk of int * int - | PpTbrk of int * int - | PpTab | PpFnl let ppcmd_of_box = function @@ -36,13 +33,10 @@ let ppcmd_of_box = function | PpHOVB n -> hov n | PpHVB n -> hv n | PpVB n -> v n - | PpTB -> t let ppcmd_of_cut = function - | PpTab -> tab () | PpFnl -> fnl () | PpBrk(n1,n2) -> brk(n1,n2) - | PpTbrk(n1,n2) -> tbrk(n1,n2) type unparsing = | UnpMetaVar of int * parenRelation |
