src/Sequents/modal.ML
changeset 69593 3dda49e08b9d
parent 59582 0fbed69ff081
child 74302 6bc96f31cafd
--- a/src/Sequents/modal.ML	Fri Jan 04 21:49:06 2019 +0100
+++ b/src/Sequents/modal.ML	Fri Jan 04 23:22:53 2019 +0100
@@ -26,7 +26,7 @@
 struct
 
 (*Returns the list of all formulas in the sequent*)
-fun forms_of_seq (Const(@{const_name SeqO'},_) $ P $ u) = P :: forms_of_seq u
+fun forms_of_seq (Const(\<^const_name>\<open>SeqO'\<close>,_) $ P $ u) = P :: forms_of_seq u
   | forms_of_seq (H $ u) = forms_of_seq u
   | forms_of_seq _ = [];