src/Pure/Thy/term_style.ML
changeset 67147 dea94b1aabc3
parent 62969 9f394a16c557
child 74561 8e6c973003c8
--- a/src/Pure/Thy/term_style.ML	Wed Dec 06 15:46:35 2017 +0100
+++ b/src/Pure/Thy/term_style.ML	Wed Dec 06 18:59:33 2017 +0100
@@ -82,10 +82,10 @@
   | sub_term t = t;
 
 val _ = Theory.setup
- (setup @{binding lhs} (style_lhs_rhs fst) #>
-  setup @{binding rhs} (style_lhs_rhs snd) #>
-  setup @{binding prem} style_prem #>
-  setup @{binding concl} (Scan.succeed (K Logic.strip_imp_concl)) #>
-  setup @{binding sub} (Scan.succeed (K sub_term)));
+ (setup \<^binding>\<open>lhs\<close> (style_lhs_rhs fst) #>
+  setup \<^binding>\<open>rhs\<close> (style_lhs_rhs snd) #>
+  setup \<^binding>\<open>prem\<close> style_prem #>
+  setup \<^binding>\<open>concl\<close> (Scan.succeed (K Logic.strip_imp_concl)) #>
+  setup \<^binding>\<open>sub\<close> (Scan.succeed (K sub_term)));
 
 end;