src/HOL/Tools/prop_logic.ML
changeset 38795 848be46708dc
parent 38558 32ad17fe2b9c
child 41447 537b290bbe38
--- a/src/HOL/Tools/prop_logic.ML	Fri Aug 27 10:55:20 2010 +0200
+++ b/src/HOL/Tools/prop_logic.ML	Fri Aug 27 10:56:46 2010 +0200
@@ -397,14 +397,14 @@
 			(False, table)
 		  | aux (Const (@{const_name Not}, _) $ x)      table =
 			apfst Not (aux x table)
-		  | aux (Const (@{const_name "op |"}, _) $ x $ y) table =
+		  | aux (Const (@{const_name HOL.disj}, _) $ x $ y) table =
 			let
 				val (fm1, table1) = aux x table
 				val (fm2, table2) = aux y table1
 			in
 				(Or (fm1, fm2), table2)
 			end
-		  | aux (Const (@{const_name "op &"}, _) $ x $ y) table =
+		  | aux (Const (@{const_name HOL.conj}, _) $ x $ y) table =
 			let
 				val (fm1, table1) = aux x table
 				val (fm2, table2) = aux y table1