src/Pure/General/seq.ML
changeset 16002 e0557c452138
parent 15574 b1d1b5bfc464
child 16534 95460b6eb712
--- a/src/Pure/General/seq.ML	Wed May 18 11:30:58 2005 +0200
+++ b/src/Pure/General/seq.ML	Wed May 18 11:30:59 2005 +0200
@@ -71,8 +71,8 @@
 fun single x = cons (x, empty);
 
 (*head and tail -- beware of calling the sequence function twice!!*)
-fun hd xq = #1 (valOf (pull xq))
-and tl xq = #2 (valOf (pull xq));
+fun hd xq = #1 (the (pull xq))
+and tl xq = #2 (the (pull xq));
 
 (*partial function as procedure*)
 fun try f x =