diff options
| author | Matthieu Sozeau | 2016-04-04 14:49:06 +0200 |
|---|---|---|
| committer | Matthieu Sozeau | 2016-04-04 14:49:06 +0200 |
| commit | 16536fd734d6a7aaa6ff85f56cef629df74ce36a (patch) | |
| tree | a9ffc8d0830c7c826ea164b5267f95985365fe63 /stm | |
| parent | 5569a06d062f913c66cbcb8bd01d4505e603d321 (diff) | |
| parent | 6aa58955515dff338ea85d59073dfc0d0c7648ab (diff) | |
Merge branch 'trunk-function_scope' of https://github.com/JasonGross/coq into JasonGross-trunk-function_scope
Diffstat (limited to 'stm')
| -rw-r--r-- | stm/texmacspp.ml | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/stm/texmacspp.ml b/stm/texmacspp.ml index 2d2ea1f8b0..d1d6de9ae8 100644 --- a/stm/texmacspp.ml +++ b/stm/texmacspp.ml @@ -513,13 +513,6 @@ let rec tmpp v loc = xmlScope loc "delimit" name ~attr:["delimiter",tag] [] | VernacDelimiters (name,None) -> xmlScope loc "undelimit" name ~attr:[] [] - | VernacBindScope (name,l) -> - xmlScope loc "bind" name - (List.map (function - | ByNotation(loc,name,None) -> xmlNotation [] name loc [] - | ByNotation(loc,name,Some d) -> - xmlNotation ["delimiter",d] name loc [] - | AN ref -> xmlReference ref) l) | VernacInfix (_,((_,name),sml),ce,sn) -> let attrs = List.flatten (List.map attribute_of_syntax_modifier sml) in let sc_attr = @@ -535,6 +528,7 @@ let rec tmpp v loc = | Some scope -> ["scope", scope] | None -> [] in xmlNotation (sc_attr @ attrs) name loc [pp_expr ce] + | VernacBindScope _ as x -> xmlTODO loc x | VernacNotationAddFormat _ as x -> xmlTODO loc x | VernacUniverse _ | VernacConstraint _ |
