Update of /cvsroot/q-lang/q/stdlib
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv28810
Modified Files:
dict.q
Log Message:
bugfixes
Index: dict.q
===================================================================
RCS file: /cvsroot/q-lang/q/stdlib/dict.q,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** dict.q 21 Feb 2008 09:17:27 -0000 1.8
--- dict.q 21 Feb 2008 09:18:55 -0000 1.9
***************
*** 323,325 ****
insert D:Dict (X,Y) = fst (inserta D X Y);
! update D:Dict KV = insert D KV;
--- 323,325 ----
insert D:Dict (X,Y) = fst (inserta D X Y);
! update D:Dict X Y = insert D (X,Y);
|