Update of /cvsroot/monetdb/pathfinder/compiler/semantics
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9159/compiler/semantics

Modified Files:
      Tag: xrpcdemo
        functions.c 
Log Message:
Index: compiler/mil/milprint_summer.c
- make sure try variable is not optimized away

Index: compiler/semantics/functions.c
- fix the atURI property as set to functions by pf

Index: runtime/pathfinder.mx
- do not restart any XRPC update call (to avoid restarts 
  in circular queries going into exclusive mode, thus
  causing deadlock)  
  
Index: runtime/pf_support.mx
- bad bug in docsused

Index: runtime/serialize.mx
- bug in serialization

Index: runtime/xrpc_client.mx
- do parse the response message of update queries
  (otherwise we loose the participant info)

Index: runtime/xrpc/demo/demo-xrpcmod.xq
- some fixes in the demo file
  (note: it is not consistent with the texts in the GUI)



U functions.c
Index: functions.c
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/compiler/semantics/functions.c,v
retrieving revision 1.34
retrieving revision 1.34.4.1
diff -u -d -r1.34 -r1.34.4.1
--- functions.c 3 Apr 2008 09:06:34 -0000       1.34
+++ functions.c 12 Jun 2008 14:47:28 -0000      1.34.4.1
@@ -243,6 +243,7 @@
 static void
 add_ufuns (PFpnode_t *n)
 {
+    char *bak = current_atURI;
     if (n->kind == p_lib_mod)
         current_atURI = n->sem.str;
 
@@ -258,6 +259,7 @@
                     (i < PFPNODE_MAXCHILD) && (n->child[i]); i++)
                 add_ufuns (n->child[i]);
     }
+    current_atURI = bak;
 }
 
 


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Monetdb-pf-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins

Reply via email to